From 074f9267f4c8c98405cb6dd57415388a16a79a8d Mon Sep 17 00:00:00 2001 From: Frank Elsinga Date: Thu, 21 Dec 2023 02:18:36 +0100 Subject: [PATCH 01/16] fixed formatting issue --- data/external/scrapers/nat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/external/scrapers/nat.py b/data/external/scrapers/nat.py index 8eec385d8..64b90746f 100644 --- a/data/external/scrapers/nat.py +++ b/data/external/scrapers/nat.py @@ -188,7 +188,7 @@ def _download_and_merge_room(base): if not downloaded_file: return None content = json.loads(downloaded_file.read_text(encoding="utf-8")) - for useless_key in ["events_end","events_start"]: + for useless_key in ["events_end", "events_start"]: if useless_key in content: del content[useless_key] content["area"] = float(content["area"]) From 5d910461e57feddc65ede21223b75f5f27f0273e Mon Sep 17 00:00:00 2001 From: Frank Elsinga Date: Thu, 21 Dec 2023 02:20:13 +0100 Subject: [PATCH 02/16] fixed a typing error --- data/external/models/nat.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/data/external/models/nat.py b/data/external/models/nat.py index 06a1ef713..b770f5849 100644 --- a/data/external/models/nat.py +++ b/data/external/models/nat.py @@ -77,8 +77,6 @@ class Room(PydanticConfiguration): room_identifier: str | None campus_id: str | None building_code: str - events_end: str | None # no idea what this is... - events_start: str | None # no idea what this is... org_id: int | None = None @classmethod From 8b743f16a3a18a4d324c4855e71f98d01103dfe1 Mon Sep 17 00:00:00 2001 From: Frank Elsinga Date: Thu, 21 Dec 2023 02:47:15 +0100 Subject: [PATCH 03/16] migrated from `vite-plugin-md` to `unplugin-vue-markdown` because of vite 5 support --- webclient/package.json | 4 +- webclient/pnpm-lock.yaml | 677 ++++--------------------- webclient/src/assets/md/datenschutz.md | 10 +- webclient/src/assets/md/impressum.md | 4 +- webclient/src/assets/md/imprint.md | 4 +- webclient/src/assets/md/privacy.md | 10 +- webclient/src/md.d.ts | 13 + webclient/vite.config.ts | 6 +- 8 files changed, 135 insertions(+), 593 deletions(-) create mode 100644 webclient/src/md.d.ts diff --git a/webclient/package.json b/webclient/package.json index c9be9ccd8..6bcd95fcf 100644 --- a/webclient/package.json +++ b/webclient/package.json @@ -21,10 +21,12 @@ "dependencies": { "@vueuse/core": "10.6.1", "maplibre-gl": "3.6.1", + "markdown-it-prism": "^2.3.0", "pinia": "2.1.7", "spectre.css": "github:Valexr/spectre#dfe3bc2c59d23cd4bfd43c690aae3655576ff708", "swagger-ui-dist": "5.10.0", "swaggerdark": "github:octycs/SwaggerDark#f02d394c8ff698cdd93e09c2188b058d2d686ca3", + "unplugin-vue-markdown": "^0.25.2", "vue": "3.3.8", "vue-router": "4.2.5" }, @@ -36,7 +38,6 @@ "@vue/eslint-config-prettier": "8.0.0", "@vue/eslint-config-typescript": "12.0.0", "@vue/tsconfig": "0.4.0", - "@yankeeinlondon/link-builder": "1.2.1", "autoprefixer": "^10.4.16", "cypress": "13.5.1", "eslint": "8.56.0", @@ -50,7 +51,6 @@ "tailwindcss": "^3.3.5", "typescript": "5.2.2", "vite": "4.5.1", - "vite-plugin-md": "0.21.5", "vite-plugin-rewrite-all": "1.0.2", "vue-i18n": "9.7.0", "vue-tsc": "1.8.22" diff --git a/webclient/pnpm-lock.yaml b/webclient/pnpm-lock.yaml index 6b5ff3e16..6f805e04c 100644 --- a/webclient/pnpm-lock.yaml +++ b/webclient/pnpm-lock.yaml @@ -11,6 +11,9 @@ dependencies: maplibre-gl: specifier: 3.6.1 version: 3.6.1 + markdown-it-prism: + specifier: ^2.3.0 + version: 2.3.0 pinia: specifier: 2.1.7 version: 2.1.7(typescript@5.2.2)(vue@3.3.8) @@ -23,6 +26,9 @@ dependencies: swaggerdark: specifier: github:octycs/SwaggerDark#f02d394c8ff698cdd93e09c2188b058d2d686ca3 version: github.com/octycs/SwaggerDark/f02d394c8ff698cdd93e09c2188b058d2d686ca3 + unplugin-vue-markdown: + specifier: ^0.25.2 + version: 0.25.2(vite@4.5.1) vue: specifier: 3.3.8 version: 3.3.8(typescript@5.2.2) @@ -52,9 +58,6 @@ devDependencies: '@vue/tsconfig': specifier: 0.4.0 version: 0.4.0 - '@yankeeinlondon/link-builder': - specifier: 1.2.1 - version: 1.2.1(@vitejs/plugin-vue@4.5.0)(sass@1.69.5)(vite@4.5.1) autoprefixer: specifier: ^10.4.16 version: 10.4.16(postcss@8.4.31) @@ -93,10 +96,7 @@ devDependencies: version: 5.2.2 vite: specifier: 4.5.1 - version: 4.5.1(@types/node@20.8.9)(sass@1.69.5) - vite-plugin-md: - specifier: 0.21.5 - version: 0.21.5(@vitejs/plugin-vue@4.5.0)(sass@1.69.5)(vite@4.5.1) + version: 4.5.1(sass@1.69.5) vite-plugin-rewrite-all: specifier: 1.0.2 version: 1.0.2(vite@4.5.1) @@ -239,7 +239,6 @@ packages: cpu: [arm64] os: [android] requiresBuild: true - dev: true optional: true /@esbuild/android-arm@0.18.20: @@ -248,7 +247,6 @@ packages: cpu: [arm] os: [android] requiresBuild: true - dev: true optional: true /@esbuild/android-x64@0.18.20: @@ -257,7 +255,6 @@ packages: cpu: [x64] os: [android] requiresBuild: true - dev: true optional: true /@esbuild/darwin-arm64@0.18.20: @@ -266,7 +263,6 @@ packages: cpu: [arm64] os: [darwin] requiresBuild: true - dev: true optional: true /@esbuild/darwin-x64@0.18.20: @@ -275,7 +271,6 @@ packages: cpu: [x64] os: [darwin] requiresBuild: true - dev: true optional: true /@esbuild/freebsd-arm64@0.18.20: @@ -284,7 +279,6 @@ packages: cpu: [arm64] os: [freebsd] requiresBuild: true - dev: true optional: true /@esbuild/freebsd-x64@0.18.20: @@ -293,7 +287,6 @@ packages: cpu: [x64] os: [freebsd] requiresBuild: true - dev: true optional: true /@esbuild/linux-arm64@0.18.20: @@ -302,7 +295,6 @@ packages: cpu: [arm64] os: [linux] requiresBuild: true - dev: true optional: true /@esbuild/linux-arm@0.18.20: @@ -311,7 +303,6 @@ packages: cpu: [arm] os: [linux] requiresBuild: true - dev: true optional: true /@esbuild/linux-ia32@0.18.20: @@ -320,7 +311,6 @@ packages: cpu: [ia32] os: [linux] requiresBuild: true - dev: true optional: true /@esbuild/linux-loong64@0.18.20: @@ -329,7 +319,6 @@ packages: cpu: [loong64] os: [linux] requiresBuild: true - dev: true optional: true /@esbuild/linux-mips64el@0.18.20: @@ -338,7 +327,6 @@ packages: cpu: [mips64el] os: [linux] requiresBuild: true - dev: true optional: true /@esbuild/linux-ppc64@0.18.20: @@ -347,7 +335,6 @@ packages: cpu: [ppc64] os: [linux] requiresBuild: true - dev: true optional: true /@esbuild/linux-riscv64@0.18.20: @@ -356,7 +343,6 @@ packages: cpu: [riscv64] os: [linux] requiresBuild: true - dev: true optional: true /@esbuild/linux-s390x@0.18.20: @@ -365,7 +351,6 @@ packages: cpu: [s390x] os: [linux] requiresBuild: true - dev: true optional: true /@esbuild/linux-x64@0.18.20: @@ -374,7 +359,6 @@ packages: cpu: [x64] os: [linux] requiresBuild: true - dev: true optional: true /@esbuild/netbsd-x64@0.18.20: @@ -383,7 +367,6 @@ packages: cpu: [x64] os: [netbsd] requiresBuild: true - dev: true optional: true /@esbuild/openbsd-x64@0.18.20: @@ -392,7 +375,6 @@ packages: cpu: [x64] os: [openbsd] requiresBuild: true - dev: true optional: true /@esbuild/sunos-x64@0.18.20: @@ -401,7 +383,6 @@ packages: cpu: [x64] os: [sunos] requiresBuild: true - dev: true optional: true /@esbuild/win32-arm64@0.18.20: @@ -410,7 +391,6 @@ packages: cpu: [arm64] os: [win32] requiresBuild: true - dev: true optional: true /@esbuild/win32-ia32@0.18.20: @@ -419,7 +399,6 @@ packages: cpu: [ia32] os: [win32] requiresBuild: true - dev: true optional: true /@esbuild/win32-x64@0.18.20: @@ -428,7 +407,6 @@ packages: cpu: [x64] os: [win32] requiresBuild: true - dev: true optional: true /@eslint-community/eslint-utils@4.4.0(eslint@8.56.0): @@ -609,16 +587,6 @@ packages: '@jridgewell/sourcemap-codec': 1.4.15 dev: true - /@jsdevtools/ez-spawn@3.0.4: - resolution: {integrity: sha512-f5DRIOZf7wxogefH03RjMPMdBF7ADTWUMoOs9kaJo06EfwF+aFhMZMDZxHg/Xe12hptN9xoZjGso2fdjapBRIA==} - engines: {node: '>=10'} - dependencies: - call-me-maybe: 1.0.2 - cross-spawn: 7.0.3 - string-argv: 0.3.2 - type-detect: 4.0.8 - dev: true - /@mapbox/geojson-rewind@0.5.2: resolution: {integrity: sha512-tJaT+RbYGJYStt7wI3cq4Nl4SXxG8W7JDG5DMJu97V25RnbNg3QtQtf+KD+VLjNpWKYsRvXDNmNrBgEETr1ifA==} hasBin: true @@ -667,6 +635,26 @@ packages: sort-object: 3.0.3 dev: false + /@mdit-vue/plugin-component@1.0.0: + resolution: {integrity: sha512-ZXsJwxkG5yyTHARIYbR74cT4AZ0SfMokFFjiHYCbypHIeYWgJhso4+CZ8+3V9EWFG3EHlGoKNGqKp9chHnqntQ==} + dependencies: + '@types/markdown-it': 13.0.7 + markdown-it: 13.0.2 + dev: false + + /@mdit-vue/plugin-frontmatter@1.0.0: + resolution: {integrity: sha512-MMA7Ny+YPZA7eDOY1t4E+rKuEWO39mzDdP/M68fKdXJU6VfcGkPr7gnpnJfW2QBJ5qIvMrK/3lDAA2JBy5TfpA==} + dependencies: + '@mdit-vue/types': 1.0.0 + '@types/markdown-it': 13.0.7 + gray-matter: 4.0.3 + markdown-it: 13.0.2 + dev: false + + /@mdit-vue/types@1.0.0: + resolution: {integrity: sha512-xeF5+sHLzRNF7plbksywKCph4qli20l72of2fMlZQQ7RECvXYrRkE9+bjRFQCyULC7B8ydUYbpbkux5xJlVWyw==} + dev: false + /@nodelib/fs.scandir@2.1.5: resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} engines: {node: '>= 8'} @@ -712,25 +700,13 @@ packages: '@types/estree': 1.0.3 estree-walker: 2.0.2 picomatch: 2.3.1 - dev: true /@rushstack/eslint-patch@1.6.1: resolution: {integrity: sha512-UY+FGM/2jjMkzQLn8pxcHGMaVLh9aEitG3zY2CiY7XHdLiz3bZOwa6oDxNqEMv7zZkV+cj5DOdz0cQ1BP5Hjgw==} dev: true - /@types/chai-subset@1.3.4: - resolution: {integrity: sha512-CCWNXrJYSUIojZ1149ksLl3AN9cmZ5djf+yUoVVV+NuYrtydItQVlL2ZDqyC6M6O9LWRnVf8yYDxbXHO2TfQZg==} - dependencies: - '@types/chai': 4.3.9 - dev: true - - /@types/chai@4.3.9: - resolution: {integrity: sha512-69TtiDzu0bcmKQv3yg1Zx409/Kd7r0b5F1PfpYJfSHzLGtB53547V4u+9iqKYsTu/O2ai6KTb0TInNpvuQ3qmg==} - dev: true - /@types/estree@1.0.3: resolution: {integrity: sha512-CS2rOaoQ/eAgAfcTfq6amKG7bsN+EMcgGY4FAFQdvSj2y1ixvOZTUA9mOtCai7E1SYu283XNw7urKK30nP3wkQ==} - dev: true /@types/geojson@7946.0.13: resolution: {integrity: sha512-bmrNrgKMOhM3WsafmbGmC+6dsF2Z308vLFsQ3a/bT8X8Sv5clVYpPars/UPq+sAaJP+5OoLAYgwbkS5QEJdLUQ==} @@ -742,7 +718,7 @@ packages: /@types/linkify-it@3.0.4: resolution: {integrity: sha512-hPpIeeHb/2UuCw06kSNAOVWgehBLXEo0/fUs0mw3W2qhqX89PI2yvok83MnuctYGCPrabGIoi0fFso4DQ+sNUQ==} - dev: true + dev: false /@types/mapbox__point-geometry@0.1.4: resolution: {integrity: sha512-mUWlSxAmYLfwnRBmgYV86tgYmMIICX4kza8YnE/eIlywGe2XoOxlpVnXWwir92xRLjwyarqwpu2EJKD2pk0IUA==} @@ -756,16 +732,16 @@ packages: '@types/pbf': 3.0.4 dev: false - /@types/markdown-it@12.2.3: - resolution: {integrity: sha512-GKMHFfv3458yYy+v/N8gjufHO6MSZKCOXpZc5GXIWWy8uldwfmPn98vp81gZ5f9SVw8YYBctgfJ22a2d7AOMeQ==} + /@types/markdown-it@13.0.7: + resolution: {integrity: sha512-U/CBi2YUUcTHBt5tjO2r5QV/x0Po6nsYwQU4Y04fBS6vfoImaiZ6f8bi3CjTCxBPQSO1LMyUqkByzi8AidyxfA==} dependencies: '@types/linkify-it': 3.0.4 '@types/mdurl': 1.0.4 - dev: true + dev: false /@types/mdurl@1.0.4: resolution: {integrity: sha512-ARVxjAEX5TARFRzpDRVC6cEk0hUIXCCwaMhz8y7S1/PxU6zZS1UMjyobz7q4w/D/R552r4++EhwmXK1N2rAy0A==} - dev: true + dev: false /@types/node@18.18.7: resolution: {integrity: sha512-bw+lEsxis6eqJYW8Ql6+yTqkE6RuFtsQPSe5JxXbqYRFQEER5aJA9a5UH9igqDWm3X4iLHIKOHlnAXLM4mi7uQ==} @@ -775,9 +751,11 @@ packages: /@types/node@20.8.9: resolution: {integrity: sha512-UzykFsT3FhHb1h7yD4CA4YhBHq545JC0YnEz41xkipN88eKQtL6rSgocL5tbAP6Ola9Izm/Aw4Ora8He4x0BHg==} + requiresBuild: true dependencies: undici-types: 5.26.5 dev: true + optional: true /@types/pbf@3.0.4: resolution: {integrity: sha512-SOFlLGZkLbEXJRwcWCqeP/Koyaf/uAqLXHUsdo/nMfjLsNd8kqauwHe9GBOljSmpcHp/LC6kOjo3SidGjNirVA==} @@ -959,7 +937,7 @@ packages: vite: ^4.0.0 || ^5.0.0 vue: ^3.2.25 dependencies: - vite: 4.5.1(@types/node@20.8.9)(sass@1.69.5) + vite: 4.5.1(sass@1.69.5) vue: 3.3.8(typescript@5.2.2) dev: true @@ -1193,102 +1171,6 @@ packages: - vue dev: false - /@yankeeinlondon/builder-api@1.4.1(@vitejs/plugin-vue@4.5.0)(sass@1.69.5)(vite@4.5.1): - resolution: {integrity: sha512-qc6HyfqtuS06FvA5rK0L62Nmc1LnarVOt8/V/mTX2DBZlpTfIDpudpbE/7/kxjme9pP4PFMCk7cPSrprLEorjw==} - dependencies: - '@types/markdown-it': 12.2.3 - '@yankeeinlondon/happy-wrapper': 2.10.1(sass@1.69.5) - fp-ts: 2.16.1 - inferred-types: 0.37.6(sass@1.69.5) - markdown-it: 13.0.2 - vite-plugin-md: 0.22.5(@vitejs/plugin-vue@4.5.0)(sass@1.69.5)(vite@4.5.1) - transitivePeerDependencies: - - '@edge-runtime/vm' - - '@vitejs/plugin-vue' - - '@vitest/browser' - - '@vitest/ui' - - encoding - - happy-dom - - jsdom - - less - - lightningcss - - sass - - stylus - - sugarss - - supports-color - - terser - - vite - dev: true - - /@yankeeinlondon/gray-matter@6.1.1(sass@1.69.5): - resolution: {integrity: sha512-TLtRc/mxI74ahP3s+fJpIi+lBFAhuJuVjiQhmyi/xEwJ2pDepuWMRXT6UfJOA1cGkZ5/XGa9NFw/SQR6M5jfoQ==} - engines: {node: '>=14.0'} - dependencies: - inferred-types: 0.37.6(sass@1.69.5) - js-yaml: 4.1.0 - kind-of: 6.0.3 - section-matter: 1.0.0 - strip-bom-string: 1.0.0 - vitest: 0.25.8(happy-dom@8.9.0)(sass@1.69.5) - transitivePeerDependencies: - - '@edge-runtime/vm' - - '@vitest/browser' - - '@vitest/ui' - - happy-dom - - jsdom - - less - - lightningcss - - sass - - stylus - - sugarss - - supports-color - - terser - dev: true - - /@yankeeinlondon/happy-wrapper@2.10.1(sass@1.69.5): - resolution: {integrity: sha512-kS3HT26QSQqcZa8Me2yrb6oc/j0BTmTRR76ITRGcYlO8G1snz9wii1eCrBTx+gAo58P+e3UkxB8PTVrmjTowVA==} - dependencies: - fp-ts: 2.16.1 - happy-dom: 8.9.0 - native-dash: 1.25.0(happy-dom@8.9.0)(sass@1.69.5) - transitivePeerDependencies: - - '@edge-runtime/vm' - - '@vitest/browser' - - '@vitest/ui' - - encoding - - jsdom - - less - - lightningcss - - sass - - stylus - - sugarss - - supports-color - - terser - dev: true - - /@yankeeinlondon/link-builder@1.2.1(@vitejs/plugin-vue@4.5.0)(sass@1.69.5)(vite@4.5.1): - resolution: {integrity: sha512-ohQQ42CE/LaUpPLoWy6KQ+55wVpPIQYh2fWvcnFSLHPsRsCHBP0Taf7fXbBTEnQvlOrX0ot+GOAKu5J2p7YC6g==} - dependencies: - '@yankeeinlondon/builder-api': 1.4.1(@vitejs/plugin-vue@4.5.0)(sass@1.69.5)(vite@4.5.1) - '@yankeeinlondon/happy-wrapper': 2.10.1(sass@1.69.5) - transitivePeerDependencies: - - '@edge-runtime/vm' - - '@vitejs/plugin-vue' - - '@vitest/browser' - - '@vitest/ui' - - encoding - - happy-dom - - jsdom - - less - - lightningcss - - sass - - stylus - - sugarss - - supports-color - - terser - - vite - dev: true - /acorn-jsx@5.3.2(acorn@8.11.2): resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} peerDependencies: @@ -1297,16 +1179,10 @@ packages: acorn: 8.11.2 dev: true - /acorn-walk@8.3.0: - resolution: {integrity: sha512-FS7hV565M5l1R08MXqo8odwMTB02C2UqzB17RVgu9EyuYFBqJZ3/ZY97sQD5FewVu1UyDFc1yztUDrAwT0EypA==} - engines: {node: '>=0.4.0'} - dev: true - /acorn@8.11.2: resolution: {integrity: sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==} engines: {node: '>=0.4.0'} hasBin: true - dev: true /aggregate-error@3.1.0: resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} @@ -1380,7 +1256,6 @@ packages: dependencies: normalize-path: 3.0.0 picomatch: 2.3.1 - dev: true /arch@2.2.0: resolution: {integrity: sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==} @@ -1390,9 +1265,14 @@ packages: resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==} dev: true + /argparse@1.0.10: + resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} + dependencies: + sprintf-js: 1.0.3 + dev: false + /argparse@2.0.1: resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} - dev: true /arr-union@3.1.0: resolution: {integrity: sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==} @@ -1435,10 +1315,6 @@ packages: engines: {node: '>=0.8'} dev: true - /assertion-error@1.1.0: - resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==} - dev: true - /assign-symbols@1.0.0: resolution: {integrity: sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==} engines: {node: '>=0.10.0'} @@ -1517,7 +1393,6 @@ packages: /binary-extensions@2.2.0: resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} engines: {node: '>=8'} - dev: true /blob-util@2.0.2: resolution: {integrity: sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ==} @@ -1556,53 +1431,6 @@ packages: engines: {node: '>=8'} dependencies: fill-range: 7.0.1 - dev: true - - /brilliant-errors@0.7.3(happy-dom@8.9.0)(sass@1.69.5): - resolution: {integrity: sha512-WT9BkAze4SUOJfr7LUwJWNDAvynEAvUMvMPuFKu8QQKnRq+WMx3DAtHfOBJjHmHRxf748JY3CNVytSk6HH2yGg==} - engines: {node: '>=14.0.0'} - dependencies: - bumpp: 8.2.1 - callsites: 4.1.0 - inferred-types: 0.37.6(happy-dom@8.9.0)(sass@1.69.5) - vitest: 0.25.8(happy-dom@8.9.0)(sass@1.69.5) - transitivePeerDependencies: - - '@edge-runtime/vm' - - '@vitest/browser' - - '@vitest/ui' - - happy-dom - - jsdom - - less - - lightningcss - - sass - - stylus - - sugarss - - supports-color - - terser - dev: true - - /brilliant-errors@0.7.3(sass@1.69.5): - resolution: {integrity: sha512-WT9BkAze4SUOJfr7LUwJWNDAvynEAvUMvMPuFKu8QQKnRq+WMx3DAtHfOBJjHmHRxf748JY3CNVytSk6HH2yGg==} - engines: {node: '>=14.0.0'} - dependencies: - bumpp: 8.2.1 - callsites: 4.1.0 - inferred-types: 0.37.6(sass@1.69.5) - vitest: 0.25.8(happy-dom@8.9.0)(sass@1.69.5) - transitivePeerDependencies: - - '@edge-runtime/vm' - - '@vitest/browser' - - '@vitest/ui' - - happy-dom - - jsdom - - less - - lightningcss - - sass - - stylus - - sugarss - - supports-color - - terser - dev: true /browserslist@4.22.1: resolution: {integrity: sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==} @@ -1626,19 +1454,6 @@ packages: ieee754: 1.2.1 dev: true - /bumpp@8.2.1: - resolution: {integrity: sha512-4tHKsWC2mqHQvdjZ4AXgVhS2xMsz8qQ4zYt87vGRXW5tqAjrYa/UJqy7s/dGYI2OIe9ghBdiFhKpyKEX9SXffg==} - engines: {node: '>=10'} - hasBin: true - dependencies: - '@jsdevtools/ez-spawn': 3.0.4 - cac: 6.7.14 - fast-glob: 3.3.1 - kleur: 4.1.5 - prompts: 2.4.2 - semver: 7.5.4 - dev: true - /bundle-name@3.0.0: resolution: {integrity: sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==} engines: {node: '>=12'} @@ -1659,11 +1474,6 @@ packages: typewise: 1.0.3 dev: false - /cac@6.7.14: - resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} - engines: {node: '>=8'} - dev: true - /cachedir@2.4.0: resolution: {integrity: sha512-9EtFOZR8g22CL7BWjJ9BUx1+A/djkofnyW3aOXZORNW2kxoUpx2h+uN2cOqwPmFhnpVmxg+KW2OjOSgChTEvsQ==} engines: {node: '>=6'} @@ -1677,20 +1487,11 @@ packages: set-function-length: 1.1.1 dev: true - /call-me-maybe@1.0.2: - resolution: {integrity: sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==} - dev: true - /callsites@3.1.0: resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} engines: {node: '>=6'} dev: true - /callsites@4.1.0: - resolution: {integrity: sha512-aBMbD1Xxay75ViYezwT40aQONfr+pSXTHwNKvIXhXD6+LY3F1dLIcceoC5OZKBVHbXcysz1hL9D2w0JJIMXpUw==} - engines: {node: '>=12.20'} - dev: true - /camelcase-css@2.0.1: resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} engines: {node: '>= 6'} @@ -1704,19 +1505,6 @@ packages: resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==} dev: true - /chai@4.3.10: - resolution: {integrity: sha512-0UXG04VuVbruMUYbJ6JctvH0YnC/4q3/AkT18q4NaITo91CUm0liMS9VqzT9vZhVQ/1eqPanMWjBM+Juhfb/9g==} - engines: {node: '>=4'} - dependencies: - assertion-error: 1.1.0 - check-error: 1.0.3 - deep-eql: 4.1.3 - get-func-name: 2.0.2 - loupe: 2.3.7 - pathval: 1.1.1 - type-detect: 4.0.8 - dev: true - /chalk@2.4.2: resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} engines: {node: '>=4'} @@ -1734,12 +1522,6 @@ packages: supports-color: 7.2.0 dev: true - /check-error@1.0.3: - resolution: {integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==} - dependencies: - get-func-name: 2.0.2 - dev: true - /check-more-types@2.24.0: resolution: {integrity: sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==} engines: {node: '>= 0.8.0'} @@ -1758,7 +1540,6 @@ packages: readdirp: 3.6.0 optionalDependencies: fsevents: 2.3.3 - dev: true /ci-info@3.9.0: resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} @@ -1911,10 +1692,6 @@ packages: source-map-js: 1.0.2 dev: true - /css.escape@1.5.1: - resolution: {integrity: sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==} - dev: true - /cssesc@3.0.0: resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} engines: {node: '>=4'} @@ -2015,13 +1792,6 @@ packages: supports-color: 8.1.1 dev: true - /deep-eql@4.1.3: - resolution: {integrity: sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==} - engines: {node: '>=6'} - dependencies: - type-detect: 4.0.8 - dev: true - /deep-is@0.1.4: resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} dev: true @@ -2130,7 +1900,7 @@ packages: /entities@3.0.1: resolution: {integrity: sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==} engines: {node: '>=0.12'} - dev: true + dev: false /env-paths@2.2.1: resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==} @@ -2234,7 +2004,6 @@ packages: '@esbuild/win32-arm64': 0.18.20 '@esbuild/win32-ia32': 0.18.20 '@esbuild/win32-x64': 0.18.20 - dev: true /escalade@3.1.1: resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} @@ -2384,7 +2153,6 @@ packages: resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} engines: {node: '>=4'} hasBin: true - dev: true /esquery@1.5.0: resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} @@ -2474,6 +2242,7 @@ packages: engines: {node: '>=0.10.0'} dependencies: is-extendable: 0.1.1 + dev: false /extend-shallow@3.0.2: resolution: {integrity: sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==} @@ -2587,7 +2356,6 @@ packages: engines: {node: '>=8'} dependencies: to-regex-range: 5.0.1 - dev: true /find-up@5.0.0: resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} @@ -2629,10 +2397,6 @@ packages: mime-types: 2.1.35 dev: true - /fp-ts@2.16.1: - resolution: {integrity: sha512-by7U5W8dkIzcvDofUcO42yl9JbnHTEDBrzu3pt5fKT+Z4Oy85I21K80EYJYdjQGC2qum4Vo55Ag57iiIK4FYuA==} - dev: true - /fraction.js@4.3.7: resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==} dev: true @@ -2656,7 +2420,6 @@ packages: engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} os: [darwin] requiresBuild: true - dev: true optional: true /function-bind@1.1.2: @@ -2681,10 +2444,6 @@ packages: resolution: {integrity: sha512-EvGQQi/zPrDA6zr6BnJD/YhwAkBP8nnJ9emh3EnHQKVMfg/MRVtPbMYdgVy/IaEmn4UfagD2a6fafPDL5hbtwg==} dev: false - /get-func-name@2.0.2: - resolution: {integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==} - dev: true - /get-intrinsic@1.2.2: resolution: {integrity: sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==} dependencies: @@ -2739,7 +2498,6 @@ packages: engines: {node: '>= 6'} dependencies: is-glob: 4.0.3 - dev: true /glob-parent@6.0.2: resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} @@ -2836,19 +2594,15 @@ packages: resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} dev: true - /happy-dom@8.9.0: - resolution: {integrity: sha512-JZwJuGdR7ko8L61136YzmrLv7LgTh5b8XaEM3P709mLjyQuXJ3zHTDXvUtBBahRjGlcYW0zGjIiEWizoTUGKfA==} + /gray-matter@4.0.3: + resolution: {integrity: sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==} + engines: {node: '>=6.0'} dependencies: - css.escape: 1.5.1 - he: 1.2.0 - iconv-lite: 0.6.3 - node-fetch: 2.7.0 - webidl-conversions: 7.0.0 - whatwg-encoding: 2.0.0 - whatwg-mimetype: 3.0.0 - transitivePeerDependencies: - - encoding - dev: true + js-yaml: 3.14.1 + kind-of: 6.0.3 + section-matter: 1.0.0 + strip-bom-string: 1.0.0 + dev: false /has-bigints@1.0.2: resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} @@ -2932,13 +2686,6 @@ packages: engines: {node: '>=14.18.0'} dev: true - /iconv-lite@0.6.3: - resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} - engines: {node: '>=0.10.0'} - dependencies: - safer-buffer: 2.1.2 - dev: true - /ieee754@1.2.1: resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} @@ -2949,7 +2696,6 @@ packages: /immutable@4.3.4: resolution: {integrity: sha512-fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA==} - dev: true /import-fresh@3.3.0: resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} @@ -2969,44 +2715,6 @@ packages: engines: {node: '>=8'} dev: true - /inferred-types@0.37.6(happy-dom@8.9.0)(sass@1.69.5): - resolution: {integrity: sha512-CfL5g1wR5rVwX2K5S6wSL+h9eODScum/LBwlhGRrcBIvfYppvUQM0aeRJ1BZS+QE38kGzd3v+U526+nQR7ZUkg==} - dependencies: - brilliant-errors: 0.7.3(happy-dom@8.9.0)(sass@1.69.5) - transitivePeerDependencies: - - '@edge-runtime/vm' - - '@vitest/browser' - - '@vitest/ui' - - happy-dom - - jsdom - - less - - lightningcss - - sass - - stylus - - sugarss - - supports-color - - terser - dev: true - - /inferred-types@0.37.6(sass@1.69.5): - resolution: {integrity: sha512-CfL5g1wR5rVwX2K5S6wSL+h9eODScum/LBwlhGRrcBIvfYppvUQM0aeRJ1BZS+QE38kGzd3v+U526+nQR7ZUkg==} - dependencies: - brilliant-errors: 0.7.3(sass@1.69.5) - transitivePeerDependencies: - - '@edge-runtime/vm' - - '@vitest/browser' - - '@vitest/ui' - - happy-dom - - jsdom - - less - - lightningcss - - sass - - stylus - - sugarss - - supports-color - - terser - dev: true - /inflight@1.0.6: resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} dependencies: @@ -3058,7 +2766,6 @@ packages: engines: {node: '>=8'} dependencies: binary-extensions: 2.2.0 - dev: true /is-boolean-object@1.1.2: resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} @@ -3108,6 +2815,7 @@ packages: /is-extendable@0.1.1: resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==} engines: {node: '>=0.10.0'} + dev: false /is-extendable@1.0.1: resolution: {integrity: sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==} @@ -3119,7 +2827,6 @@ packages: /is-extglob@2.1.1: resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} engines: {node: '>=0.10.0'} - dev: true /is-fullwidth-code-point@3.0.0: resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} @@ -3131,7 +2838,6 @@ packages: engines: {node: '>=0.10.0'} dependencies: is-extglob: 2.1.1 - dev: true /is-inside-container@1.0.0: resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==} @@ -3164,7 +2870,6 @@ packages: /is-number@7.0.0: resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} engines: {node: '>=0.12.0'} - dev: true /is-path-inside@3.0.3: resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} @@ -3284,6 +2989,14 @@ packages: resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} dev: true + /js-yaml@3.14.1: + resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} + hasBin: true + dependencies: + argparse: 1.0.10 + esprima: 4.0.1 + dev: false + /js-yaml@4.1.0: resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} hasBin: true @@ -3383,16 +3096,6 @@ packages: resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} engines: {node: '>=0.10.0'} - /kleur@3.0.3: - resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} - engines: {node: '>=6'} - dev: true - - /kleur@4.1.5: - resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} - engines: {node: '>=6'} - dev: true - /known-css-properties@0.29.0: resolution: {integrity: sha512-Ne7wqW7/9Cz54PDt4I3tcV+hAyat8ypyOGzYRJQfdxnnjeWsTxt1cy8pjvvKeI5kfXuyvULyeeAvwvvtAX3ayQ==} dev: true @@ -3423,7 +3126,7 @@ packages: resolution: {integrity: sha512-C7bfi1UZmoj8+PQx22XyeXCuBlokoyWQL5pWSP+EI6nzRylyThouddufc2c1NDIcP9k5agmN9fLpA7VNJfIiqw==} dependencies: uc.micro: 1.0.6 - dev: true + dev: false /listr2@3.14.0(enquirer@2.4.1): resolution: {integrity: sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==} @@ -3455,11 +3158,6 @@ packages: strip-bom: 3.0.0 dev: true - /local-pkg@0.4.3: - resolution: {integrity: sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g==} - engines: {node: '>=14'} - dev: true - /locate-path@6.0.0: resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} engines: {node: '>=10'} @@ -3501,12 +3199,6 @@ packages: wrap-ansi: 6.2.0 dev: true - /loupe@2.3.7: - resolution: {integrity: sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==} - dependencies: - get-func-name: 2.0.2 - dev: true - /lru-cache@6.0.0: resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} engines: {node: '>=10'} @@ -3551,6 +3243,13 @@ packages: vt-pbf: 3.1.3 dev: false + /markdown-it-prism@2.3.0: + resolution: {integrity: sha512-ePtHY80gZyeje4bn3R3SL0jpd1C9HFaYffJW2Ma0YD+tspqa2v9TuVwUyFwboFu4jnFNcO8oPQROgbcYJbmBvw==} + engines: {node: '>=6.0.0'} + dependencies: + prismjs: 1.29.0 + dev: false + /markdown-it@13.0.2: resolution: {integrity: sha512-FtwnEuuK+2yVU7goGn/MJ0WBZMM9ZPgU9spqlFs7/A/pDIUNSOQZhUgOqYCficIuR2QaFnrt8LHqBWsbTAoI5w==} hasBin: true @@ -3560,7 +3259,7 @@ packages: linkify-it: 4.0.1 mdurl: 1.0.1 uc.micro: 1.0.6 - dev: true + dev: false /mathml-tag-names@2.1.3: resolution: {integrity: sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg==} @@ -3572,7 +3271,7 @@ packages: /mdurl@1.0.1: resolution: {integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==} - dev: true + dev: false /memorystream@0.3.1: resolution: {integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==} @@ -3683,26 +3382,6 @@ packages: hasBin: true dev: true - /native-dash@1.25.0(happy-dom@8.9.0)(sass@1.69.5): - resolution: {integrity: sha512-vJy1ZEfR/9jpAtuvsbPE/PuaeaJLIS+p7tl/bKEMHutRzMHnmgLv1fSmbyVvL04s2qzg0rCKZX5yfX74uiPLyA==} - dependencies: - brilliant-errors: 0.7.3(happy-dom@8.9.0)(sass@1.69.5) - inferred-types: 0.37.6(happy-dom@8.9.0)(sass@1.69.5) - transitivePeerDependencies: - - '@edge-runtime/vm' - - '@vitest/browser' - - '@vitest/ui' - - happy-dom - - jsdom - - less - - lightningcss - - sass - - stylus - - sugarss - - supports-color - - terser - dev: true - /natural-compare@1.4.0: resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} dev: true @@ -3739,7 +3418,6 @@ packages: /normalize-path@3.0.0: resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} engines: {node: '>=0.10.0'} - dev: true /normalize-range@0.1.2: resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} @@ -3952,10 +3630,6 @@ packages: resolution: {integrity: sha512-d+RQGp0MAYTIaDBIMmOfMwz3E+LOZnxx1HZd5R18mmCZY0QBlK0LDZfPc8FW8Ed2DlvsuE6PRjroDY+wg4+j/Q==} dev: true - /pathval@1.1.1: - resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==} - dev: true - /pbf@3.2.1: resolution: {integrity: sha512-ClrV7pNOn7rtmoQVF4TS1vyU0WhYRnP92fzbfF75jAIwpnzdJXf8iTd4CMEqO4yUenH6NDqLiwjqlh6QgZzgLQ==} hasBin: true @@ -3978,7 +3652,6 @@ packages: /picomatch@2.3.1: resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} engines: {node: '>=8.6'} - dev: true /pidtree@0.3.1: resolution: {integrity: sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==} @@ -4149,19 +3822,16 @@ packages: engines: {node: '>=6'} dev: true + /prismjs@1.29.0: + resolution: {integrity: sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==} + engines: {node: '>=6'} + dev: false + /process@0.11.10: resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==} engines: {node: '>= 0.6.0'} dev: true - /prompts@2.4.2: - resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} - engines: {node: '>= 6'} - dependencies: - kleur: 3.0.3 - sisteransi: 1.0.5 - dev: true - /protocol-buffers-schema@3.6.0: resolution: {integrity: sha512-TdDRD+/QNdrCGCE7v8340QyuXd4kIWIgapsE2+n/SaGiSSbomYl4TjHlvIoCWRpE7wFt02EpB35VVA2ImcBVqw==} dev: false @@ -4225,7 +3895,6 @@ packages: engines: {node: '>=8.10.0'} dependencies: picomatch: 2.3.1 - dev: true /regexp.prototype.flags@1.5.1: resolution: {integrity: sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==} @@ -4306,7 +3975,6 @@ packages: hasBin: true optionalDependencies: fsevents: 2.3.3 - dev: true /run-applescript@5.0.0: resolution: {integrity: sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==} @@ -4365,7 +4033,6 @@ packages: chokidar: 3.5.3 immutable: 4.3.4 source-map-js: 1.0.2 - dev: true /section-matter@1.0.0: resolution: {integrity: sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==} @@ -4373,7 +4040,7 @@ packages: dependencies: extend-shallow: 2.0.1 kind-of: 6.0.3 - dev: true + dev: false /semver@5.7.2: resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} @@ -4462,10 +4129,6 @@ packages: engines: {node: '>=14'} dev: true - /sisteransi@1.0.5: - resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} - dev: true - /slash@3.0.0: resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} engines: {node: '>=8'} @@ -4518,7 +4181,9 @@ packages: /source-map@0.6.1: resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} engines: {node: '>=0.10.0'} + requiresBuild: true dev: true + optional: true /spdx-correct@3.2.0: resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} @@ -4549,6 +4214,10 @@ packages: extend-shallow: 3.0.2 dev: false + /sprintf-js@1.0.3: + resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} + dev: false + /sshpk@1.18.0: resolution: {integrity: sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==} engines: {node: '>=0.10.0'} @@ -4565,11 +4234,6 @@ packages: tweetnacl: 0.14.5 dev: true - /string-argv@0.3.2: - resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==} - engines: {node: '>=0.6.19'} - dev: true - /string-width@4.2.3: resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} engines: {node: '>=8'} @@ -4630,7 +4294,7 @@ packages: /strip-bom-string@1.0.0: resolution: {integrity: sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==} engines: {node: '>=0.10.0'} - dev: true + dev: false /strip-bom@3.0.0: resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} @@ -4652,12 +4316,6 @@ packages: engines: {node: '>=8'} dev: true - /strip-literal@1.3.0: - resolution: {integrity: sha512-PugKzOsyXpArk0yWmUwqOZecSO0GH0bPoctLcqNDH9J04pVW3lflYE0ujElBGTloevcxF5MofAOZ7C5l2b+wLg==} - dependencies: - acorn: 8.11.2 - dev: true - /stylelint-scss@6.0.0(stylelint@16.0.2): resolution: {integrity: sha512-N1xV/Ef5PNRQQt9E45unzGvBUN1KZxCI8B4FgN/pMfmyRYbZGVN4y9qWlvOMdScU17c8VVCnjIHTVn38Bb6qSA==} engines: {node: '>=18.12.0'} @@ -4857,24 +4515,10 @@ packages: resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} dev: true - /tinybench@2.5.1: - resolution: {integrity: sha512-65NKvSuAVDP/n4CqH+a9w2kTlLReS9vhsAP06MWx+/89nMinJyB2icyl58RIcqCmIggpojIGeuJGhjU1aGMBSg==} - dev: true - - /tinypool@0.3.1: - resolution: {integrity: sha512-zLA1ZXlstbU2rlpA4CIeVaqvWq41MTWqLY3FfsAXgC8+f7Pk7zroaJQxDgxn1xNudKW6Kmj4808rPFShUlIRmQ==} - engines: {node: '>=14.0.0'} - dev: true - /tinyqueue@2.0.3: resolution: {integrity: sha512-ppJZNDuKGgxzkHihX8v9v9G5f+18gzaTfrukGrq6ueg0lmH4nqVnA2IPG0AEH3jKEk2GRJCUhDoqpoiw3PHLBA==} dev: false - /tinyspy@1.1.1: - resolution: {integrity: sha512-UVq5AXt/gQlti7oxoIg5oi/9r0WpF7DGEVwXgqWSMmyN16+e3tl5lIvTaOpJ3TAtu5xFzWccFRM4R5NaWHF+4g==} - engines: {node: '>=14.0.0'} - dev: true - /titleize@3.0.0: resolution: {integrity: sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==} engines: {node: '>=12'} @@ -4896,7 +4540,6 @@ packages: engines: {node: '>=8.0'} dependencies: is-number: 7.0.0 - dev: true /tough-cookie@4.1.3: resolution: {integrity: sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==} @@ -4946,11 +4589,6 @@ packages: prelude-ls: 1.2.1 dev: true - /type-detect@4.0.8: - resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} - engines: {node: '>=4'} - dev: true - /type-fest@0.20.2: resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} engines: {node: '>=10'} @@ -5016,7 +4654,7 @@ packages: /uc.micro@1.0.6: resolution: {integrity: sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==} - dev: true + dev: false /ufo@1.3.1: resolution: {integrity: sha512-uY/99gMLIOlJPwATcMVYfqDSxUR9//AUcgZMzwfSTJPDKzA1S8mX4VLqa+fiAtveraQUBCz4FFcwVZBGbwBXIw==} @@ -5055,6 +4693,23 @@ packages: engines: {node: '>= 10.0.0'} dev: true + /unplugin-vue-markdown@0.25.2(vite@4.5.1): + resolution: {integrity: sha512-bDDWqtK1PUkWK/+kczOk33hqO5WulOUx5ZxfbCZuVArcUSwY7aB2vf4e2K+qdrlxalxkpjIA64z/liOrC/cjiQ==} + peerDependencies: + vite: ^2.0.0 || ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0 + dependencies: + '@mdit-vue/plugin-component': 1.0.0 + '@mdit-vue/plugin-frontmatter': 1.0.0 + '@mdit-vue/types': 1.0.0 + '@rollup/pluginutils': 5.0.5 + '@types/markdown-it': 13.0.7 + markdown-it: 13.0.2 + unplugin: 1.5.0 + vite: 4.5.1(sass@1.69.5) + transitivePeerDependencies: + - rollup + dev: false + /unplugin@1.5.0: resolution: {integrity: sha512-9ZdRwbh/4gcm1JTOkp9lAkIDrtOyOxgHmY7cjuwI8L/2RTikMcVG25GsZwNAgRuap3iDw2jeq7eoqtAsz5rW3A==} dependencies: @@ -5062,7 +4717,6 @@ packages: chokidar: 3.5.3 webpack-sources: 3.2.3 webpack-virtual-modules: 0.5.0 - dev: true /untildify@4.0.0: resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==} @@ -5118,63 +4772,6 @@ packages: extsprintf: 1.3.0 dev: true - /vite-plugin-md@0.21.5(@vitejs/plugin-vue@4.5.0)(sass@1.69.5)(vite@4.5.1): - resolution: {integrity: sha512-gxiiSq2PmU2zUY5ZAFLEGmDFRV6J6gF85ns3hcvtgERibNST4gWxRSabqSZbGbHp3LEBwwK7C1CRLsl46yEiWg==} - peerDependencies: - vite: ^4.0.0 - dependencies: - '@yankeeinlondon/builder-api': 1.4.1(@vitejs/plugin-vue@4.5.0)(sass@1.69.5)(vite@4.5.1) - '@yankeeinlondon/gray-matter': 6.1.1(sass@1.69.5) - '@yankeeinlondon/happy-wrapper': 2.10.1(sass@1.69.5) - markdown-it: 13.0.2 - source-map-js: 1.0.2 - vite: 4.5.1(@types/node@20.8.9)(sass@1.69.5) - transitivePeerDependencies: - - '@edge-runtime/vm' - - '@vitejs/plugin-vue' - - '@vitest/browser' - - '@vitest/ui' - - encoding - - happy-dom - - jsdom - - less - - lightningcss - - sass - - stylus - - sugarss - - supports-color - - terser - dev: true - - /vite-plugin-md@0.22.5(@vitejs/plugin-vue@4.5.0)(sass@1.69.5)(vite@4.5.1): - resolution: {integrity: sha512-ex6yQfan2teBT2uMzoIlDHRhKTOsNiyvblA9eLU/+uygpg4KikJPFeyBX300LqQ3pZ9qGHz35qoGJ0oLw47eZg==} - peerDependencies: - '@vitejs/plugin-vue': '>=2.3.4' - vite: ^4.0.0 || ^3.0.0 - dependencies: - '@vitejs/plugin-vue': 4.5.0(vite@4.5.1)(vue@3.3.8) - '@yankeeinlondon/builder-api': 1.4.1(@vitejs/plugin-vue@4.5.0)(sass@1.69.5)(vite@4.5.1) - '@yankeeinlondon/gray-matter': 6.1.1(sass@1.69.5) - '@yankeeinlondon/happy-wrapper': 2.10.1(sass@1.69.5) - markdown-it: 13.0.2 - source-map-js: 1.0.2 - vite: 4.5.1(@types/node@20.8.9)(sass@1.69.5) - transitivePeerDependencies: - - '@edge-runtime/vm' - - '@vitest/browser' - - '@vitest/ui' - - encoding - - happy-dom - - jsdom - - less - - lightningcss - - sass - - stylus - - sugarss - - supports-color - - terser - dev: true - /vite-plugin-rewrite-all@1.0.2(vite@4.5.1): resolution: {integrity: sha512-NpiFyHi9w8iHm3kZ28ma/IU16LFCkNJNqTvGy6cjoit2EMBi7dgFWFZFYcwZjUrc+pOMup//rsQTRVILvF2efQ==} engines: {node: '>=12.0.0'} @@ -5182,10 +4779,10 @@ packages: vite: ^2.0.0 || ^3.0.0 || ^4.0.0 dependencies: connect-history-api-fallback: 1.6.0 - vite: 4.5.1(@types/node@20.8.9)(sass@1.69.5) + vite: 4.5.1(sass@1.69.5) dev: true - /vite@4.5.1(@types/node@20.8.9)(sass@1.69.5): + /vite@4.5.1(sass@1.69.5): resolution: {integrity: sha512-AXXFaAJ8yebyqzoNB9fu2pHoo/nWX+xZlaRwoeYUxEqBO+Zj4msE5G+BhGBll9lYEKv9Hfks52PAF2X7qDYXQA==} engines: {node: ^14.18.0 || >=16.0.0} hasBin: true @@ -5213,61 +4810,12 @@ packages: terser: optional: true dependencies: - '@types/node': 20.8.9 esbuild: 0.18.20 postcss: 8.4.31 rollup: 3.29.4 sass: 1.69.5 optionalDependencies: fsevents: 2.3.3 - dev: true - - /vitest@0.25.8(happy-dom@8.9.0)(sass@1.69.5): - resolution: {integrity: sha512-X75TApG2wZTJn299E/TIYevr4E9/nBo1sUtZzn0Ci5oK8qnpZAZyhwg0qCeMSakGIWtc6oRwcQFyFfW14aOFWg==} - engines: {node: '>=v14.16.0'} - hasBin: true - peerDependencies: - '@edge-runtime/vm': '*' - '@vitest/browser': '*' - '@vitest/ui': '*' - happy-dom: '*' - jsdom: '*' - peerDependenciesMeta: - '@edge-runtime/vm': - optional: true - '@vitest/browser': - optional: true - '@vitest/ui': - optional: true - happy-dom: - optional: true - jsdom: - optional: true - dependencies: - '@types/chai': 4.3.9 - '@types/chai-subset': 1.3.4 - '@types/node': 20.8.9 - acorn: 8.11.2 - acorn-walk: 8.3.0 - chai: 4.3.10 - debug: 4.3.4(supports-color@8.1.1) - happy-dom: 8.9.0 - local-pkg: 0.4.3 - source-map: 0.6.1 - strip-literal: 1.3.0 - tinybench: 2.5.1 - tinypool: 0.3.1 - tinyspy: 1.1.1 - vite: 4.5.1(@types/node@20.8.9)(sass@1.69.5) - transitivePeerDependencies: - - less - - lightningcss - - sass - - stylus - - sugarss - - supports-color - - terser - dev: true /vt-pbf@3.1.3: resolution: {integrity: sha512-2LzDFzt0mZKZ9IpVF2r69G9bXaP2Q2sArJCmcCgvfTdCCZzSyz4aCLoQyUilu37Ll56tCblIZrXFIjNUpGIlmA==} @@ -5369,36 +4917,17 @@ packages: resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} dev: true - /webidl-conversions@7.0.0: - resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==} - engines: {node: '>=12'} - dev: true - /webpack-sources@3.2.3: resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==} engines: {node: '>=10.13.0'} - dev: true /webpack-virtual-modules@0.5.0: resolution: {integrity: sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==} - dev: true - - /whatwg-encoding@2.0.0: - resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==} - engines: {node: '>=12'} - dependencies: - iconv-lite: 0.6.3 - dev: true /whatwg-fetch@3.6.19: resolution: {integrity: sha512-d67JP4dHSbm2TrpFj8AbO8DnL1JXL5J9u0Kq2xW6d0TFDbCA3Muhdt8orXC22utleTVj7Prqt82baN6RBvnEgw==} dev: true - /whatwg-mimetype@3.0.0: - resolution: {integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==} - engines: {node: '>=12'} - dev: true - /whatwg-url@5.0.0: resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} dependencies: diff --git a/webclient/src/assets/md/datenschutz.md b/webclient/src/assets/md/datenschutz.md index 1173b354e..9e786d23a 100644 --- a/webclient/src/assets/md/datenschutz.md +++ b/webclient/src/assets/md/datenschutz.md @@ -8,7 +8,7 @@ Verantwortlicher im Sinne der Datenschutzgesetze, insbesondere der EU-Datenschut Frank Elsinga in Vertretung für ["OpenSource @ TUM e.V."](https://tum.dev). -```raw +``` Postanschrift: Josef-Fischhaber-Straße 46, 82319 Starnberg Telefon: (0049/0)176 – 56–727-579 E-Mail: navigatum (at-symbol) tum.de @@ -16,7 +16,7 @@ E-Mail: navigatum (at-symbol) tum.de ### Kontaktdaten des Datenschutzbeauftragten -```raw +``` Der/Die Datenschutzbeauftragte der Technischen Universität München Postanschrift: Arcisstr. 21, 80333 München Telefon: 089/289-17052 @@ -37,7 +37,7 @@ Für nicht öffentliche Kommunikation wird auf die Kontaktmöglichkeit über das Der technische Betrieb unserer Datenverarbeitungssysteme erfolgt durch: -```raw +``` Leibniz-Rechenzentrum (LRZ) der Bayerischen Akademie der Wissenschaften Boltzmannstraße 1 D-85748 Garching bei München @@ -79,7 +79,7 @@ Sie haben das Recht, aus Gründen, die sich aus Ihrer besonderen Situation ergeb Weiterhin besteht ein Beschwerderecht beim Bayerischen Landesbeauftragten für den Datenschutz. Diesen können Sie unter folgenden Kontaktdaten erreichen: -```raw +``` Postanschrift: Postfach 22 12 19, 80502 München Adresse: Wagmüllerstraße 18, 80538 München Telefon: 089 212672-0 @@ -111,7 +111,7 @@ Für nähere Informationen zur Verarbeitung Ihrer Daten und zu Ihren Rechten kö Unser Webserver wird durch das Leibniz-Rechenzentrum der Bayerischen Akademie der Wissenschaften (LRZ) betrieben. Die von Ihnen im Rahmen des Besuchs unseres Webauftritts übermittelten personenbezogenen Daten werden daher in unserem Auftrag durch das LRZ verarbeitet: -```raw +``` Leibniz-Rechenzentrum (LRZ) der Bayerischen Akademie der Wissenschaften Boltzmannstraße 1 D-85748 Garching bei München diff --git a/webclient/src/assets/md/impressum.md b/webclient/src/assets/md/impressum.md index c0602915f..d5e8d29a8 100644 --- a/webclient/src/assets/md/impressum.md +++ b/webclient/src/assets/md/impressum.md @@ -2,7 +2,7 @@ ## Herausgeber -```raw +``` Technische Universität München Postanschrift: Arcisstraße 21, 80333 München Telefon: +49-(0)89-289-17123 @@ -19,7 +19,7 @@ Die Technische Universität München wird gesetzlich vertreten durch den Präsid ## Verantwortlich für den Inhalt -```raw +``` Frank Elsinga Postanschrift: Josef-Fischhaber-Straße 46, 82319 Starnberg Telefon: +49-(0)176 – 56–727-579 diff --git a/webclient/src/assets/md/imprint.md b/webclient/src/assets/md/imprint.md index 70376a38c..36cc250e9 100644 --- a/webclient/src/assets/md/imprint.md +++ b/webclient/src/assets/md/imprint.md @@ -2,7 +2,7 @@ ## Publisher -```raw +``` Technische Universität München Postanschrift: Arcisstraße 21, 80333 München Telefon: +49-(0)89-289-17123 @@ -19,7 +19,7 @@ Die Technische Universität München wird gesetzlich vertreten durch den Präsid ## Responsible for the content -```raw +``` Frank Elsinga Postal address: Josef-Fischhaber-Straße 46, 82319 Starnberg, Germany Telephone: +49-(0)176 - 56-727-579 diff --git a/webclient/src/assets/md/privacy.md b/webclient/src/assets/md/privacy.md index 3f8a6c8b7..ab9e5e7fd 100644 --- a/webclient/src/assets/md/privacy.md +++ b/webclient/src/assets/md/privacy.md @@ -8,7 +8,7 @@ The responsible person within the meaning of the data protection laws, in partic Frank Elsinga representing ["OpenSource @ TUM e.V."](https://tum.dev). -```raw +``` Postal address: Josef-Fischhaber-Strasse 46, 82319 Starnberg, Germany. Telephone: (0049/0)176 - 56-727-579 E-mail: navigatum (at-symbol) tum.de @@ -16,7 +16,7 @@ E-mail: navigatum (at-symbol) tum.de ### Contact details of the data protection officer -```raw +``` The Data Protection Officer of the Technical University of Munich Postal address: Arcisstr. 21, 80333 Munich, Germany Telephone: 089/289-17052 @@ -37,7 +37,7 @@ For non-public communication, please refer to the contact option via the [Imprin The technical operation of our data processing systems is carried out by: -```raw +``` Leibniz Computing Centre (LRZ) of the Bavarian Academy of Sciences and Humanities Boltzmannstraße 1 D-85748 Garching near Munich @@ -79,7 +79,7 @@ You have the right to object to the processing of your data at any time on groun Furthermore, you have the right to lodge a complaint with the Bavarian State Commissioner for Data Protection. You can contact the Bavarian State Commissioner for Data Protection at the following address: -```raw +``` Postal address: P.O. Box 22 12 19, 80502 Munich, Germany. Address: Wagmüllerstraße 18, 80538 Munich, Germany Telephone: 089 212672-0 @@ -110,7 +110,7 @@ For more detailed information on the processing of your data and your rights, yo Our web server is operated by the Leibniz Computing Centre of the Bavarian Academy of Sciences and Humanities (LRZ). The personal data you transmit when visiting our website is therefore processed by the LRZ on our behalf: -```raw +``` Leibniz Computing Centre (LRZ) of the Bavarian Academy of Sciences and Humanities Boltzmannstrasse 1 D-85748 Garching near Munich diff --git a/webclient/src/md.d.ts b/webclient/src/md.d.ts new file mode 100644 index 000000000..f5214e55b --- /dev/null +++ b/webclient/src/md.d.ts @@ -0,0 +1,13 @@ +declare module "*.vue" { + import type { ComponentOptions } from "vue"; + + const Component: ComponentOptions; + export default Component; +} + +declare module "*.md" { + import type { ComponentOptions } from "vue"; + + const Component: ComponentOptions; + export default Component; +} diff --git a/webclient/vite.config.ts b/webclient/vite.config.ts index f7e59a4e1..a2dfcac4b 100644 --- a/webclient/vite.config.ts +++ b/webclient/vite.config.ts @@ -3,8 +3,8 @@ import { URL, fileURLToPath } from "node:url"; import { defineConfig } from "vite"; import Vue from "@vitejs/plugin-vue"; import VueI18nPlugin from "@intlify/unplugin-vue-i18n/vite"; -import Markdown from "vite-plugin-md"; -import link from "@yankeeinlondon/link-builder"; +import Markdown from "unplugin-vue-markdown/vite"; +import prism from "markdown-it-prism"; import path from "path"; // eslint-disable-next-line @typescript-eslint/ban-ts-comment // @ts-ignore @@ -51,7 +51,7 @@ export default defineConfig({ fullInstall: false, }), Markdown({ - builders: [link()], + markdownItUses: [prism], }), //The next one is included due to https://github.com/vitejs/vite/issues/2415 // otherwise the router won't serve the details pages, as they include dots From b83e3f59a62945110f20ed1defdbaa2c266bc724 Mon Sep 17 00:00:00 2001 From: Frank Elsinga Date: Thu, 21 Dec 2023 03:01:43 +0100 Subject: [PATCH 04/16] fixed another linting issue --- webclient/src/assets/md/datenschutz.md | 10 +++++----- webclient/src/assets/md/impressum.md | 4 ++-- webclient/src/assets/md/imprint.md | 4 ++-- webclient/src/assets/md/privacy.md | 10 +++++----- 4 files changed, 14 insertions(+), 14 deletions(-) diff --git a/webclient/src/assets/md/datenschutz.md b/webclient/src/assets/md/datenschutz.md index 9e786d23a..4699761b8 100644 --- a/webclient/src/assets/md/datenschutz.md +++ b/webclient/src/assets/md/datenschutz.md @@ -8,7 +8,7 @@ Verantwortlicher im Sinne der Datenschutzgesetze, insbesondere der EU-Datenschut Frank Elsinga in Vertretung für ["OpenSource @ TUM e.V."](https://tum.dev). -``` +```plain Postanschrift: Josef-Fischhaber-Straße 46, 82319 Starnberg Telefon: (0049/0)176 – 56–727-579 E-Mail: navigatum (at-symbol) tum.de @@ -16,7 +16,7 @@ E-Mail: navigatum (at-symbol) tum.de ### Kontaktdaten des Datenschutzbeauftragten -``` +```plain Der/Die Datenschutzbeauftragte der Technischen Universität München Postanschrift: Arcisstr. 21, 80333 München Telefon: 089/289-17052 @@ -37,7 +37,7 @@ Für nicht öffentliche Kommunikation wird auf die Kontaktmöglichkeit über das Der technische Betrieb unserer Datenverarbeitungssysteme erfolgt durch: -``` +```plain Leibniz-Rechenzentrum (LRZ) der Bayerischen Akademie der Wissenschaften Boltzmannstraße 1 D-85748 Garching bei München @@ -79,7 +79,7 @@ Sie haben das Recht, aus Gründen, die sich aus Ihrer besonderen Situation ergeb Weiterhin besteht ein Beschwerderecht beim Bayerischen Landesbeauftragten für den Datenschutz. Diesen können Sie unter folgenden Kontaktdaten erreichen: -``` +```plain Postanschrift: Postfach 22 12 19, 80502 München Adresse: Wagmüllerstraße 18, 80538 München Telefon: 089 212672-0 @@ -111,7 +111,7 @@ Für nähere Informationen zur Verarbeitung Ihrer Daten und zu Ihren Rechten kö Unser Webserver wird durch das Leibniz-Rechenzentrum der Bayerischen Akademie der Wissenschaften (LRZ) betrieben. Die von Ihnen im Rahmen des Besuchs unseres Webauftritts übermittelten personenbezogenen Daten werden daher in unserem Auftrag durch das LRZ verarbeitet: -``` +```plain Leibniz-Rechenzentrum (LRZ) der Bayerischen Akademie der Wissenschaften Boltzmannstraße 1 D-85748 Garching bei München diff --git a/webclient/src/assets/md/impressum.md b/webclient/src/assets/md/impressum.md index d5e8d29a8..7c963571d 100644 --- a/webclient/src/assets/md/impressum.md +++ b/webclient/src/assets/md/impressum.md @@ -2,7 +2,7 @@ ## Herausgeber -``` +```plain Technische Universität München Postanschrift: Arcisstraße 21, 80333 München Telefon: +49-(0)89-289-17123 @@ -19,7 +19,7 @@ Die Technische Universität München wird gesetzlich vertreten durch den Präsid ## Verantwortlich für den Inhalt -``` +```plain Frank Elsinga Postanschrift: Josef-Fischhaber-Straße 46, 82319 Starnberg Telefon: +49-(0)176 – 56–727-579 diff --git a/webclient/src/assets/md/imprint.md b/webclient/src/assets/md/imprint.md index 36cc250e9..15be45817 100644 --- a/webclient/src/assets/md/imprint.md +++ b/webclient/src/assets/md/imprint.md @@ -2,7 +2,7 @@ ## Publisher -``` +```plain Technische Universität München Postanschrift: Arcisstraße 21, 80333 München Telefon: +49-(0)89-289-17123 @@ -19,7 +19,7 @@ Die Technische Universität München wird gesetzlich vertreten durch den Präsid ## Responsible for the content -``` +```plain Frank Elsinga Postal address: Josef-Fischhaber-Straße 46, 82319 Starnberg, Germany Telephone: +49-(0)176 - 56-727-579 diff --git a/webclient/src/assets/md/privacy.md b/webclient/src/assets/md/privacy.md index ab9e5e7fd..4561e9d55 100644 --- a/webclient/src/assets/md/privacy.md +++ b/webclient/src/assets/md/privacy.md @@ -8,7 +8,7 @@ The responsible person within the meaning of the data protection laws, in partic Frank Elsinga representing ["OpenSource @ TUM e.V."](https://tum.dev). -``` +```plain Postal address: Josef-Fischhaber-Strasse 46, 82319 Starnberg, Germany. Telephone: (0049/0)176 - 56-727-579 E-mail: navigatum (at-symbol) tum.de @@ -16,7 +16,7 @@ E-mail: navigatum (at-symbol) tum.de ### Contact details of the data protection officer -``` +```plain The Data Protection Officer of the Technical University of Munich Postal address: Arcisstr. 21, 80333 Munich, Germany Telephone: 089/289-17052 @@ -37,7 +37,7 @@ For non-public communication, please refer to the contact option via the [Imprin The technical operation of our data processing systems is carried out by: -``` +```plain Leibniz Computing Centre (LRZ) of the Bavarian Academy of Sciences and Humanities Boltzmannstraße 1 D-85748 Garching near Munich @@ -79,7 +79,7 @@ You have the right to object to the processing of your data at any time on groun Furthermore, you have the right to lodge a complaint with the Bavarian State Commissioner for Data Protection. You can contact the Bavarian State Commissioner for Data Protection at the following address: -``` +```plain Postal address: P.O. Box 22 12 19, 80502 Munich, Germany. Address: Wagmüllerstraße 18, 80538 Munich, Germany Telephone: 089 212672-0 @@ -110,7 +110,7 @@ For more detailed information on the processing of your data and your rights, yo Our web server is operated by the Leibniz Computing Centre of the Bavarian Academy of Sciences and Humanities (LRZ). The personal data you transmit when visiting our website is therefore processed by the LRZ on our behalf: -``` +```plain Leibniz Computing Centre (LRZ) of the Bavarian Academy of Sciences and Humanities Boltzmannstrasse 1 D-85748 Garching near Munich From 6fe6984eb9f0e67664ef6992974329a4f8364398 Mon Sep 17 00:00:00 2001 From: Frank Elsinga Date: Thu, 21 Dec 2023 03:13:15 +0100 Subject: [PATCH 05/16] re-downloaded the nat-information --- data/external/results/rooms_nat.json | 36356 ------------------------- 1 file changed, 36356 deletions(-) diff --git a/data/external/results/rooms_nat.json b/data/external/results/rooms_nat.json index 7f82ef31a..81e3cceb4 100644 --- a/data/external/results/rooms_nat.json +++ b/data/external/results/rooms_nat.json @@ -10,8 +10,6 @@ }, "description": "LMU Besprechungsraum H 522", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0050.05.522", "maps": [], @@ -44,8 +42,6 @@ }, "description": "\u00dcbungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0050.05.537", "maps": [], @@ -78,8 +74,6 @@ }, "description": "Physik-H\u00f6rsaal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0050.EG.030", "maps": [], @@ -112,8 +106,6 @@ }, "description": "N1101, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0101.01.101", "maps": [], @@ -146,8 +138,6 @@ }, "description": "N1101A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0101.01.101A", "maps": [], @@ -180,8 +170,6 @@ }, "description": "N1102, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0101.01.102", "maps": [], @@ -214,8 +202,6 @@ }, "description": "N1103, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0101.01.103", "maps": [], @@ -248,8 +234,6 @@ }, "description": "N1103A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0101.01.103A", "maps": [], @@ -282,8 +266,6 @@ }, "description": "N1103B, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0101.01.103B", "maps": [], @@ -316,8 +298,6 @@ }, "description": "N1104, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0101.01.104", "maps": [], @@ -350,8 +330,6 @@ }, "description": "N1108, Lager Medientechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0101.01.108", "maps": [], @@ -384,8 +362,6 @@ }, "description": "N1110A, Elektronikpraktikum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0101.01.110A", "maps": [], @@ -418,8 +394,6 @@ }, "description": "N1135, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0101.01.135", "maps": [ @@ -473,8 +447,6 @@ }, "description": "N1170, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0101.01.170", "maps": [], @@ -507,8 +479,6 @@ }, "description": "N1170A, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0101.01.170A", "maps": [], @@ -541,8 +511,6 @@ }, "description": "N1173, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0101.01.173", "maps": [], @@ -575,8 +543,6 @@ }, "description": "N1173A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0101.01.173A", "maps": [], @@ -609,8 +575,6 @@ }, "description": "N1173B, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0101.01.173B", "maps": [], @@ -643,8 +607,6 @@ }, "description": "N1173C, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0101.01.173C", "maps": [], @@ -677,8 +639,6 @@ }, "description": "N1173D, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0101.01.173D", "maps": [], @@ -711,8 +671,6 @@ }, "description": "N1195B, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0101.01.195B", "maps": [], @@ -745,8 +703,6 @@ }, "description": "N1196, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0101.01.196", "maps": [], @@ -779,8 +735,6 @@ }, "description": "N1197, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0101.01.197", "maps": [], @@ -813,8 +767,6 @@ }, "description": "N1198, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0101.01.198", "maps": [], @@ -847,8 +799,6 @@ }, "description": "N1199, N1 1.OG, Foyer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0101.01.199", "maps": [], @@ -881,8 +831,6 @@ }, "description": "N1199A, N1 1.OG, Studentische Arbeitspl\u00e4tze", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0101.01.199A", "maps": [], @@ -915,8 +863,6 @@ }, "description": "N1199B, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0101.01.199B", "maps": [], @@ -949,8 +895,6 @@ }, "description": "N1199C, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0101.01.199C", "maps": [], @@ -983,8 +927,6 @@ }, "description": "N1199D, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0101.01.199D", "maps": [], @@ -1017,8 +959,6 @@ }, "description": "N1199E, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0101.01.199E", "maps": [], @@ -1051,8 +991,6 @@ }, "description": "N1199F, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0101.01.199F", "maps": [], @@ -1085,8 +1023,6 @@ }, "description": "N1199G, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0101.01.199G", "maps": [], @@ -1119,8 +1055,6 @@ }, "description": "N2100, N1 2.OG, Foyer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0101.02.100", "maps": [], @@ -1153,8 +1087,6 @@ }, "description": "N2100A, Studentenarbeitspl\u00e4tze", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0101.02.100A", "maps": [], @@ -1187,8 +1119,6 @@ }, "description": "N2103, Studentenarbeitsplatz mit DV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0101.02.103", "maps": [], @@ -1221,8 +1151,6 @@ }, "description": "N2111, Hausmeister", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0101.02.111", "maps": [], @@ -1255,8 +1183,6 @@ }, "description": "N2128, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0101.02.128", "maps": [], @@ -1289,8 +1215,6 @@ }, "description": "N2171, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0101.02.171", "maps": [], @@ -1323,8 +1247,6 @@ }, "description": "N2171A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0101.02.171A", "maps": [], @@ -1357,8 +1279,6 @@ }, "description": "N2175, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0101.02.175", "maps": [], @@ -1391,8 +1311,6 @@ }, "description": "N2175A, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0101.02.175A", "maps": [], @@ -1425,8 +1343,6 @@ }, "description": "N2178, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0101.02.178", "maps": [], @@ -1542,8 +1458,6 @@ }, "description": "N2179A, Regieraum, H\u00f6rsaal-Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0101.02.179A", "maps": [], @@ -1576,8 +1490,6 @@ }, "description": "N2184, L\u00fcftung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0101.02.184", "maps": [], @@ -1610,8 +1522,6 @@ }, "description": "N2186, L\u00fcftung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0101.02.186", "maps": [], @@ -1644,8 +1554,6 @@ }, "description": "N2186A, Raumlufttechnische Anlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0101.02.186A", "maps": [], @@ -1761,8 +1669,6 @@ }, "description": "N2189A, Regieraum, H\u00f6rsaal-Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0101.02.189A", "maps": [], @@ -1878,8 +1784,6 @@ }, "description": "N2190A, Regieraum, H\u00f6rsaal-Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0101.02.190A", "maps": [], @@ -1912,8 +1816,6 @@ }, "description": "N2190C, Regieraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0101.02.190C", "maps": [], @@ -1946,8 +1848,6 @@ }, "description": "N2190D, Regieraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0101.02.190D", "maps": [], @@ -1980,8 +1880,6 @@ }, "description": "N2191, L\u00fcftung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0101.02.191", "maps": [], @@ -2014,8 +1912,6 @@ }, "description": "N2192, K\u00e4ltemaschine", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0101.02.192", "maps": [], @@ -2048,8 +1944,6 @@ }, "description": "N2194, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0101.02.194", "maps": [], @@ -2082,8 +1976,6 @@ }, "description": "N2195, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0101.02.195", "maps": [], @@ -2116,8 +2008,6 @@ }, "description": "N2195A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0101.02.195A", "maps": [], @@ -2150,8 +2040,6 @@ }, "description": "N2195B, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0101.02.195B", "maps": [], @@ -2184,8 +2072,6 @@ }, "description": "N2195C, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0101.02.195C", "maps": [], @@ -2218,8 +2104,6 @@ }, "description": "N2195D, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0101.02.195D", "maps": [], @@ -2252,8 +2136,6 @@ }, "description": "N2196, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0101.02.196", "maps": [], @@ -2286,8 +2168,6 @@ }, "description": "N2196A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0101.02.196A", "maps": [], @@ -2320,8 +2200,6 @@ }, "description": "N2196B, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0101.02.196B", "maps": [], @@ -2354,8 +2232,6 @@ }, "description": "N2196C, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0101.02.196C", "maps": [], @@ -2388,8 +2264,6 @@ }, "description": "N2197, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0101.02.197", "maps": [], @@ -2422,8 +2296,6 @@ }, "description": "N2198, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0101.02.198", "maps": [], @@ -2456,8 +2328,6 @@ }, "description": "N2199, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0101.02.199", "maps": [], @@ -2490,8 +2360,6 @@ }, "description": "N3101, Treppe Ost/Dachgeschoss", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "0101.DG.101", "maps": [], @@ -2524,8 +2392,6 @@ }, "description": "N3102, Aufzugsmaschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "0101.DG.102", "maps": [], @@ -2558,8 +2424,6 @@ }, "description": "N3103, Wasserversorgung Dachgeschoss Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "0101.DG.103", "maps": [], @@ -2592,8 +2456,6 @@ }, "description": "N3104, Treppe West Dachgeschoss", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "0101.DG.104", "maps": [], @@ -2626,8 +2488,6 @@ }, "description": "N3105, Aufzugsmaschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "0101.DG.105", "maps": [], @@ -2660,8 +2520,6 @@ }, "description": "Freiluftexperimentierfl\u00e4che", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "0101.DG.996", "maps": [], @@ -2694,8 +2552,6 @@ }, "description": "Freiluftexperimentierfl\u00e4che", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "0101.DG.996A", "maps": [], @@ -2728,8 +2584,6 @@ }, "description": "N0110, N1 EG, Foyer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.110", "maps": [], @@ -2762,8 +2616,6 @@ }, "description": "N0110A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.110A", "maps": [], @@ -2796,8 +2648,6 @@ }, "description": "N0110B, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.110B", "maps": [], @@ -2830,8 +2680,6 @@ }, "description": "N0110C, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.110C", "maps": [], @@ -2864,8 +2712,6 @@ }, "description": "N0110D, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.110D", "maps": [], @@ -2898,8 +2744,6 @@ }, "description": "N0110E, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.110E", "maps": [], @@ -2932,8 +2776,6 @@ }, "description": "N0110F, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.110F", "maps": [], @@ -2966,8 +2808,6 @@ }, "description": "N0110H, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.110H", "maps": [], @@ -3000,8 +2840,6 @@ }, "description": "N0110I, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.110I", "maps": [], @@ -3034,8 +2872,6 @@ }, "description": "N0116, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.116", "maps": [], @@ -3068,8 +2904,6 @@ }, "description": "N0123, Windfang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.123", "maps": [], @@ -3102,8 +2936,6 @@ }, "description": "N0123A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.123A", "maps": [], @@ -3136,8 +2968,6 @@ }, "description": "N0123B, Gang, Weg im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.123B", "maps": [], @@ -3170,8 +3000,6 @@ }, "description": "N0140, Windfang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.140", "maps": [], @@ -3204,8 +3032,6 @@ }, "description": "N0140A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.140A", "maps": [], @@ -3238,8 +3064,6 @@ }, "description": "N0140B, Gang, Weg im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.140B", "maps": [], @@ -3272,8 +3096,6 @@ }, "description": "N0160A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.160A", "maps": [], @@ -3306,8 +3128,6 @@ }, "description": "N0160B, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.160B", "maps": [], @@ -3340,8 +3160,6 @@ }, "description": "N0170, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.170", "maps": [], @@ -3374,8 +3192,6 @@ }, "description": "N0170A, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.170A", "maps": [], @@ -3408,8 +3224,6 @@ }, "description": "N0170B, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.170B", "maps": [], @@ -3442,8 +3256,6 @@ }, "description": "N0170C, Flur zu WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.170C", "maps": [], @@ -3476,8 +3288,6 @@ }, "description": "N0170D, WC-Damen mit Dusche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.170D", "maps": [], @@ -3510,8 +3320,6 @@ }, "description": "N0170E, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.170E", "maps": [], @@ -3544,8 +3352,6 @@ }, "description": "N0171, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.171", "maps": [], @@ -3578,8 +3384,6 @@ }, "description": "N0171A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.171A", "maps": [], @@ -3612,8 +3416,6 @@ }, "description": "N0171b, Kellertreppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.171B", "maps": [], @@ -3646,8 +3448,6 @@ }, "description": "N0171C, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.171C", "maps": [], @@ -3680,8 +3480,6 @@ }, "description": "N0171D, Lager Hausmeister", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.171D", "maps": [], @@ -3714,8 +3512,6 @@ }, "description": "N0171E, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.171E", "maps": [], @@ -3748,8 +3544,6 @@ }, "description": "N0172A, WC-Damen / Wickeltisch", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.172A", "maps": [], @@ -3782,8 +3576,6 @@ }, "description": "N0172B, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.172B", "maps": [], @@ -3816,8 +3608,6 @@ }, "description": "N0174B, Beh.-WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.174B", "maps": [], @@ -3850,8 +3640,6 @@ }, "description": "N0176, RLT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.176", "maps": [], @@ -3884,8 +3672,6 @@ }, "description": "N0176B, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.176B", "maps": [], @@ -3918,8 +3704,6 @@ }, "description": "N0176C, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.176C", "maps": [], @@ -3952,8 +3736,6 @@ }, "description": "N0179, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.179", "maps": [], @@ -3986,8 +3768,6 @@ }, "description": "N0179A, Brandmeldezentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.179A", "maps": [], @@ -4020,8 +3800,6 @@ }, "description": "N0180, Maschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.180", "maps": [], @@ -4054,8 +3832,6 @@ }, "description": "N0189, Garderobe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.189", "maps": [], @@ -4088,8 +3864,6 @@ }, "description": "N0190, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.190", "maps": [], @@ -4122,8 +3896,6 @@ }, "description": "N0190A, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.190A", "maps": [], @@ -4156,8 +3928,6 @@ }, "description": "N0190B, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.190B", "maps": [], @@ -4190,8 +3960,6 @@ }, "description": "N0190C, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.190C", "maps": [], @@ -4224,8 +3992,6 @@ }, "description": "N0190D, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.190D", "maps": [], @@ -4258,8 +4024,6 @@ }, "description": "N0190E, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.190E", "maps": [], @@ -4292,8 +4056,6 @@ }, "description": "N0191, Tagungsm\u00f6bellager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.191", "maps": [], @@ -4326,8 +4088,6 @@ }, "description": "N0192A, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.192A", "maps": [], @@ -4360,8 +4120,6 @@ }, "description": "N0192B, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.192B", "maps": [], @@ -4394,8 +4152,6 @@ }, "description": "N0194, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.194", "maps": [], @@ -4428,8 +4184,6 @@ }, "description": "N0194A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.194A", "maps": [], @@ -4462,8 +4216,6 @@ }, "description": "N0194B, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.194B", "maps": [], @@ -4496,8 +4248,6 @@ }, "description": "N0194C, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.194C", "maps": [], @@ -4530,8 +4280,6 @@ }, "description": "N0194D, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.194D", "maps": [], @@ -4564,8 +4312,6 @@ }, "description": "N0195D, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.195D", "maps": [], @@ -4598,8 +4344,6 @@ }, "description": "N0198B, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.198B", "maps": [], @@ -4632,8 +4376,6 @@ }, "description": "N0198D, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.198D", "maps": [], @@ -4666,8 +4408,6 @@ }, "description": "N0199, Cip-Raum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.199", "maps": [], @@ -4700,8 +4440,6 @@ }, "description": "N0199B, Technik RLT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0101.EG.199B", "maps": [], @@ -4734,8 +4472,6 @@ }, "description": "NK101, B\u00fcro Fahrbereitschaft", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.101", "maps": [], @@ -4768,8 +4504,6 @@ }, "description": "NK101A, Aufenthaltsraum Fahrbereitschaft", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.101A", "maps": [], @@ -4802,8 +4536,6 @@ }, "description": "NK103, L\u00fcftung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.103", "maps": [], @@ -4836,8 +4568,6 @@ }, "description": "NK104, L\u00fcftung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.104", "maps": [], @@ -4870,8 +4600,6 @@ }, "description": "NK107, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.107", "maps": [], @@ -4904,8 +4632,6 @@ }, "description": "NK109, Waschhalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.109", "maps": [], @@ -4938,8 +4664,6 @@ }, "description": "NK109A, Reifenlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.109A", "maps": [], @@ -4972,8 +4696,6 @@ }, "description": "NK109B, Umkleide", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.109B", "maps": [], @@ -5006,8 +4728,6 @@ }, "description": "NK109C, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.109C", "maps": [], @@ -5040,8 +4760,6 @@ }, "description": "NK109D, Durchgang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.109D", "maps": [], @@ -5074,8 +4792,6 @@ }, "description": "NK109E, Raumluftpodest im NK109C", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.109E", "maps": [], @@ -5108,8 +4824,6 @@ }, "description": "NK109F, Park-Durchgangsbereich zu NK 109D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.109F", "maps": [], @@ -5142,8 +4856,6 @@ }, "description": "NK110, Raumluft", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.110", "maps": [], @@ -5176,8 +4888,6 @@ }, "description": "NK111, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.111", "maps": [], @@ -5210,8 +4920,6 @@ }, "description": "NK111A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.111A", "maps": [], @@ -5244,8 +4952,6 @@ }, "description": "NK111B, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.111B", "maps": [], @@ -5278,8 +4984,6 @@ }, "description": "NK113, Metallwerkst\u00e4tte grob", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.113", "maps": [], @@ -5312,8 +5016,6 @@ }, "description": "NK114, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.114", "maps": [], @@ -5346,8 +5048,6 @@ }, "description": "NK115, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.115", "maps": [], @@ -5380,8 +5080,6 @@ }, "description": "NK117, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.117", "maps": [], @@ -5414,8 +5112,6 @@ }, "description": "NK118, L\u00fcftung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.118", "maps": [], @@ -5448,8 +5144,6 @@ }, "description": "NK118A, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.118A", "maps": [], @@ -5482,8 +5176,6 @@ }, "description": "NK118B, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.118B", "maps": [], @@ -5516,8 +5208,6 @@ }, "description": "NK118C, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.118C", "maps": [], @@ -5550,8 +5240,6 @@ }, "description": "NK118D, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.118D", "maps": [], @@ -5584,8 +5272,6 @@ }, "description": "NK118E, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.118E", "maps": [], @@ -5618,8 +5304,6 @@ }, "description": "NK118F, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.118F", "maps": [], @@ -5652,8 +5336,6 @@ }, "description": "NK119, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.119", "maps": [], @@ -5686,8 +5368,6 @@ }, "description": "NK125, L\u00fcftung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.125", "maps": [], @@ -5720,8 +5400,6 @@ }, "description": "NK126, L\u00fcftung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.126", "maps": [], @@ -5754,8 +5432,6 @@ }, "description": "NK130, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.130", "maps": [], @@ -5788,8 +5464,6 @@ }, "description": "NK130A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.130A", "maps": [], @@ -5822,8 +5496,6 @@ }, "description": "NK131, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.131", "maps": [], @@ -5856,8 +5528,6 @@ }, "description": "NK132, Treppe/Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.132", "maps": [], @@ -5890,8 +5560,6 @@ }, "description": "NK132A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.132A", "maps": [], @@ -5924,8 +5592,6 @@ }, "description": "NK132B, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.132B", "maps": [], @@ -5958,8 +5624,6 @@ }, "description": "NK132C, Abstellraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.132C", "maps": [], @@ -5992,8 +5656,6 @@ }, "description": "NK132D, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.132D", "maps": [], @@ -6026,8 +5688,6 @@ }, "description": "NK140, RLT-Anlage (Zugang Steiggitter 0102)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.140", "maps": [], @@ -6060,8 +5720,6 @@ }, "description": "NK140A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.140A", "maps": [], @@ -6094,8 +5752,6 @@ }, "description": "NK199M, Schacht f.Personenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.199M", "maps": [], @@ -6128,8 +5784,6 @@ }, "description": "NT201, Dienstfahrzeuge", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.201", "maps": [], @@ -6162,8 +5816,6 @@ }, "description": "NT202, Dienstfahrzeuge", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.202", "maps": [], @@ -6196,8 +5848,6 @@ }, "description": "NT203, Dienstfahrzeuge", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.203", "maps": [], @@ -6230,8 +5880,6 @@ }, "description": "NT204, Dienstfahrzeuge", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.204", "maps": [], @@ -6264,8 +5912,6 @@ }, "description": "NT204A, Kfz.-Abst.i.Geb\u00e4ude integriert", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.204A", "maps": [], @@ -6298,8 +5944,6 @@ }, "description": "NT204B, Kfz.-Abst.i.Geb\u00e4ude integriert", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.204B", "maps": [], @@ -6332,8 +5976,6 @@ }, "description": "NT205, Dienstfahrzeuge", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.205", "maps": [], @@ -6366,8 +6008,6 @@ }, "description": "NT205A, Kfz.-Abst.i.Geb\u00e4ude integriert", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.205A", "maps": [], @@ -6400,8 +6040,6 @@ }, "description": "NT205B, Kfz.-Abst.i.Geb\u00e4ude integriert", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.205B", "maps": [], @@ -6434,8 +6072,6 @@ }, "description": "NT206, Dienstfahrzeuge", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.206", "maps": [], @@ -6468,8 +6104,6 @@ }, "description": "NT206A, Kfz.-Abst.i.Geb\u00e4ude integriert", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.206A", "maps": [], @@ -6502,8 +6136,6 @@ }, "description": "NT206B, Kfz.-Abst.i.Geb\u00e4ude integriert", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.206B", "maps": [], @@ -6536,8 +6168,6 @@ }, "description": "NT207, Dienstparkplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.207", "maps": [], @@ -6570,8 +6200,6 @@ }, "description": "NT208, Kfz.-Abst.i.Geb\u00e4ude integriert", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.208", "maps": [], @@ -6604,8 +6232,6 @@ }, "description": "NT209, Dienstfahrzeuge", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.209", "maps": [], @@ -6638,8 +6264,6 @@ }, "description": "NT209A, Kfz.-Abst.i.Geb\u00e4ude integriert", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.209A", "maps": [], @@ -6672,8 +6296,6 @@ }, "description": "NT209B, Kfz.-Abst.i.Geb\u00e4ude integriert", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.209B", "maps": [], @@ -6706,8 +6328,6 @@ }, "description": "NT210, Dienstfahrzeuge", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.210", "maps": [], @@ -6740,8 +6360,6 @@ }, "description": "NT210A, Kfz.-Abst.i.Geb\u00e4ude integriert", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.210A", "maps": [], @@ -6774,8 +6392,6 @@ }, "description": "NT210B, Kfz.-Abst.i.Geb\u00e4ude integriert", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.210B", "maps": [], @@ -6808,8 +6424,6 @@ }, "description": "NT211, Dienstfahrzeuge", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.211", "maps": [], @@ -6842,8 +6456,6 @@ }, "description": "NT211A, Kfz.-Abst.i.Geb\u00e4ude integriert", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.211A", "maps": [], @@ -6876,8 +6488,6 @@ }, "description": "NT211B, Kfz.-Abst.i.Geb\u00e4ude integriert", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.211B", "maps": [], @@ -6910,8 +6520,6 @@ }, "description": "NT212, Dienstfahrzeuge/Zugang zu NK109C", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.212", "maps": [], @@ -6944,8 +6552,6 @@ }, "description": "NT300, Kfz.-Abst.i.Geb\u00e4ude integriert", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.300", "maps": [], @@ -6978,8 +6584,6 @@ }, "description": "NT301, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.301", "maps": [], @@ -7012,8 +6616,6 @@ }, "description": "NT302, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.302", "maps": [], @@ -7046,8 +6648,6 @@ }, "description": "NT303, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.303", "maps": [], @@ -7080,8 +6680,6 @@ }, "description": "NT304, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.304", "maps": [], @@ -7114,8 +6712,6 @@ }, "description": "NT305, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.305", "maps": [], @@ -7148,8 +6744,6 @@ }, "description": "NT306, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.306", "maps": [], @@ -7182,8 +6776,6 @@ }, "description": "NT307, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.307", "maps": [], @@ -7216,8 +6808,6 @@ }, "description": "NT308, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.308", "maps": [], @@ -7250,8 +6840,6 @@ }, "description": "NT309, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.309", "maps": [], @@ -7284,8 +6872,6 @@ }, "description": "NT310, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.310", "maps": [], @@ -7318,8 +6904,6 @@ }, "description": "NT311, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.311", "maps": [], @@ -7352,8 +6936,6 @@ }, "description": "NT312, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.312", "maps": [], @@ -7386,8 +6968,6 @@ }, "description": "NT313, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.313", "maps": [], @@ -7420,8 +7000,6 @@ }, "description": "NT314, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.314", "maps": [], @@ -7454,8 +7032,6 @@ }, "description": "NT315, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.315", "maps": [], @@ -7488,8 +7064,6 @@ }, "description": "NT316, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.316", "maps": [], @@ -7522,8 +7096,6 @@ }, "description": "NT317, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.317", "maps": [], @@ -7556,8 +7128,6 @@ }, "description": "NT318, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.318", "maps": [], @@ -7590,8 +7160,6 @@ }, "description": "NT319, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.319", "maps": [], @@ -7624,8 +7192,6 @@ }, "description": "NT320, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.320", "maps": [], @@ -7658,8 +7224,6 @@ }, "description": "NT321, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.321", "maps": [], @@ -7692,8 +7256,6 @@ }, "description": "NT322, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.322", "maps": [], @@ -7726,8 +7288,6 @@ }, "description": "NT323, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.323", "maps": [], @@ -7760,8 +7320,6 @@ }, "description": "NT324, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.324", "maps": [], @@ -7794,8 +7352,6 @@ }, "description": "NT325, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.325", "maps": [], @@ -7828,8 +7384,6 @@ }, "description": "NT326, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.326", "maps": [], @@ -7862,8 +7416,6 @@ }, "description": "NT327, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.327", "maps": [], @@ -7896,8 +7448,6 @@ }, "description": "NT328, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.328", "maps": [], @@ -7930,8 +7480,6 @@ }, "description": "NT329, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.329", "maps": [], @@ -7964,8 +7512,6 @@ }, "description": "NT330, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.330", "maps": [], @@ -7998,8 +7544,6 @@ }, "description": "NT331, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.331", "maps": [], @@ -8032,8 +7576,6 @@ }, "description": "NT332, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.332", "maps": [], @@ -8066,8 +7608,6 @@ }, "description": "NT333, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.333", "maps": [], @@ -8100,8 +7640,6 @@ }, "description": "NT334, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.334", "maps": [], @@ -8134,8 +7672,6 @@ }, "description": "NT335, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.335", "maps": [], @@ -8168,8 +7704,6 @@ }, "description": "NT336, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.336", "maps": [], @@ -8202,8 +7736,6 @@ }, "description": "NT337, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.337", "maps": [], @@ -8236,8 +7768,6 @@ }, "description": "NT338, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.338", "maps": [], @@ -8270,8 +7800,6 @@ }, "description": "NT339, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.339", "maps": [], @@ -8304,8 +7832,6 @@ }, "description": "NT340, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.340", "maps": [], @@ -8338,8 +7864,6 @@ }, "description": "NT341, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.341", "maps": [], @@ -8372,8 +7896,6 @@ }, "description": "NT342, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.342", "maps": [], @@ -8406,8 +7928,6 @@ }, "description": "NT343, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.343", "maps": [], @@ -8440,8 +7960,6 @@ }, "description": "NT344, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.344", "maps": [], @@ -8474,8 +7992,6 @@ }, "description": "NT345, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.345", "maps": [], @@ -8508,8 +8024,6 @@ }, "description": "NT346, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.346", "maps": [], @@ -8542,8 +8056,6 @@ }, "description": "NT347, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.347", "maps": [], @@ -8576,8 +8088,6 @@ }, "description": "NT348, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.348", "maps": [], @@ -8610,8 +8120,6 @@ }, "description": "NT349, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.349", "maps": [], @@ -8644,8 +8152,6 @@ }, "description": "NT350, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.350", "maps": [], @@ -8678,8 +8184,6 @@ }, "description": "NT351, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.351", "maps": [], @@ -8712,8 +8216,6 @@ }, "description": "NT352, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.352", "maps": [], @@ -8746,8 +8248,6 @@ }, "description": "NT353, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.353", "maps": [], @@ -8780,8 +8280,6 @@ }, "description": "NT354, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.354", "maps": [], @@ -8814,8 +8312,6 @@ }, "description": "NT355, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.355", "maps": [], @@ -8848,8 +8344,6 @@ }, "description": "NT356, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.356", "maps": [], @@ -8882,8 +8376,6 @@ }, "description": "NT357, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.357", "maps": [], @@ -8916,8 +8408,6 @@ }, "description": "NT358, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.358", "maps": [], @@ -8950,8 +8440,6 @@ }, "description": "NT359, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.359", "maps": [], @@ -8984,8 +8472,6 @@ }, "description": "NT360, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.360", "maps": [], @@ -9018,8 +8504,6 @@ }, "description": "NT361, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.361", "maps": [], @@ -9052,8 +8536,6 @@ }, "description": "NT362, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.362", "maps": [], @@ -9086,8 +8568,6 @@ }, "description": "NT363, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.363", "maps": [], @@ -9120,8 +8600,6 @@ }, "description": "NT364, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.364", "maps": [], @@ -9154,8 +8632,6 @@ }, "description": "NT365, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.365", "maps": [], @@ -9188,8 +8664,6 @@ }, "description": "NT366, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.366", "maps": [], @@ -9222,8 +8696,6 @@ }, "description": "NT367, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.367", "maps": [], @@ -9256,8 +8728,6 @@ }, "description": "NT368, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.368", "maps": [], @@ -9290,8 +8760,6 @@ }, "description": "NT369, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.369", "maps": [], @@ -9324,8 +8792,6 @@ }, "description": "NT370, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.370", "maps": [], @@ -9358,8 +8824,6 @@ }, "description": "NT371, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.371", "maps": [], @@ -9392,8 +8856,6 @@ }, "description": "NT372, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.372", "maps": [], @@ -9426,8 +8888,6 @@ }, "description": "NT373, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.373", "maps": [], @@ -9460,8 +8920,6 @@ }, "description": "NT374, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.374", "maps": [], @@ -9494,8 +8952,6 @@ }, "description": "NT375, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.375", "maps": [], @@ -9528,8 +8984,6 @@ }, "description": "NT376, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.376", "maps": [], @@ -9562,8 +9016,6 @@ }, "description": "NT377, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.377", "maps": [], @@ -9596,8 +9048,6 @@ }, "description": "NT378, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.378", "maps": [], @@ -9630,8 +9080,6 @@ }, "description": "NT380, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.380", "maps": [], @@ -9664,8 +9112,6 @@ }, "description": "NT381, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.381", "maps": [], @@ -9698,8 +9144,6 @@ }, "description": "NT382, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.382", "maps": [], @@ -9732,8 +9176,6 @@ }, "description": "NT383, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.383", "maps": [], @@ -9766,8 +9208,6 @@ }, "description": "NT384, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.384", "maps": [], @@ -9800,8 +9240,6 @@ }, "description": "NT385, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.385", "maps": [], @@ -9834,8 +9272,6 @@ }, "description": "NT386, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.386", "maps": [], @@ -9868,8 +9304,6 @@ }, "description": "NT387, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.387", "maps": [], @@ -9902,8 +9336,6 @@ }, "description": "NT388, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.388", "maps": [], @@ -9936,8 +9368,6 @@ }, "description": "NT389, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.389", "maps": [], @@ -9970,8 +9400,6 @@ }, "description": "NT391, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.391", "maps": [], @@ -10004,8 +9432,6 @@ }, "description": "NT392, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.392", "maps": [], @@ -10038,8 +9464,6 @@ }, "description": "NT393, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.393", "maps": [], @@ -10072,8 +9496,6 @@ }, "description": "NT394, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.394", "maps": [], @@ -10106,8 +9528,6 @@ }, "description": "NT395, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.395", "maps": [], @@ -10140,8 +9560,6 @@ }, "description": "NT397, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.397", "maps": [], @@ -10174,8 +9592,6 @@ }, "description": "NT398, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.398", "maps": [], @@ -10208,8 +9624,6 @@ }, "description": "NT399, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.399", "maps": [], @@ -10242,8 +9656,6 @@ }, "description": "NT399A, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.399A", "maps": [], @@ -10276,8 +9688,6 @@ }, "description": "NT399B, Kfz.-Abst.i.Geb\u00e4ude integriert", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.399B", "maps": [], @@ -10310,8 +9720,6 @@ }, "description": "NT400, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.400", "maps": [], @@ -10344,8 +9752,6 @@ }, "description": "NT401, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.401", "maps": [], @@ -10378,8 +9784,6 @@ }, "description": "NT402, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.402", "maps": [], @@ -10412,8 +9816,6 @@ }, "description": "NT403, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.403", "maps": [], @@ -10446,8 +9848,6 @@ }, "description": "NT404, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.404", "maps": [], @@ -10480,8 +9880,6 @@ }, "description": "NT405, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.405", "maps": [], @@ -10514,8 +9912,6 @@ }, "description": "NT406, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.406", "maps": [], @@ -10548,8 +9944,6 @@ }, "description": "NT407, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.407", "maps": [], @@ -10582,8 +9976,6 @@ }, "description": "NT408, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.408", "maps": [], @@ -10616,8 +10008,6 @@ }, "description": "NT409, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.409", "maps": [], @@ -10650,8 +10040,6 @@ }, "description": "NT410, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.410", "maps": [], @@ -10684,8 +10072,6 @@ }, "description": "NT411, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.411", "maps": [], @@ -10718,8 +10104,6 @@ }, "description": "NT412, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.412", "maps": [], @@ -10752,8 +10136,6 @@ }, "description": "NT413, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.413", "maps": [], @@ -10786,8 +10168,6 @@ }, "description": "NT414, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.414", "maps": [], @@ -10820,8 +10200,6 @@ }, "description": "NT415, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.415", "maps": [], @@ -10854,8 +10232,6 @@ }, "description": "NT416, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.416", "maps": [], @@ -10888,8 +10264,6 @@ }, "description": "NT417, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.417", "maps": [], @@ -10922,8 +10296,6 @@ }, "description": "NT418, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.418", "maps": [], @@ -10956,8 +10328,6 @@ }, "description": "NT419, Parkbucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.419", "maps": [], @@ -10990,8 +10360,6 @@ }, "description": "NT501, Fahrbereich", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.501", "maps": [], @@ -11024,8 +10392,6 @@ }, "description": "NT502, Fahrbereich", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.502", "maps": [], @@ -11058,8 +10424,6 @@ }, "description": "NT503, Fahrbereich", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.503", "maps": [], @@ -11092,8 +10456,6 @@ }, "description": "NT504, Fahrbereich", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.504", "maps": [], @@ -11126,8 +10488,6 @@ }, "description": "NT505, Fahrbereich", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.505", "maps": [], @@ -11160,8 +10520,6 @@ }, "description": "NT506, Fahrbereich", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.506", "maps": [], @@ -11194,8 +10552,6 @@ }, "description": "NK508, Gang, Weg im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.508", "maps": [], @@ -11228,8 +10584,6 @@ }, "description": "NT509, Gang, Weg im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.509", "maps": [], @@ -11262,8 +10616,6 @@ }, "description": "NV601, Gang, Weg im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.601", "maps": [], @@ -11296,8 +10648,6 @@ }, "description": "NV602, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.602", "maps": [], @@ -11330,8 +10680,6 @@ }, "description": "-2611, Installationskanal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.611", "maps": [], @@ -11364,8 +10712,6 @@ }, "description": "-2612, Installationskanal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.612", "maps": [], @@ -11398,8 +10744,6 @@ }, "description": "-2613, Installationskanal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.613", "maps": [], @@ -11432,8 +10776,6 @@ }, "description": "NK199N, Schacht f.Personenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0101.U1.953", "maps": [], @@ -11466,8 +10808,6 @@ }, "description": "N1005ZG, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0101.Z1.005", "maps": [ @@ -11512,8 +10852,6 @@ }, "description": "N1039ZG, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0101.Z1.039", "maps": [], @@ -11546,8 +10884,6 @@ }, "description": "N1041ZG, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0101.Z1.041", "maps": [], @@ -11580,8 +10916,6 @@ }, "description": "N1041AZG, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0101.Z1.041A", "maps": [], @@ -11614,8 +10948,6 @@ }, "description": "N1044AZG, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0101.Z1.044A", "maps": [], @@ -11648,8 +10980,6 @@ }, "description": "N1045AZG, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0101.Z1.045A", "maps": [], @@ -11682,8 +11012,6 @@ }, "description": "N1046ZG, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0101.Z1.046", "maps": [], @@ -11716,8 +11044,6 @@ }, "description": "N1046AZG, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0101.Z1.046A", "maps": [], @@ -11750,8 +11076,6 @@ }, "description": "N1048ZG, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0101.Z1.048", "maps": [], @@ -11784,8 +11108,6 @@ }, "description": "N148AZG, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0101.Z1.048A", "maps": [], @@ -11818,8 +11140,6 @@ }, "description": "N1048BZG, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0101.Z1.048B", "maps": [], @@ -11852,8 +11172,6 @@ }, "description": "N1048CZG, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0101.Z1.048C", "maps": [], @@ -11886,8 +11204,6 @@ }, "description": "N0048DZG, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0101.Z1.048D", "maps": [], @@ -11920,8 +11236,6 @@ }, "description": "N1049ZG, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0101.Z1.049", "maps": [], @@ -11954,8 +11268,6 @@ }, "description": "N1049AZG, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0101.Z1.049A", "maps": [], @@ -11988,8 +11300,6 @@ }, "description": "N1049BZG, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0101.Z1.049B", "maps": [], @@ -12022,8 +11332,6 @@ }, "description": "N1050ZG, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0101.Z1.050", "maps": [], @@ -12056,8 +11364,6 @@ }, "description": "N1050AZG, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0101.Z1.050A", "maps": [], @@ -12090,8 +11396,6 @@ }, "description": "N1050BZG, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0101.Z1.050B", "maps": [], @@ -12124,8 +11428,6 @@ }, "description": "N1060ZG, Lehr-/Schausammlungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0101.Z1.060", "maps": [], @@ -12158,8 +11460,6 @@ }, "description": "N1060AZG, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0101.Z1.060A", "maps": [], @@ -12192,8 +11492,6 @@ }, "description": "N1060BZG, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0101.Z1.060B", "maps": [], @@ -12226,8 +11524,6 @@ }, "description": "N1060CZG, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0101.Z1.060C", "maps": [], @@ -12260,8 +11556,6 @@ }, "description": "N1062ZG, Flure, Hallen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0101.Z1.062", "maps": [], @@ -12294,8 +11588,6 @@ }, "description": "N1062BZG, N1 ZG, Studentische Arbeitspl\u00e4tze", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0101.Z1.062B", "maps": [], @@ -12577,8 +11869,6 @@ }, "description": "N1090AZG, Regieraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0101.Z1.090A", "maps": [], @@ -12694,8 +11984,6 @@ }, "description": "N1095AZG, Regieraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0101.Z1.095A", "maps": [], @@ -12728,8 +12016,6 @@ }, "description": "N1200, Zugang/Zuschauerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0102.01.200", "maps": [], @@ -12762,8 +12048,6 @@ }, "description": "N1200A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0102.01.200A", "maps": [], @@ -12796,8 +12080,6 @@ }, "description": "N1200B, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0102.01.200B", "maps": [], @@ -12830,8 +12112,6 @@ }, "description": "N1200C, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0102.01.200C", "maps": [], @@ -12864,8 +12144,6 @@ }, "description": "N1200D, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0102.01.200D", "maps": [], @@ -12898,8 +12176,6 @@ }, "description": "N1201P, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0102.01.201P", "maps": [], @@ -12932,8 +12208,6 @@ }, "description": "N1203, H\u00f6rsaal-eben m.exp.-B\u00fchne", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0102.01.203", "maps": [ @@ -12978,8 +12252,6 @@ }, "description": "N1210, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0102.01.210", "maps": [], @@ -13012,8 +12284,6 @@ }, "description": "N1210A, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0102.01.210A", "maps": [], @@ -13046,8 +12316,6 @@ }, "description": "N2200, Zugang Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0102.02.200", "maps": [], @@ -13080,8 +12348,6 @@ }, "description": "N2200A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0102.02.200A", "maps": [], @@ -13114,8 +12380,6 @@ }, "description": "N2200C, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0102.02.200C", "maps": [], @@ -13148,8 +12412,6 @@ }, "description": "N2200D, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0102.02.200D", "maps": [], @@ -13182,8 +12444,6 @@ }, "description": "N2210, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0102.02.210", "maps": [], @@ -13216,8 +12476,6 @@ }, "description": "N2210A, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0102.02.210A", "maps": [], @@ -13250,8 +12508,6 @@ }, "description": "N3200, Zugang Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0102.03.200", "maps": [], @@ -13284,8 +12540,6 @@ }, "description": "N3200A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0102.03.200A", "maps": [], @@ -13318,8 +12572,6 @@ }, "description": "N3200C, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0102.03.200C", "maps": [], @@ -13352,8 +12604,6 @@ }, "description": "N3200D, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0102.03.200D", "maps": [], @@ -13386,8 +12636,6 @@ }, "description": "N3210, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0102.03.210", "maps": [], @@ -13420,8 +12668,6 @@ }, "description": "N3210A, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0102.03.210A", "maps": [], @@ -13454,8 +12700,6 @@ }, "description": "N4200, Zugang Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0102.04.200", "maps": [], @@ -13488,8 +12732,6 @@ }, "description": "N4200A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0102.04.200A", "maps": [], @@ -13522,8 +12764,6 @@ }, "description": "N4200C, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0102.04.200C", "maps": [], @@ -13556,8 +12796,6 @@ }, "description": "N4200D, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0102.04.200D", "maps": [], @@ -13590,8 +12828,6 @@ }, "description": "N4208, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0102.04.208", "maps": [], @@ -13624,8 +12860,6 @@ }, "description": "N4208A, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0102.04.208A", "maps": [], @@ -13658,8 +12892,6 @@ }, "description": "Z N4209, Aufzugsmaschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0102.04.209", "maps": [], @@ -13692,8 +12924,6 @@ }, "description": "Z N4210, K\u00e4ltemaschinen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0102.04.210", "maps": [], @@ -13726,8 +12956,6 @@ }, "description": "Z N4211, Personenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0102.04.211", "maps": [], @@ -13760,8 +12988,6 @@ }, "description": "Z N4209, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "0102.DG.209", "maps": [], @@ -13794,8 +13020,6 @@ }, "description": "N0200, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0102.EG.200", "maps": [], @@ -13828,8 +13052,6 @@ }, "description": "N0200A, Personenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0102.EG.200A", "maps": [], @@ -13862,8 +13084,6 @@ }, "description": "N0200B, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0102.EG.200B", "maps": [], @@ -13896,8 +13116,6 @@ }, "description": "N0200C, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0102.EG.200C", "maps": [], @@ -13930,8 +13148,6 @@ }, "description": "N0200D, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0102.EG.200D", "maps": [], @@ -13964,8 +13180,6 @@ }, "description": "N0200E, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0102.EG.200E", "maps": [], @@ -13998,8 +13212,6 @@ }, "description": "N0200F, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0102.EG.200F", "maps": [], @@ -14032,8 +13244,6 @@ }, "description": "N0200G, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0102.EG.200G", "maps": [], @@ -14066,8 +13276,6 @@ }, "description": "N0207A, Schalterraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0102.EG.207A", "maps": [], @@ -14100,8 +13308,6 @@ }, "description": "N0207B, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0102.EG.207B", "maps": [], @@ -14134,8 +13340,6 @@ }, "description": "N0243, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0102.EG.243", "maps": [], @@ -14168,8 +13372,6 @@ }, "description": "N0243A, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0102.EG.243A", "maps": [], @@ -14202,8 +13404,6 @@ }, "description": "N-1212, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0102.U1.212", "maps": [], @@ -14236,8 +13436,6 @@ }, "description": "N-1212A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0102.U1.212A", "maps": [], @@ -14270,8 +13468,6 @@ }, "description": "N-1221, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0102.U1.221", "maps": [], @@ -14304,8 +13500,6 @@ }, "description": "N-1221A, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0102.U1.221A", "maps": [], @@ -14338,8 +13532,6 @@ }, "description": "N-1221B, Schacht f.Personenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0102.U1.221B", "maps": [], @@ -14372,8 +13564,6 @@ }, "description": "N-1221C, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0102.U1.221C", "maps": [], @@ -14406,8 +13596,6 @@ }, "description": "N-1222A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0102.U1.222A", "maps": [], @@ -14440,8 +13628,6 @@ }, "description": "N-1240, Hausanschlussraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0102.U1.240", "maps": [], @@ -14474,8 +13660,6 @@ }, "description": "N-1241, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0102.U1.241", "maps": [], @@ -14508,8 +13692,6 @@ }, "description": "N-1242, Wasserversorgung, Aufbereitung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0102.U1.242", "maps": [], @@ -14542,8 +13724,6 @@ }, "description": "N-1250, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0102.U1.250", "maps": [], @@ -14576,8 +13756,6 @@ }, "description": "Z N0207A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0102.Z1.207A", "maps": [], @@ -14610,8 +13788,6 @@ }, "description": "Z N0207C, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0102.Z1.207C", "maps": [], @@ -14644,8 +13820,6 @@ }, "description": "Z N0207D, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0102.Z1.207D", "maps": [], @@ -14678,8 +13852,6 @@ }, "description": "Z N0207F, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0102.Z1.207F", "maps": [], @@ -14712,8 +13884,6 @@ }, "description": "Z N0207G, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0102.Z1.207G", "maps": [], @@ -14746,8 +13916,6 @@ }, "description": "Z N0210, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0102.Z1.210", "maps": [], @@ -14780,8 +13948,6 @@ }, "description": "Z N0210A, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0102.Z1.210A", "maps": [], @@ -14814,8 +13980,6 @@ }, "description": "NZ1301A, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0103.01.301A", "maps": [], @@ -14848,8 +14012,6 @@ }, "description": "N Z1301D, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0103.01.301D", "maps": [], @@ -14882,8 +14044,6 @@ }, "description": "N1309, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0103.01.309", "maps": [], @@ -14916,8 +14076,6 @@ }, "description": "N Z1310A, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0103.01.310A", "maps": [], @@ -14950,8 +14108,6 @@ }, "description": "N1316, \u00dcbungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0103.01.316", "maps": [], @@ -14984,8 +14140,6 @@ }, "description": "N1335, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0103.01.335", "maps": [], @@ -15018,8 +14172,6 @@ }, "description": "N1335A, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0103.01.335A", "maps": [], @@ -15052,8 +14204,6 @@ }, "description": "N1338, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0103.01.338", "maps": [], @@ -15086,8 +14236,6 @@ }, "description": "N1338A, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0103.01.338A", "maps": [], @@ -15120,8 +14268,6 @@ }, "description": "N1338B, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0103.01.338B", "maps": [], @@ -15154,8 +14300,6 @@ }, "description": "N1338C, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0103.01.338C", "maps": [], @@ -15188,8 +14332,6 @@ }, "description": "N1350, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0103.01.350", "maps": [], @@ -15222,8 +14364,6 @@ }, "description": "N1350A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0103.01.350A", "maps": [], @@ -15256,8 +14396,6 @@ }, "description": "N1350B, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0103.01.350B", "maps": [], @@ -15290,8 +14428,6 @@ }, "description": "N1353, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0103.01.353", "maps": [], @@ -15324,8 +14460,6 @@ }, "description": "N1353A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0103.01.353A", "maps": [], @@ -15358,8 +14492,6 @@ }, "description": "N1354, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0103.01.354", "maps": [], @@ -15392,8 +14524,6 @@ }, "description": "N1354A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0103.01.354A", "maps": [], @@ -15426,8 +14556,6 @@ }, "description": "N1356, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0103.01.356", "maps": [], @@ -15460,8 +14588,6 @@ }, "description": "N1357, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0103.01.357", "maps": [], @@ -15494,8 +14620,6 @@ }, "description": "N1360, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0103.01.360", "maps": [], @@ -15528,8 +14652,6 @@ }, "description": "N1361, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0103.01.361", "maps": [], @@ -15562,8 +14684,6 @@ }, "description": "N1361A, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0103.01.361A", "maps": [], @@ -15596,8 +14716,6 @@ }, "description": "N2303A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0103.02.303A", "maps": [], @@ -15630,8 +14748,6 @@ }, "description": "N2320, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0103.02.320", "maps": [], @@ -15664,8 +14780,6 @@ }, "description": "N2320A, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0103.02.320A", "maps": [], @@ -15698,8 +14812,6 @@ }, "description": "N2335, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0103.02.321", "maps": [], @@ -15732,8 +14844,6 @@ }, "description": "N2323, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0103.02.323", "maps": [], @@ -15766,8 +14876,6 @@ }, "description": "N2323A, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0103.02.323A", "maps": [], @@ -15800,8 +14908,6 @@ }, "description": "N2326, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0103.02.326", "maps": [], @@ -15834,8 +14940,6 @@ }, "description": "N2327, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0103.02.327", "maps": [], @@ -15868,8 +14972,6 @@ }, "description": "N2330, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0103.02.330", "maps": [], @@ -15902,8 +15004,6 @@ }, "description": "N2330A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0103.02.330A", "maps": [], @@ -15936,8 +15036,6 @@ }, "description": "N2331, Flur West", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0103.02.331", "maps": [], @@ -15970,8 +15068,6 @@ }, "description": "N2332, Flur Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0103.02.332", "maps": [], @@ -16004,8 +15100,6 @@ }, "description": "N2333, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0103.02.333", "maps": [], @@ -16038,8 +15132,6 @@ }, "description": "N2333A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0103.02.333A", "maps": [], @@ -16072,8 +15164,6 @@ }, "description": "N2335A, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0103.02.335A", "maps": [], @@ -16106,8 +15196,6 @@ }, "description": "N Z2360, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0103.02.360", "maps": [], @@ -16140,8 +15228,6 @@ }, "description": "N Z23361, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0103.02.361", "maps": [], @@ -16174,8 +15260,6 @@ }, "description": "N3330, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0103.03.330", "maps": [], @@ -16208,8 +15292,6 @@ }, "description": "N3330A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0103.03.330A", "maps": [], @@ -16242,8 +15324,6 @@ }, "description": "N3331, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0103.03.331", "maps": [], @@ -16276,8 +15356,6 @@ }, "description": "N3332, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0103.03.332", "maps": [], @@ -16310,8 +15388,6 @@ }, "description": "N3333, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0103.03.333", "maps": [], @@ -16344,8 +15420,6 @@ }, "description": "N3334, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0103.03.334", "maps": [], @@ -16378,8 +15452,6 @@ }, "description": "N3335, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0103.03.335", "maps": [], @@ -16412,8 +15484,6 @@ }, "description": "N3335A, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0103.03.335A", "maps": [], @@ -16446,8 +15516,6 @@ }, "description": "N3336, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0103.03.336", "maps": [], @@ -16480,8 +15548,6 @@ }, "description": "N3337, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0103.03.337", "maps": [], @@ -16514,8 +15580,6 @@ }, "description": "N3340, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0103.03.340", "maps": [], @@ -16548,8 +15612,6 @@ }, "description": "N3350, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0103.03.350", "maps": [], @@ -16582,8 +15644,6 @@ }, "description": "N3350A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0103.03.350A", "maps": [], @@ -16616,8 +15676,6 @@ }, "description": "N4330, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0103.04.330", "maps": [], @@ -16650,8 +15708,6 @@ }, "description": "N4330A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0103.04.330A", "maps": [], @@ -16684,8 +15740,6 @@ }, "description": "N4331, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0103.04.331", "maps": [], @@ -16718,8 +15772,6 @@ }, "description": "N4332, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0103.04.332", "maps": [], @@ -16752,8 +15804,6 @@ }, "description": "N4333, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0103.04.333", "maps": [], @@ -16786,8 +15836,6 @@ }, "description": "N4334, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0103.04.334", "maps": [], @@ -16820,8 +15868,6 @@ }, "description": "N4335, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0103.04.335", "maps": [], @@ -16854,8 +15900,6 @@ }, "description": "N4335A, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0103.04.335A", "maps": [], @@ -16888,8 +15932,6 @@ }, "description": "N4336, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0103.04.336", "maps": [], @@ -16922,8 +15964,6 @@ }, "description": "N4337, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0103.04.337", "maps": [], @@ -16956,8 +15996,6 @@ }, "description": "N4338, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0103.04.338", "maps": [], @@ -16990,8 +16028,6 @@ }, "description": "N4338A, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0103.04.338A", "maps": [], @@ -17024,8 +16060,6 @@ }, "description": "N4440, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0103.04.340", "maps": [], @@ -17058,8 +16092,6 @@ }, "description": "N4450, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0103.04.450", "maps": [], @@ -17092,8 +16124,6 @@ }, "description": "N4450A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0103.04.450A", "maps": [], @@ -17126,8 +16156,6 @@ }, "description": "N5325, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0103.05.325", "maps": [ @@ -17172,8 +16200,6 @@ }, "description": "N5330, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0103.05.330", "maps": [], @@ -17206,8 +16232,6 @@ }, "description": "N5330A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0103.05.330A", "maps": [], @@ -17240,8 +16264,6 @@ }, "description": "N5331, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0103.05.331", "maps": [], @@ -17274,8 +16296,6 @@ }, "description": "N5331A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0103.05.331A", "maps": [], @@ -17308,8 +16328,6 @@ }, "description": "N5332, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0103.05.332", "maps": [], @@ -17342,8 +16360,6 @@ }, "description": "N5333, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0103.05.333", "maps": [], @@ -17376,8 +16392,6 @@ }, "description": "N5334, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0103.05.334", "maps": [], @@ -17410,8 +16424,6 @@ }, "description": "N5335, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0103.05.335", "maps": [], @@ -17444,8 +16456,6 @@ }, "description": "N335B, WC-Damen mit Dusche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0103.05.335B", "maps": [], @@ -17478,8 +16488,6 @@ }, "description": "N5336, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0103.05.336", "maps": [], @@ -17512,8 +16520,6 @@ }, "description": "N5337, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0103.05.337", "maps": [], @@ -17546,8 +16552,6 @@ }, "description": "N5338, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0103.05.338", "maps": [], @@ -17580,8 +16584,6 @@ }, "description": "N5338A, WC-Damen mit Dusche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0103.05.338A", "maps": [], @@ -17614,8 +16616,6 @@ }, "description": "N5350, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0103.05.350", "maps": [], @@ -17648,8 +16648,6 @@ }, "description": "N5350A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0103.05.350A", "maps": [], @@ -17682,8 +16680,6 @@ }, "description": "N6312A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "0103.06.312A", "maps": [], @@ -17716,8 +16712,6 @@ }, "description": "N6313, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "0103.06.313", "maps": [], @@ -17750,8 +16744,6 @@ }, "description": "N6313A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "0103.06.313A", "maps": [], @@ -17784,8 +16776,6 @@ }, "description": "N6313B, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "0103.06.313B", "maps": [], @@ -17818,8 +16808,6 @@ }, "description": "N6313D, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "0103.06.313D", "maps": [], @@ -17852,8 +16840,6 @@ }, "description": "N6313E, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "0103.06.313E", "maps": [], @@ -17886,8 +16872,6 @@ }, "description": "N6314, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "0103.06.314", "maps": [], @@ -17920,8 +16904,6 @@ }, "description": "N6316, Aufzugsmaschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "0103.06.316", "maps": [], @@ -17954,8 +16936,6 @@ }, "description": "N6317, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "0103.06.317", "maps": [], @@ -17988,8 +16968,6 @@ }, "description": "N6317A, WC-Damen mit Dusche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "0103.06.317A", "maps": [], @@ -18022,8 +17000,6 @@ }, "description": "N6318, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "0103.06.318", "maps": [], @@ -18056,8 +17032,6 @@ }, "description": "N6319, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "0103.06.319", "maps": [], @@ -18090,8 +17064,6 @@ }, "description": "N6321, L\u00fcftungsmaschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "0103.06.321", "maps": [], @@ -18124,8 +17096,6 @@ }, "description": "N7301, Betriebstechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "07", "id": "0103.07.301", "maps": [], @@ -18158,8 +17128,6 @@ }, "description": "N7302, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "07", "id": "0103.07.302", "maps": [], @@ -18192,8 +17160,6 @@ }, "description": "N7303, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "07", "id": "0103.07.303", "maps": [], @@ -18226,8 +17192,6 @@ }, "description": "N7304, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "07", "id": "0103.07.304", "maps": [], @@ -18260,8 +17224,6 @@ }, "description": "N7305, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "07", "id": "0103.07.305", "maps": [], @@ -18294,8 +17256,6 @@ }, "description": "N7307, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "07", "id": "0103.07.307", "maps": [], @@ -18328,8 +17288,6 @@ }, "description": "N7302, Technikfl\u00e4che Dach (Reinigen)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "0103.DG.302", "maps": [], @@ -18362,8 +17320,6 @@ }, "description": "N0305, Beh.-WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0103.EG.305", "maps": [], @@ -18396,8 +17352,6 @@ }, "description": "N0308, Garderobe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0103.EG.308", "maps": [], @@ -18430,8 +17384,6 @@ }, "description": "N0311, Waschraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0103.EG.311", "maps": [], @@ -18464,8 +17416,6 @@ }, "description": "N0311A, Garderobe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0103.EG.311A", "maps": [], @@ -18498,8 +17448,6 @@ }, "description": "N0314, H\u00f6rsaal m. Exp.-B\u00fchne", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0103.EG.314", "maps": [], @@ -18532,8 +17480,6 @@ }, "description": "N0314A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0103.EG.314A", "maps": [], @@ -18566,8 +17512,6 @@ }, "description": "N0314B, Rampe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0103.EG.314B", "maps": [], @@ -18600,8 +17544,6 @@ }, "description": "N0315A, \u00d6l-Trafo", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0103.EG.315A", "maps": [], @@ -18634,8 +17576,6 @@ }, "description": "N0315C, Reservezelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0103.EG.315C", "maps": [], @@ -18668,8 +17608,6 @@ }, "description": "N0315E, Transformatoren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0103.EG.315E", "maps": [], @@ -18702,8 +17640,6 @@ }, "description": "N0317D, Treppe/Galerie-Elektr. Halle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0103.EG.317D", "maps": [], @@ -18736,8 +17672,6 @@ }, "description": "N0320A, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0103.EG.320A", "maps": [], @@ -18770,8 +17704,6 @@ }, "description": "N0350, Eingangshalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0103.EG.350", "maps": [], @@ -18804,8 +17736,6 @@ }, "description": "N0350A, Flur zu 050B", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0103.EG.350A", "maps": [], @@ -18838,8 +17768,6 @@ }, "description": "N0350B, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0103.EG.350B", "maps": [], @@ -18872,8 +17800,6 @@ }, "description": "N0350C, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0103.EG.350C", "maps": [], @@ -18906,8 +17832,6 @@ }, "description": "N0350D, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0103.EG.350D", "maps": [], @@ -18940,8 +17864,6 @@ }, "description": "N0351, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0103.EG.351", "maps": [], @@ -18974,8 +17896,6 @@ }, "description": "N0351A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0103.EG.351A", "maps": [], @@ -19008,8 +17928,6 @@ }, "description": "N0351B, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0103.EG.351B", "maps": [], @@ -19042,8 +17960,6 @@ }, "description": "N0352A, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0103.EG.352A", "maps": [], @@ -19076,8 +17992,6 @@ }, "description": "N0353, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0103.EG.353", "maps": [], @@ -19110,8 +18024,6 @@ }, "description": "N0355, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0103.EG.355", "maps": [], @@ -19144,8 +18056,6 @@ }, "description": "N0356, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0103.EG.356", "maps": [], @@ -19178,8 +18088,6 @@ }, "description": "N0357, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0103.EG.357", "maps": [], @@ -19212,8 +18120,6 @@ }, "description": "N0359, Aufzug-Eingangshalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0103.EG.359", "maps": [], @@ -19246,8 +18152,6 @@ }, "description": "N0391, Weg", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0103.EG.391", "maps": [], @@ -19280,8 +18184,6 @@ }, "description": "N0392, Treppe i. Freien (Reinigen)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0103.EG.392", "maps": [], @@ -19314,8 +18216,6 @@ }, "description": "N0393, Weg", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0103.EG.393", "maps": [], @@ -19348,8 +18248,6 @@ }, "description": "N0394, Treppe im Freien (Reinigen)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0103.EG.394", "maps": [], @@ -19382,8 +18280,6 @@ }, "description": "N0395, Labor im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0103.EG.395", "maps": [], @@ -19416,8 +18312,6 @@ }, "description": "N0396, Labor im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0103.EG.396", "maps": [], @@ -19450,8 +18344,6 @@ }, "description": "-1301A, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0103.U1.301A", "maps": [], @@ -19484,8 +18376,6 @@ }, "description": "-1308A, Stromversorgg.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0103.U1.308A", "maps": [], @@ -19518,8 +18408,6 @@ }, "description": "-1311A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0103.U1.311A", "maps": [], @@ -19552,8 +18440,6 @@ }, "description": "NK313, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0103.U1.313", "maps": [], @@ -19586,8 +18472,6 @@ }, "description": "NK313A, Installationskanal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0103.U1.313A", "maps": [], @@ -19620,8 +18504,6 @@ }, "description": "-1314, Heizzentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0103.U1.314", "maps": [], @@ -19654,8 +18536,6 @@ }, "description": "-1315, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0103.U1.315", "maps": [], @@ -19688,8 +18568,6 @@ }, "description": "-1328, Flur zu Hebeb\u00fchne", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0103.U1.328", "maps": [], @@ -19722,8 +18600,6 @@ }, "description": "-1328A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0103.U1.328A", "maps": [], @@ -19756,8 +18632,6 @@ }, "description": "-1328B, Hebeb\u00fchne", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0103.U1.328B", "maps": [], @@ -19790,8 +18664,6 @@ }, "description": "-1329A, Zentr. Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0103.U1.329A", "maps": [], @@ -19824,8 +18696,6 @@ }, "description": "-1335A, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0103.U1.335A", "maps": [], @@ -19858,8 +18728,6 @@ }, "description": "-1339A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0103.U1.339A", "maps": [], @@ -19892,8 +18760,6 @@ }, "description": "-1339B, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0103.U1.339B", "maps": [], @@ -19926,8 +18792,6 @@ }, "description": "-1350, Gang 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0103.U1.350", "maps": [], @@ -19960,8 +18824,6 @@ }, "description": "-1351, Gang 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0103.U1.351", "maps": [], @@ -19994,8 +18856,6 @@ }, "description": "-1352, Gang 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0103.U1.352", "maps": [], @@ -20028,8 +18888,6 @@ }, "description": "-1353, Gang 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0103.U1.353", "maps": [], @@ -20062,8 +18920,6 @@ }, "description": "-1354, Gang 5", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0103.U1.354", "maps": [], @@ -20096,8 +18952,6 @@ }, "description": "K20, Ventilraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0103.U1.354A", "maps": [], @@ -20130,8 +18984,6 @@ }, "description": "-1355, Gang 6", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0103.U1.355", "maps": [], @@ -20164,8 +19016,6 @@ }, "description": "-1355A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0103.U1.355A", "maps": [], @@ -20198,8 +19048,6 @@ }, "description": "-1355B, Gang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0103.U1.355B", "maps": [], @@ -20232,8 +19080,6 @@ }, "description": "-1321A, Gang 9 zu -1325", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0103.U1.357", "maps": [], @@ -20266,8 +19112,6 @@ }, "description": "-1358, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0103.U1.358", "maps": [], @@ -20300,8 +19144,6 @@ }, "description": "-1358A, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0103.U1.358A", "maps": [], @@ -20334,8 +19176,6 @@ }, "description": "-1359, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0103.U1.359", "maps": [], @@ -20368,8 +19208,6 @@ }, "description": "-1359A, WC-Damen mit Dusche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0103.U1.359A", "maps": [], @@ -20402,8 +19240,6 @@ }, "description": "-1360, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0103.U1.360", "maps": [], @@ -20436,8 +19272,6 @@ }, "description": "-1361, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0103.U1.361", "maps": [], @@ -20470,8 +19304,6 @@ }, "description": "-1363, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0103.U1.363", "maps": [], @@ -20504,8 +19336,6 @@ }, "description": "-1363A, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0103.U1.363A", "maps": [], @@ -20538,8 +19368,6 @@ }, "description": "-1364, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0103.U1.364", "maps": [], @@ -20572,8 +19400,6 @@ }, "description": "-1364A, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0103.U1.364A", "maps": [], @@ -20606,8 +19432,6 @@ }, "description": "-1365, Flur/Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0103.U1.365", "maps": [], @@ -20640,8 +19464,6 @@ }, "description": "-1380, Lichtschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0103.U1.380", "maps": [], @@ -20674,8 +19496,6 @@ }, "description": "-1381, Lichtschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0103.U1.381", "maps": [], @@ -20708,8 +19528,6 @@ }, "description": "-1382, Lichtschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0103.U1.382", "maps": [], @@ -20742,8 +19560,6 @@ }, "description": "-1390, Luftfl\u00e4che", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0103.U1.390", "maps": [], @@ -20776,8 +19592,6 @@ }, "description": "-2301, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "0103.U2.301", "maps": [], @@ -20810,8 +19624,6 @@ }, "description": "-2302, Maschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "0103.U2.302", "maps": [], @@ -20844,8 +19656,6 @@ }, "description": "-2304A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "0103.U2.304A", "maps": [], @@ -20878,8 +19688,6 @@ }, "description": "-2306, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "0103.U2.306", "maps": [], @@ -20912,8 +19720,6 @@ }, "description": "N Z1310, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0103.Z1.310", "maps": [], @@ -20946,8 +19752,6 @@ }, "description": "N Z1311, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0103.Z1.311", "maps": [], @@ -20980,8 +19784,6 @@ }, "description": "N1414, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0104.01.414", "maps": [], @@ -21014,8 +19816,6 @@ }, "description": "N1415, Audiovisueller Unterricht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0104.01.415", "maps": [], @@ -21048,8 +19848,6 @@ }, "description": "N1425, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0104.01.425", "maps": [], @@ -21082,8 +19880,6 @@ }, "description": "N10426A, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0104.01.426A", "maps": [], @@ -21116,8 +19912,6 @@ }, "description": "N1427, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0104.01.427", "maps": [], @@ -21150,8 +19944,6 @@ }, "description": "N1428, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0104.01.428", "maps": [], @@ -21184,8 +19976,6 @@ }, "description": "N1430, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0104.01.430", "maps": [], @@ -21218,8 +20008,6 @@ }, "description": "N1430A, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0104.01.430A", "maps": [], @@ -21252,8 +20040,6 @@ }, "description": "N1431, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0104.01.431", "maps": [], @@ -21286,8 +20072,6 @@ }, "description": "N1431A, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0104.01.431A", "maps": [], @@ -21320,8 +20104,6 @@ }, "description": "N1450, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0104.01.450", "maps": [], @@ -21354,8 +20136,6 @@ }, "description": "N1451, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0104.01.451", "maps": [], @@ -21388,8 +20168,6 @@ }, "description": "N1452, Flur S\u00fcd/Archiv/Dokumentation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0104.01.452", "maps": [], @@ -21422,8 +20200,6 @@ }, "description": "N1453, Flur Ost/Archiv/Dokumentation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0104.01.453", "maps": [], @@ -21456,8 +20232,6 @@ }, "description": "N1454, Flur Nord/Archiv/Dokumentation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0104.01.454", "maps": [], @@ -21490,8 +20264,6 @@ }, "description": "N1454A, Flur Nord", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0104.01.454A", "maps": [], @@ -21524,8 +20296,6 @@ }, "description": "N2405, Sem./Pr\u00fcf./Bibliothek", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0104.02.405", "maps": [], @@ -21558,8 +20328,6 @@ }, "description": "N2407, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0104.02.407", "maps": [], @@ -21592,8 +20360,6 @@ }, "description": "N2407B, Praktikum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0104.02.407B", "maps": [], @@ -21626,8 +20392,6 @@ }, "description": "N2408, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0104.02.408", "maps": [ @@ -21672,8 +20436,6 @@ }, "description": "N2409, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0104.02.409", "maps": [], @@ -21706,8 +20468,6 @@ }, "description": "N2427, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0104.02.427", "maps": [], @@ -21740,8 +20500,6 @@ }, "description": "N2427A, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0104.02.427A", "maps": [], @@ -21774,8 +20532,6 @@ }, "description": "N2428, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0104.02.428", "maps": [], @@ -21808,8 +20564,6 @@ }, "description": "N2430, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0104.02.430", "maps": [], @@ -21842,8 +20596,6 @@ }, "description": "N2430A, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0104.02.430A", "maps": [], @@ -21876,8 +20628,6 @@ }, "description": "N2431, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0104.02.431", "maps": [], @@ -21910,8 +20660,6 @@ }, "description": "N2431A, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0104.02.431A", "maps": [], @@ -21944,8 +20692,6 @@ }, "description": "N2450, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0104.02.450", "maps": [], @@ -21978,8 +20724,6 @@ }, "description": "N2451, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0104.02.451", "maps": [], @@ -22012,8 +20756,6 @@ }, "description": "N2452, Flur S\u00fcd", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0104.02.452", "maps": [], @@ -22046,8 +20788,6 @@ }, "description": "N2454, Flur Nord", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0104.02.454", "maps": [], @@ -22080,8 +20820,6 @@ }, "description": "N3427, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0104.03.427", "maps": [], @@ -22114,8 +20852,6 @@ }, "description": "N3427A, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0104.03.427A", "maps": [], @@ -22148,8 +20884,6 @@ }, "description": "N3428, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0104.03.428", "maps": [], @@ -22182,8 +20916,6 @@ }, "description": "N3429, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0104.03.429", "maps": [], @@ -22216,8 +20948,6 @@ }, "description": "N3430, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0104.03.430", "maps": [], @@ -22250,8 +20980,6 @@ }, "description": "N3430A, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0104.03.430A", "maps": [], @@ -22284,8 +21012,6 @@ }, "description": "N3431, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0104.03.431", "maps": [], @@ -22318,8 +21044,6 @@ }, "description": "N3431A, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0104.03.431A", "maps": [], @@ -22352,8 +21076,6 @@ }, "description": "N3450, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0104.03.450", "maps": [], @@ -22386,8 +21108,6 @@ }, "description": "N3451, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0104.03.451", "maps": [], @@ -22420,8 +21140,6 @@ }, "description": "N3452, Flur S\u00fcd", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0104.03.452", "maps": [], @@ -22454,8 +21172,6 @@ }, "description": "N3453, Flur Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0104.03.453", "maps": [], @@ -22488,8 +21204,6 @@ }, "description": "N3454, Flur Nord", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0104.03.454", "maps": [], @@ -22522,8 +21236,6 @@ }, "description": "N4409C, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0104.04.409C", "maps": [], @@ -22556,8 +21268,6 @@ }, "description": "N4410, Seminarraum/Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0104.04.410", "maps": [], @@ -22590,8 +21300,6 @@ }, "description": "N4427, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0104.04.427", "maps": [], @@ -22624,8 +21332,6 @@ }, "description": "N4427A, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0104.04.427A", "maps": [], @@ -22658,8 +21364,6 @@ }, "description": "N4428, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0104.04.428", "maps": [], @@ -22692,8 +21396,6 @@ }, "description": "N4429, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0104.04.429", "maps": [], @@ -22726,8 +21428,6 @@ }, "description": "N4430, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0104.04.430", "maps": [], @@ -22760,8 +21460,6 @@ }, "description": "N4430A, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0104.04.430A", "maps": [], @@ -22794,8 +21492,6 @@ }, "description": "N4431A, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0104.04.431A", "maps": [], @@ -22828,8 +21524,6 @@ }, "description": "N4450, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0104.04.450", "maps": [], @@ -22862,8 +21556,6 @@ }, "description": "N4451, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0104.04.451", "maps": [], @@ -22896,8 +21588,6 @@ }, "description": "N4452, Flur S\u00fcd", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0104.04.452", "maps": [], @@ -22930,8 +21620,6 @@ }, "description": "N4453, Flur Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0104.04.453", "maps": [], @@ -22964,8 +21652,6 @@ }, "description": "N4454, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0104.04.454", "maps": [], @@ -22998,8 +21684,6 @@ }, "description": "N4460, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0104.04.460", "maps": [], @@ -23032,8 +21716,6 @@ }, "description": "N4461, Maschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0104.04.461", "maps": [], @@ -23066,8 +21748,6 @@ }, "description": "N5401, Maschinenraum-L\u00fcftung (nun DG)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0104.05.401", "maps": [], @@ -23100,8 +21780,6 @@ }, "description": "N5402, Aufzugsmaschinenraum (nun DG)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0104.05.402", "maps": [], @@ -23134,8 +21812,6 @@ }, "description": "N5405, Flur/Treppe (nun DG)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0104.05.405", "maps": [], @@ -23168,8 +21844,6 @@ }, "description": "N5401, RLT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "0104.DG.401", "maps": [], @@ -23202,8 +21876,6 @@ }, "description": "N5402, Aufzugsmasch.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "0104.DG.402", "maps": [], @@ -23236,8 +21908,6 @@ }, "description": "N5405, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "0104.DG.405", "maps": [], @@ -23270,8 +21940,6 @@ }, "description": "N5490, Dachterrasse (Reinigen)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "0104.DG.490", "maps": [], @@ -23304,8 +21972,6 @@ }, "description": "N0427, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0104.EG.427", "maps": [], @@ -23338,8 +22004,6 @@ }, "description": "N0427A, Dusche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0104.EG.427A", "maps": [], @@ -23372,8 +22036,6 @@ }, "description": "N0427B, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0104.EG.427B", "maps": [], @@ -23406,8 +22068,6 @@ }, "description": "N0428, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0104.EG.428", "maps": [], @@ -23440,8 +22100,6 @@ }, "description": "N0429, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0104.EG.429", "maps": [], @@ -23474,8 +22132,6 @@ }, "description": "N0430, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0104.EG.430", "maps": [], @@ -23508,8 +22164,6 @@ }, "description": "N0430A, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0104.EG.430A", "maps": [], @@ -23542,8 +22196,6 @@ }, "description": "N0431, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0104.EG.431", "maps": [], @@ -23576,8 +22228,6 @@ }, "description": "N0431A, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0104.EG.431A", "maps": [], @@ -23610,8 +22260,6 @@ }, "description": "N0451, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0104.EG.451", "maps": [], @@ -23644,8 +22292,6 @@ }, "description": "N0454A, Flur Nord", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0104.EG.454A", "maps": [], @@ -23678,8 +22324,6 @@ }, "description": "N0490, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0104.EG.490", "maps": [], @@ -23712,8 +22356,6 @@ }, "description": "N491, M\u00fclltonnen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0104.EG.491", "maps": [], @@ -23746,8 +22388,6 @@ }, "description": "N-1403A, Heizung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0104.U1.403A", "maps": [], @@ -23780,8 +22420,6 @@ }, "description": "N-1428, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0104.U1.428", "maps": [], @@ -23814,8 +22452,6 @@ }, "description": "N-1429, Elektrotechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0104.U1.429", "maps": [], @@ -23848,8 +22484,6 @@ }, "description": "N-1430, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0104.U1.430", "maps": [], @@ -23882,8 +22516,6 @@ }, "description": "N-1430A, WC-Damen mit Dusche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0104.U1.430A", "maps": [], @@ -23916,8 +22548,6 @@ }, "description": "N-1432, Fernmeldetech.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0104.U1.432", "maps": [], @@ -23950,8 +22580,6 @@ }, "description": "N-1450, Kellerflur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0104.U1.450", "maps": [], @@ -23984,8 +22612,6 @@ }, "description": "N-1450B, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0104.U1.450B", "maps": [], @@ -24018,8 +22644,6 @@ }, "description": "N-1452, Kellerflur S\u00fcd", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0104.U1.452", "maps": [], @@ -24052,8 +22676,6 @@ }, "description": "N-1454, Kellerflur Nord", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0104.U1.454", "maps": [], @@ -24086,8 +22708,6 @@ }, "description": "N-1454A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0104.U1.454A", "maps": [], @@ -24120,8 +22740,6 @@ }, "description": "N-1490, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0104.U1.490", "maps": [], @@ -24154,8 +22772,6 @@ }, "description": "N-1491, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0104.U1.491", "maps": [], @@ -24188,8 +22804,6 @@ }, "description": "N-2401, Installkanal Zugang N 0104", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "0104.U2.401", "maps": [], @@ -24222,8 +22836,6 @@ }, "description": "N-2402, Install.Kanal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "0104.U2.402", "maps": [], @@ -24256,8 +22868,6 @@ }, "description": "N-1420, Heizung/Brauch.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "0104.U2.420", "maps": [], @@ -24290,8 +22900,6 @@ }, "description": "N1519, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0105.01.519", "maps": [], @@ -24324,8 +22932,6 @@ }, "description": "N1520, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0105.01.520", "maps": [], @@ -24358,8 +22964,6 @@ }, "description": "N1522, Elektrotechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0105.01.522", "maps": [], @@ -24392,8 +22996,6 @@ }, "description": "N1523, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0105.01.523", "maps": [], @@ -24426,8 +23028,6 @@ }, "description": "N1524, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0105.01.524", "maps": [], @@ -24460,8 +23060,6 @@ }, "description": "N1525, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0105.01.525", "maps": [], @@ -24494,8 +23092,6 @@ }, "description": "N1527, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0105.01.527", "maps": [], @@ -24528,8 +23124,6 @@ }, "description": "N1528, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0105.01.528", "maps": [], @@ -24562,8 +23156,6 @@ }, "description": "N1529, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0105.01.529", "maps": [], @@ -24596,8 +23188,6 @@ }, "description": "N1530, Flur 5", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0105.01.530", "maps": [], @@ -24630,8 +23220,6 @@ }, "description": "N1531, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0105.01.531", "maps": [], @@ -24664,8 +23252,6 @@ }, "description": "N1532, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0105.01.532", "maps": [], @@ -24698,8 +23284,6 @@ }, "description": "N1533, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0105.01.533", "maps": [], @@ -24732,8 +23316,6 @@ }, "description": "N1534, Flur 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0105.01.534", "maps": [], @@ -24766,8 +23348,6 @@ }, "description": "N2520, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0105.02.520", "maps": [], @@ -24800,8 +23380,6 @@ }, "description": "N2522, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0105.02.522", "maps": [], @@ -24834,8 +23412,6 @@ }, "description": "N2523, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0105.02.523", "maps": [], @@ -24868,8 +23444,6 @@ }, "description": "N2525, Elektrotechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0105.02.525", "maps": [], @@ -24902,8 +23476,6 @@ }, "description": "N2526, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0105.02.526", "maps": [], @@ -24936,8 +23508,6 @@ }, "description": "N2527, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0105.02.527", "maps": [], @@ -24970,8 +23540,6 @@ }, "description": "N2528, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0105.02.528", "maps": [], @@ -25004,8 +23572,6 @@ }, "description": "N2529, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0105.02.529", "maps": [], @@ -25038,8 +23604,6 @@ }, "description": "N2531, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0105.02.531", "maps": [], @@ -25072,8 +23636,6 @@ }, "description": "N2532, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0105.02.532", "maps": [], @@ -25106,8 +23668,6 @@ }, "description": "N2533, Flur 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0105.02.533", "maps": [], @@ -25140,8 +23700,6 @@ }, "description": "N2534, Flur 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0105.02.534", "maps": [], @@ -25174,8 +23732,6 @@ }, "description": "N2535, Flur 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0105.02.535", "maps": [], @@ -25208,8 +23764,6 @@ }, "description": "N2536, Flur 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0105.02.536", "maps": [], @@ -25242,8 +23796,6 @@ }, "description": "N2537, Flur 5", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0105.02.537", "maps": [], @@ -25276,8 +23828,6 @@ }, "description": "N2538, Flur 6", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0105.02.538", "maps": [], @@ -25310,8 +23860,6 @@ }, "description": "N3516, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0105.03.516", "maps": [], @@ -25344,8 +23892,6 @@ }, "description": "N3518, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0105.03.518", "maps": [], @@ -25378,8 +23924,6 @@ }, "description": "N3519, Raumlufttechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0105.03.519", "maps": [], @@ -25412,8 +23956,6 @@ }, "description": "N3520, Elektrotechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0105.03.520", "maps": [], @@ -25446,8 +23988,6 @@ }, "description": "N3521, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0105.03.521", "maps": [], @@ -25480,8 +24020,6 @@ }, "description": "N3522, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0105.03.522", "maps": [], @@ -25514,8 +24052,6 @@ }, "description": "N3523, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0105.03.523", "maps": [], @@ -25548,8 +24084,6 @@ }, "description": "N3524, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0105.03.524", "maps": [], @@ -25582,8 +24116,6 @@ }, "description": "N3526, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0105.03.526", "maps": [], @@ -25616,8 +24148,6 @@ }, "description": "N3527, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0105.03.527", "maps": [], @@ -25650,8 +24180,6 @@ }, "description": "N3528, Flur 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0105.03.528", "maps": [], @@ -25684,8 +24212,6 @@ }, "description": "N3529, Flur 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0105.03.529", "maps": [], @@ -25718,8 +24244,6 @@ }, "description": "N3530, Flur 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0105.03.530", "maps": [], @@ -25752,8 +24276,6 @@ }, "description": "N3531, Flur 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0105.03.531", "maps": [], @@ -25786,8 +24308,6 @@ }, "description": "N3534, Flur 6", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0105.03.534", "maps": [], @@ -25820,8 +24340,6 @@ }, "description": "N4512, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0105.04.512", "maps": [ @@ -25866,8 +24384,6 @@ }, "description": "N4519, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0105.04.519", "maps": [], @@ -25900,8 +24416,6 @@ }, "description": "N4521, Elektronik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0105.04.521", "maps": [], @@ -25934,8 +24448,6 @@ }, "description": "N4522, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0105.04.522", "maps": [], @@ -25968,8 +24480,6 @@ }, "description": "N4523, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0105.04.523", "maps": [], @@ -26002,8 +24512,6 @@ }, "description": "N4524, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0105.04.524", "maps": [], @@ -26036,8 +24544,6 @@ }, "description": "N4525, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0105.04.525", "maps": [], @@ -26070,8 +24576,6 @@ }, "description": "N4527, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0105.04.527", "maps": [], @@ -26104,8 +24608,6 @@ }, "description": "N4528, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0105.04.528", "maps": [], @@ -26138,8 +24640,6 @@ }, "description": "N4529, Flur 5", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0105.04.529", "maps": [], @@ -26172,8 +24672,6 @@ }, "description": "N4530, Flur 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0105.04.530", "maps": [], @@ -26206,8 +24704,6 @@ }, "description": "N4531, Flur 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0105.04.531", "maps": [], @@ -26240,8 +24736,6 @@ }, "description": "N4532, Flur 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0105.04.532", "maps": [], @@ -26274,8 +24768,6 @@ }, "description": "N4533, Flur 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0105.04.533", "maps": [], @@ -26308,8 +24800,6 @@ }, "description": "N5521, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0105.05.521", "maps": [], @@ -26342,8 +24832,6 @@ }, "description": "N5522, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0105.05.522", "maps": [], @@ -26376,8 +24864,6 @@ }, "description": "N5524, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0105.05.524", "maps": [], @@ -26410,8 +24896,6 @@ }, "description": "N5525, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0105.05.525", "maps": [], @@ -26444,8 +24928,6 @@ }, "description": "N5526, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0105.05.526", "maps": [], @@ -26478,8 +24960,6 @@ }, "description": "N5527, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0105.05.527", "maps": [], @@ -26512,8 +24992,6 @@ }, "description": "N5529, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0105.05.529", "maps": [], @@ -26546,8 +25024,6 @@ }, "description": "N5530, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0105.05.530", "maps": [], @@ -26580,8 +25056,6 @@ }, "description": "N5531, Flur 5", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0105.05.531", "maps": [], @@ -26614,8 +25088,6 @@ }, "description": "N5532, Flur 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0105.05.532", "maps": [], @@ -26648,8 +25120,6 @@ }, "description": "N5533, Flur 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0105.05.533", "maps": [], @@ -26682,8 +25152,6 @@ }, "description": "N5534, Flur 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0105.05.534", "maps": [], @@ -26716,8 +25184,6 @@ }, "description": "N5535, Flur 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0105.05.535", "maps": [], @@ -26750,8 +25216,6 @@ }, "description": "N6508, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "0105.06.508", "maps": [], @@ -26784,8 +25248,6 @@ }, "description": "N6510, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "0105.06.510", "maps": [], @@ -26818,8 +25280,6 @@ }, "description": "N6511, Raumlufttechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "0105.06.511", "maps": [], @@ -26852,8 +25312,6 @@ }, "description": "N6512, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "0105.06.512", "maps": [], @@ -26886,8 +25344,6 @@ }, "description": "N6513, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "0105.06.513", "maps": [], @@ -26920,8 +25376,6 @@ }, "description": "N6515, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "0105.06.515", "maps": [], @@ -26954,8 +25408,6 @@ }, "description": "N6516, Elektrotechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "0105.06.516", "maps": [], @@ -26988,8 +25440,6 @@ }, "description": "N6518, Flur 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "0105.06.518", "maps": [], @@ -27022,8 +25472,6 @@ }, "description": "N6520, Fluchtterrasse (Reinigen)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "0105.06.620", "maps": [], @@ -27056,8 +25504,6 @@ }, "description": "N7501, Aufzugsmaschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "07", "id": "0105.07.501", "maps": [], @@ -27090,8 +25536,6 @@ }, "description": "N7502, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "07", "id": "0105.07.502", "maps": [], @@ -27124,8 +25568,6 @@ }, "description": "N7503, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "07", "id": "0105.07.503", "maps": [], @@ -27158,8 +25600,6 @@ }, "description": "N7504, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "07", "id": "0105.07.504", "maps": [], @@ -27192,8 +25632,6 @@ }, "description": "N7505, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "07", "id": "0105.07.505", "maps": [], @@ -27226,8 +25664,6 @@ }, "description": "N7509, Fluchtterrasse (Reinigen)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "07", "id": "0105.07.509", "maps": [], @@ -27260,8 +25696,6 @@ }, "description": "N0504, B\u00fcro ISS", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0105.EG.504", "maps": [], @@ -27294,8 +25728,6 @@ }, "description": "N0505, Erste-Hilfe-Raum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0105.EG.505", "maps": [], @@ -27328,8 +25760,6 @@ }, "description": "N0507, Seminarraum-MST/LSR", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0105.EG.507", "maps": [ @@ -27374,8 +25804,6 @@ }, "description": "N0510, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0105.EG.510", "maps": [], @@ -27408,8 +25836,6 @@ }, "description": "N0511, Beh.-WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0105.EG.511", "maps": [], @@ -27442,8 +25868,6 @@ }, "description": "N0512, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0105.EG.512", "maps": [], @@ -27476,8 +25900,6 @@ }, "description": "N0513, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0105.EG.513", "maps": [], @@ -27510,8 +25932,6 @@ }, "description": "N0514, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0105.EG.514", "maps": [], @@ -27544,8 +25964,6 @@ }, "description": "N0515, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0105.EG.515", "maps": [], @@ -27578,8 +25996,6 @@ }, "description": "N0516, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0105.EG.516", "maps": [], @@ -27612,8 +26028,6 @@ }, "description": "N0517, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0105.EG.517", "maps": [], @@ -27646,8 +26060,6 @@ }, "description": "N0518, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0105.EG.518", "maps": [], @@ -27680,8 +26092,6 @@ }, "description": "N0520, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0105.EG.520", "maps": [], @@ -27714,8 +26124,6 @@ }, "description": "N0521, Eingangshalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0105.EG.521", "maps": [], @@ -27748,8 +26156,6 @@ }, "description": "N0522, Windfang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0105.EG.522", "maps": [], @@ -27782,8 +26188,6 @@ }, "description": "N0523, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0105.EG.523", "maps": [], @@ -27816,8 +26220,6 @@ }, "description": "N-1505, Heizungs\u00fcbergabe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0105.U1.505", "maps": [], @@ -27850,8 +26252,6 @@ }, "description": "N-1507, Elektro Verteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0105.U1.507", "maps": [], @@ -27884,8 +26284,6 @@ }, "description": "N-1520, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0105.U1.520", "maps": [], @@ -27918,8 +26316,6 @@ }, "description": "N-1521, Elektroraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0105.U1.521", "maps": [], @@ -27952,8 +26348,6 @@ }, "description": "N-1522, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0105.U1.522", "maps": [], @@ -27986,8 +26380,6 @@ }, "description": "N-1523, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0105.U1.523", "maps": [], @@ -28020,8 +26412,6 @@ }, "description": "N-1525, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0105.U1.525", "maps": [], @@ -28054,8 +26444,6 @@ }, "description": "N-1526, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0105.U1.526", "maps": [], @@ -28088,8 +26476,6 @@ }, "description": "N-1527, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0105.U1.527", "maps": [], @@ -28122,8 +26508,6 @@ }, "description": "N-1528, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0105.U1.528", "maps": [], @@ -28156,8 +26540,6 @@ }, "description": "N-1530, Flur 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0105.U1.530", "maps": [], @@ -28190,8 +26572,6 @@ }, "description": "N-1531, Flur 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0105.U1.531", "maps": [], @@ -28224,8 +26604,6 @@ }, "description": "N-1532, Flur 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0105.U1.532", "maps": [], @@ -28258,8 +26636,6 @@ }, "description": "N-1533, Flur 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0105.U1.533", "maps": [], @@ -28292,8 +26668,6 @@ }, "description": "N-2501, Installationskanal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "0105.U2.501", "maps": [], @@ -28326,8 +26700,6 @@ }, "description": "N1618, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0106.01.618", "maps": [], @@ -28360,8 +26732,6 @@ }, "description": "N1618A, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0106.01.618A", "maps": [], @@ -28394,8 +26764,6 @@ }, "description": "N1618B, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0106.01.618B", "maps": [], @@ -28428,8 +26796,6 @@ }, "description": "N1629, Foyer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0106.01.629", "maps": [], @@ -28462,8 +26828,6 @@ }, "description": "N1631, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0106.01.631", "maps": [], @@ -28496,8 +26860,6 @@ }, "description": "N1633, Technikraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0106.01.633", "maps": [], @@ -28530,8 +26892,6 @@ }, "description": "N1644, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0106.01.644", "maps": [], @@ -28564,8 +26924,6 @@ }, "description": "N1644A, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0106.01.644A", "maps": [], @@ -28598,8 +26956,6 @@ }, "description": "N1645, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0106.01.645", "maps": [], @@ -28632,8 +26988,6 @@ }, "description": "N1670, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0106.01.670", "maps": [], @@ -28666,8 +27020,6 @@ }, "description": "N1672, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0106.01.672", "maps": [], @@ -28700,8 +27052,6 @@ }, "description": "N1672A, Schacht f.Personenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0106.01.672A", "maps": [], @@ -28734,8 +27084,6 @@ }, "description": "N1673, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0106.01.673", "maps": [], @@ -28768,8 +27116,6 @@ }, "description": "N1674, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0106.01.674", "maps": [], @@ -28802,8 +27148,6 @@ }, "description": "N1676, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0106.01.676", "maps": [], @@ -28836,8 +27180,6 @@ }, "description": "N1677, \u00dcbergang 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0106.01.677", "maps": [], @@ -28870,8 +27212,6 @@ }, "description": "N1678, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0106.01.678", "maps": [], @@ -28904,8 +27244,6 @@ }, "description": "N1680, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0106.01.680", "maps": [], @@ -28938,8 +27276,6 @@ }, "description": "N1681, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0106.01.681", "maps": [], @@ -28972,8 +27308,6 @@ }, "description": "N1682, \u00dcbergang 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0106.01.682", "maps": [], @@ -29006,8 +27340,6 @@ }, "description": "N1690, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0106.01.690", "maps": [], @@ -29040,8 +27372,6 @@ }, "description": "N2617A, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0106.02.617A", "maps": [], @@ -29074,8 +27404,6 @@ }, "description": "N2617B, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0106.02.617B", "maps": [], @@ -29108,8 +27436,6 @@ }, "description": "N2617, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0106.02.617C", "maps": [], @@ -29142,8 +27468,6 @@ }, "description": "N2637, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0106.02.637", "maps": [], @@ -29176,8 +27500,6 @@ }, "description": "N2637A, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0106.02.637A", "maps": [], @@ -29210,8 +27532,6 @@ }, "description": "N2638, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0106.02.638", "maps": [], @@ -29244,8 +27564,6 @@ }, "description": "N2670, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0106.02.670", "maps": [], @@ -29278,8 +27596,6 @@ }, "description": "N2672A, Schacht f.Personenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0106.02.672A", "maps": [], @@ -29312,8 +27628,6 @@ }, "description": "N2673, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0106.02.673", "maps": [], @@ -29346,8 +27660,6 @@ }, "description": "N2674, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0106.02.674", "maps": [], @@ -29380,8 +27692,6 @@ }, "description": "N2676, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0106.02.676", "maps": [], @@ -29414,8 +27724,6 @@ }, "description": "N2677, \u00dcbergang 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0106.02.677", "maps": [], @@ -29448,8 +27756,6 @@ }, "description": "N2680, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0106.02.680", "maps": [], @@ -29482,8 +27788,6 @@ }, "description": "N2681, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0106.02.681", "maps": [], @@ -29516,8 +27820,6 @@ }, "description": "N2682, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0106.02.682", "maps": [], @@ -29550,8 +27852,6 @@ }, "description": "N2690, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0106.02.690", "maps": [], @@ -29584,8 +27884,6 @@ }, "description": "N3601, ELT-UV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0106.03.601", "maps": [], @@ -29618,8 +27916,6 @@ }, "description": "N3616, Beh.-WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0106.03.616", "maps": [], @@ -29652,8 +27948,6 @@ }, "description": "N3617, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0106.03.617", "maps": [], @@ -29686,8 +27980,6 @@ }, "description": "N3617A, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0106.03.617A", "maps": [], @@ -29720,8 +28012,6 @@ }, "description": "N3618, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0106.03.618", "maps": [], @@ -29754,8 +28044,6 @@ }, "description": "N3618A, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0106.03.618A", "maps": [], @@ -29788,8 +28076,6 @@ }, "description": "N3622, ELT.-UV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0106.03.622", "maps": [], @@ -29822,8 +28108,6 @@ }, "description": "N3635, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0106.03.635", "maps": [], @@ -29856,8 +28140,6 @@ }, "description": "N3635A, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0106.03.635A", "maps": [], @@ -29890,8 +28172,6 @@ }, "description": "N3636, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0106.03.636", "maps": [], @@ -29924,8 +28204,6 @@ }, "description": "N3640, Aufzugs-/F\u00f6rderanlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0106.03.640", "maps": [], @@ -29958,8 +28236,6 @@ }, "description": "N3672, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0106.03.672", "maps": [], @@ -29992,8 +28268,6 @@ }, "description": "N3672A, Schacht f.Personenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0106.03.672A", "maps": [], @@ -30026,8 +28300,6 @@ }, "description": "N3673, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0106.03.673", "maps": [], @@ -30060,8 +28332,6 @@ }, "description": "N3674, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0106.03.674", "maps": [], @@ -30094,8 +28364,6 @@ }, "description": "N3675, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0106.03.675", "maps": [], @@ -30128,8 +28396,6 @@ }, "description": "N3676, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0106.03.676", "maps": [], @@ -30162,8 +28428,6 @@ }, "description": "N3679, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0106.03.679", "maps": [], @@ -30196,8 +28460,6 @@ }, "description": "N3680, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0106.03.680", "maps": [], @@ -30230,8 +28492,6 @@ }, "description": "N3681, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0106.03.681", "maps": [], @@ -30264,8 +28524,6 @@ }, "description": "N3682, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0106.03.682", "maps": [], @@ -30298,8 +28556,6 @@ }, "description": "N3690, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0106.03.690", "maps": [], @@ -30332,8 +28588,6 @@ }, "description": "N0608, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0106.EG.608", "maps": [], @@ -30366,8 +28620,6 @@ }, "description": "N0609, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0106.EG.609", "maps": [], @@ -30400,8 +28652,6 @@ }, "description": "N0610, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0106.EG.610", "maps": [], @@ -30434,8 +28684,6 @@ }, "description": "N0610A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0106.EG.610A", "maps": [], @@ -30468,8 +28716,6 @@ }, "description": "N0610B, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0106.EG.610B", "maps": [], @@ -30502,8 +28748,6 @@ }, "description": "N0628, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0106.EG.628", "maps": [], @@ -30536,8 +28780,6 @@ }, "description": "N0630, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0106.EG.630", "maps": [], @@ -30570,8 +28812,6 @@ }, "description": "N0670, Eingangshalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0106.EG.670", "maps": [], @@ -30604,8 +28844,6 @@ }, "description": "N0671, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0106.EG.671", "maps": [], @@ -30638,8 +28876,6 @@ }, "description": "N0672, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0106.EG.672", "maps": [], @@ -30672,8 +28908,6 @@ }, "description": "N0673, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0106.EG.673", "maps": [], @@ -30706,8 +28940,6 @@ }, "description": "N0674, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0106.EG.674", "maps": [], @@ -30740,8 +28972,6 @@ }, "description": "N0675, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0106.EG.675", "maps": [], @@ -30774,8 +29004,6 @@ }, "description": "N0676, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0106.EG.676", "maps": [], @@ -30808,8 +29036,6 @@ }, "description": "N0679, Treppenraum/Fluchttreppe zu N0826", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0106.EG.679", "maps": [], @@ -30842,8 +29068,6 @@ }, "description": "N0690, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0106.EG.690", "maps": [], @@ -30876,8 +29100,6 @@ }, "description": "N-1616, Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0106.U1.616", "maps": [], @@ -30910,8 +29132,6 @@ }, "description": "N-1616A, Kompressor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0106.U1.616A", "maps": [], @@ -30944,8 +29164,6 @@ }, "description": "N-1617, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0106.U1.617", "maps": [], @@ -30978,8 +29196,6 @@ }, "description": "N-1617A, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0106.U1.617A", "maps": [], @@ -31012,8 +29228,6 @@ }, "description": "N-1625, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0106.U1.625", "maps": [], @@ -31046,8 +29260,6 @@ }, "description": "N-1626, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0106.U1.626", "maps": [], @@ -31080,8 +29292,6 @@ }, "description": "N-1631, Umkleide", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0106.U1.631", "maps": [], @@ -31114,8 +29324,6 @@ }, "description": "N-1631B, Duschraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0106.U1.631B", "maps": [], @@ -31148,8 +29356,6 @@ }, "description": "N-1631C, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0106.U1.631C", "maps": [], @@ -31182,8 +29388,6 @@ }, "description": "N-1671, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0106.U1.671", "maps": [], @@ -31216,8 +29420,6 @@ }, "description": "N-1672, Schacht f.Personenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0106.U1.672", "maps": [], @@ -31250,8 +29452,6 @@ }, "description": "N-1673, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0106.U1.673", "maps": [], @@ -31284,8 +29484,6 @@ }, "description": "N-1676, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0106.U1.676", "maps": [], @@ -31318,8 +29516,6 @@ }, "description": "N-1690, Aufzugmaschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0106.U1.690", "maps": [], @@ -31352,8 +29548,6 @@ }, "description": "N-2601, Abwasseraufbereitung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "0106.U2.601", "maps": [], @@ -31386,8 +29580,6 @@ }, "description": "N-2603, Maschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "0106.U2.603", "maps": [], @@ -31420,8 +29612,6 @@ }, "description": "N-2621, Tauchpumpe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "0106.U2.621", "maps": [], @@ -31454,8 +29644,6 @@ }, "description": "N-2622, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "0106.U2.622", "maps": [], @@ -31488,8 +29676,6 @@ }, "description": "N-2623, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "0106.U2.623", "maps": [], @@ -31522,8 +29708,6 @@ }, "description": "N-2640, Installationskanal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "0106.U2.640", "maps": [], @@ -31556,8 +29740,6 @@ }, "description": "N-2641, Installationskanal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "0106.U2.641", "maps": [], @@ -31590,8 +29772,6 @@ }, "description": "N-2673, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "0106.U2.673", "maps": [], @@ -31624,8 +29804,6 @@ }, "description": "N-2676, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "0106.U2.676", "maps": [], @@ -31658,8 +29836,6 @@ }, "description": "N1809, Klimatechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0108.01.809", "maps": [], @@ -31692,8 +29868,6 @@ }, "description": "N1812, Seminar", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0108.01.812", "maps": [], @@ -31726,8 +29900,6 @@ }, "description": "N1816, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0108.01.816", "maps": [], @@ -31760,8 +29932,6 @@ }, "description": "N1826, Treppe Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0108.01.826", "maps": [], @@ -31794,8 +29964,6 @@ }, "description": "N1827, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0108.01.827", "maps": [], @@ -31828,8 +29996,6 @@ }, "description": "N1830, Elektro Versorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0108.01.830", "maps": [], @@ -31862,8 +30028,6 @@ }, "description": "N1831, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0108.01.831", "maps": [], @@ -31896,8 +30060,6 @@ }, "description": "N1832, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0108.01.832", "maps": [], @@ -31930,8 +30092,6 @@ }, "description": "N1834, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0108.01.834", "maps": [], @@ -31964,8 +30124,6 @@ }, "description": "N1836, Flur 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0108.01.836", "maps": [], @@ -31998,8 +30156,6 @@ }, "description": "N1837, Flur 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0108.01.837", "maps": [], @@ -32032,8 +30188,6 @@ }, "description": "N1840, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0108.01.840", "maps": [], @@ -32066,8 +30220,6 @@ }, "description": "N2826, Treppe Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0108.02.826", "maps": [], @@ -32100,8 +30252,6 @@ }, "description": "N2827, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0108.02.827", "maps": [], @@ -32134,8 +30284,6 @@ }, "description": "N2830, Elektro Versorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0108.02.830", "maps": [], @@ -32168,8 +30316,6 @@ }, "description": "N2831, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0108.02.831", "maps": [], @@ -32202,8 +30348,6 @@ }, "description": "N2832, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0108.02.832", "maps": [], @@ -32236,8 +30380,6 @@ }, "description": "N2834, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0108.02.834", "maps": [], @@ -32270,8 +30412,6 @@ }, "description": "N2835, Flur 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0108.02.835", "maps": [], @@ -32304,8 +30444,6 @@ }, "description": "N2836, Flur 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0108.02.836", "maps": [], @@ -32338,8 +30476,6 @@ }, "description": "N2837, Flur 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0108.02.837", "maps": [], @@ -32372,8 +30508,6 @@ }, "description": "N2838, \u00dcbergang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0108.02.838", "maps": [], @@ -32406,8 +30540,6 @@ }, "description": "N2839, Flur 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0108.02.839", "maps": [], @@ -32440,8 +30572,6 @@ }, "description": "N2839A, Personenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0108.02.839A", "maps": [], @@ -32474,8 +30604,6 @@ }, "description": "N3815, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0108.03.815", "maps": [], @@ -32508,8 +30636,6 @@ }, "description": "N3823, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0108.03.823", "maps": [], @@ -32542,8 +30668,6 @@ }, "description": "N3824, Solaranlage (Reinigen)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0108.03.824", "maps": [], @@ -32576,8 +30700,6 @@ }, "description": "N3825, Dachfreifl\u00e4che (Reinigen)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0108.03.825", "maps": [], @@ -32610,8 +30732,6 @@ }, "description": "N3826, Treppe Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0108.03.826", "maps": [], @@ -32644,8 +30764,6 @@ }, "description": "N3827, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0108.03.827", "maps": [], @@ -32678,8 +30796,6 @@ }, "description": "N3828, Elektro Raum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0108.03.828", "maps": [], @@ -32712,8 +30828,6 @@ }, "description": "N3831, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0108.03.831", "maps": [], @@ -32746,8 +30860,6 @@ }, "description": "N3832, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0108.03.832", "maps": [], @@ -32780,8 +30892,6 @@ }, "description": "N3834, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0108.03.834", "maps": [], @@ -32814,8 +30924,6 @@ }, "description": "N3835, Flur 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0108.03.835", "maps": [], @@ -32848,8 +30956,6 @@ }, "description": "N4801, Aufzugsmaschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0108.04.801", "maps": [], @@ -32882,8 +30988,6 @@ }, "description": "N4802, Betriebstechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0108.04.802", "maps": [], @@ -32916,8 +31020,6 @@ }, "description": "N4803, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0108.04.803", "maps": [], @@ -32950,8 +31052,6 @@ }, "description": "N0800, Einfahrt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0108.EG.800", "maps": [], @@ -32984,8 +31084,6 @@ }, "description": "N0809, Windfang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0108.EG.809", "maps": [], @@ -33018,8 +31116,6 @@ }, "description": "N0826, Treppe Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0108.EG.826", "maps": [], @@ -33052,8 +31148,6 @@ }, "description": "N0827, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0108.EG.827", "maps": [], @@ -33086,8 +31180,6 @@ }, "description": "N0830, Elektro Versorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0108.EG.830", "maps": [], @@ -33120,8 +31212,6 @@ }, "description": "N0831, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0108.EG.831", "maps": [], @@ -33154,8 +31244,6 @@ }, "description": "N0832, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0108.EG.832", "maps": [], @@ -33188,8 +31276,6 @@ }, "description": "N0834, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0108.EG.834", "maps": [], @@ -33222,8 +31308,6 @@ }, "description": "N0835, Flur 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0108.EG.835", "maps": [], @@ -33256,8 +31340,6 @@ }, "description": "N0836, Eingangshalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0108.EG.836", "maps": [], @@ -33290,8 +31372,6 @@ }, "description": "N0837, Flur 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0108.EG.837", "maps": [], @@ -33324,8 +31404,6 @@ }, "description": "N0838, Flur 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0108.EG.838", "maps": [], @@ -33358,8 +31436,6 @@ }, "description": "N0839A, Personenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0108.EG.839A", "maps": [], @@ -33392,8 +31468,6 @@ }, "description": "N0840, Elt.Techn.Werkstatt o.f.e.M.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0108.EG.840", "maps": [], @@ -33426,8 +31500,6 @@ }, "description": "N0851, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0108.EG.851", "maps": [], @@ -33460,8 +31532,6 @@ }, "description": "N-1809, Haustechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0108.U1.809", "maps": [], @@ -33494,8 +31564,6 @@ }, "description": "N-1826, Treppe Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0108.U1.826", "maps": [], @@ -33528,8 +31596,6 @@ }, "description": "N-1827, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0108.U1.827", "maps": [], @@ -33562,8 +31628,6 @@ }, "description": "N-1828, Dusche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0108.U1.828", "maps": [], @@ -33596,8 +31660,6 @@ }, "description": "N-1830, Elektro Verteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0108.U1.830", "maps": [], @@ -33630,8 +31692,6 @@ }, "description": "N-1831, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0108.U1.831", "maps": [], @@ -33664,8 +31724,6 @@ }, "description": "N-1832, Beh.-WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0108.U1.832", "maps": [], @@ -33698,8 +31756,6 @@ }, "description": "N-1835, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0108.U1.835", "maps": [], @@ -33732,8 +31788,6 @@ }, "description": "N-1837, Flur 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0108.U1.837", "maps": [], @@ -33766,8 +31820,6 @@ }, "description": "N-1838, Flur 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0108.U1.838", "maps": [], @@ -33800,8 +31852,6 @@ }, "description": "N-1839, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0108.U1.839", "maps": [], @@ -33834,8 +31884,6 @@ }, "description": "N-1840, Betriebstechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0108.U1.840", "maps": [], @@ -33868,8 +31916,6 @@ }, "description": "N-1841, Betriebstechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0108.U1.841", "maps": [], @@ -33902,8 +31948,6 @@ }, "description": "N-1842, Betriebstechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0108.U1.842", "maps": [], @@ -33936,8 +31980,6 @@ }, "description": "N-1851, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0108.U1.851", "maps": [], @@ -33970,8 +32012,6 @@ }, "description": "N1903, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0109.01.903", "maps": [], @@ -34004,8 +32044,6 @@ }, "description": "N902, Dach/RLT-Ger\u00e4t", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0109.02.902", "maps": [], @@ -34038,8 +32076,6 @@ }, "description": "201, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0202.02.201", "maps": [], @@ -34072,8 +32108,6 @@ }, "description": "212, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0202.02.212", "maps": [], @@ -34106,8 +32140,6 @@ }, "description": "215, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0202.02.215", "maps": [], @@ -34140,8 +32172,6 @@ }, "description": "216, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0202.02.216", "maps": [], @@ -34174,8 +32204,6 @@ }, "description": "217, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0202.02.217", "maps": [], @@ -34208,8 +32236,6 @@ }, "description": "301, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0202.03.301", "maps": [], @@ -34242,8 +32268,6 @@ }, "description": "312, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0202.03.312", "maps": [], @@ -34276,8 +32300,6 @@ }, "description": "315, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0202.03.315", "maps": [], @@ -34310,8 +32332,6 @@ }, "description": "316, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0202.03.316", "maps": [], @@ -34344,8 +32364,6 @@ }, "description": "317, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0202.03.317", "maps": [], @@ -34378,8 +32396,6 @@ }, "description": "011, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0202.EG.011", "maps": [], @@ -34412,8 +32428,6 @@ }, "description": "-1009, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0202.U1.009", "maps": [], @@ -34446,8 +32460,6 @@ }, "description": "-1011, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0202.U1.011", "maps": [], @@ -34480,8 +32492,6 @@ }, "description": "-1012, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0202.U1.012", "maps": [], @@ -34514,8 +32524,6 @@ }, "description": "103, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0203.01.003", "maps": [], @@ -34548,8 +32556,6 @@ }, "description": "104, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0203.01.004", "maps": [], @@ -34582,8 +32588,6 @@ }, "description": "108, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0203.01.008", "maps": [], @@ -34616,8 +32620,6 @@ }, "description": "109, Flur 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0203.01.009", "maps": [], @@ -34650,8 +32652,6 @@ }, "description": "110, Flur 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0203.01.010", "maps": [], @@ -34684,8 +32684,6 @@ }, "description": "111, Treppenhaus 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0203.01.011", "maps": [], @@ -34718,8 +32716,6 @@ }, "description": "201, B\u00fcro 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0203.02.001", "maps": [], @@ -34752,8 +32748,6 @@ }, "description": "202, B\u00fcro 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0203.02.002", "maps": [], @@ -34786,8 +32780,6 @@ }, "description": "203, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0203.02.003", "maps": [], @@ -34820,8 +32812,6 @@ }, "description": "204, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0203.02.004", "maps": [], @@ -34854,8 +32844,6 @@ }, "description": "205, B\u00fcro 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0203.02.005", "maps": [], @@ -34888,8 +32876,6 @@ }, "description": "206, B\u00fcro 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0203.02.006", "maps": [], @@ -34922,8 +32908,6 @@ }, "description": "207, B\u00fcro 5", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0203.02.007", "maps": [], @@ -34956,8 +32940,6 @@ }, "description": "208, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0203.02.008", "maps": [], @@ -34990,8 +32972,6 @@ }, "description": "209, Flur 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0203.02.009", "maps": [], @@ -35024,8 +33004,6 @@ }, "description": "210, Flur 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0203.02.010", "maps": [], @@ -35058,8 +33036,6 @@ }, "description": "211, Treppenhaus 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0203.02.011", "maps": [], @@ -35092,8 +33068,6 @@ }, "description": "303, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0203.03.303", "maps": [], @@ -35126,8 +33100,6 @@ }, "description": "304, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0203.03.304", "maps": [], @@ -35160,8 +33132,6 @@ }, "description": "308, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0203.03.308", "maps": [], @@ -35194,8 +33164,6 @@ }, "description": "309, Flur 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0203.03.309", "maps": [], @@ -35228,8 +33196,6 @@ }, "description": "310, Flur 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0203.03.310", "maps": [], @@ -35262,8 +33228,6 @@ }, "description": "311, Treppenhaus 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0203.03.311", "maps": [], @@ -35296,8 +33260,6 @@ }, "description": "312, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0203.03.312", "maps": [], @@ -35330,8 +33292,6 @@ }, "description": "003, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0203.EG.003", "maps": [], @@ -35364,8 +33324,6 @@ }, "description": "004, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0203.EG.004", "maps": [], @@ -35398,8 +33356,6 @@ }, "description": "007, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0203.EG.007", "maps": [], @@ -35432,8 +33388,6 @@ }, "description": "008, Flur 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0203.EG.008", "maps": [], @@ -35466,8 +33420,6 @@ }, "description": "009, Flur 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0203.EG.009", "maps": [], @@ -35500,8 +33452,6 @@ }, "description": "010, Treppenhaus 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0203.EG.010", "maps": [], @@ -35534,8 +33484,6 @@ }, "description": "U01, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0203.U1.001", "maps": [], @@ -35568,8 +33516,6 @@ }, "description": "U02, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0203.U1.002", "maps": [], @@ -35602,8 +33548,6 @@ }, "description": "U03, Keller 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0203.U1.003", "maps": [], @@ -35636,8 +33580,6 @@ }, "description": "U06, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0203.U1.006", "maps": [], @@ -35670,8 +33612,6 @@ }, "description": "U07/08, Keller 4/5", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0203.U1.008", "maps": [], @@ -35704,8 +33644,6 @@ }, "description": "U09, Fernw\u00e4rme/ Keller 6", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0203.U1.009", "maps": [], @@ -35738,8 +33676,6 @@ }, "description": "U10, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0203.U1.010", "maps": [], @@ -35772,8 +33708,6 @@ }, "description": "110, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0204.01.110", "maps": [], @@ -35806,8 +33740,6 @@ }, "description": "111, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0204.01.111", "maps": [], @@ -35840,8 +33772,6 @@ }, "description": "112, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0204.01.112", "maps": [], @@ -35874,8 +33804,6 @@ }, "description": "113, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0204.01.113", "maps": [], @@ -35908,8 +33836,6 @@ }, "description": "114, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0204.01.114", "maps": [], @@ -35942,8 +33868,6 @@ }, "description": "210, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0204.02.210", "maps": [], @@ -35976,8 +33900,6 @@ }, "description": "211, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0204.02.211", "maps": [], @@ -36010,8 +33932,6 @@ }, "description": "212, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0204.02.212", "maps": [], @@ -36044,8 +33964,6 @@ }, "description": "213, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0204.02.213", "maps": [], @@ -36078,8 +33996,6 @@ }, "description": "214, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0204.02.214", "maps": [], @@ -36112,8 +34028,6 @@ }, "description": "309A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0204.03.309A", "maps": [], @@ -36146,8 +34060,6 @@ }, "description": "310, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0204.03.310", "maps": [], @@ -36180,8 +34092,6 @@ }, "description": "312, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0204.03.312", "maps": [], @@ -36214,8 +34124,6 @@ }, "description": "313, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0204.03.313", "maps": [], @@ -36248,8 +34156,6 @@ }, "description": "314, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0204.03.314", "maps": [], @@ -36282,8 +34188,6 @@ }, "description": "402, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0204.04.402", "maps": [], @@ -36316,8 +34220,6 @@ }, "description": "411, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0204.04.411", "maps": [], @@ -36350,8 +34252,6 @@ }, "description": "402, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "0204.DG.402", "maps": [], @@ -36384,8 +34284,6 @@ }, "description": "404, Abstellraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "0204.DG.404", "maps": [], @@ -36418,8 +34316,6 @@ }, "description": "406, Abstellraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "0204.DG.406", "maps": [], @@ -36452,8 +34348,6 @@ }, "description": "411, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "0204.DG.411", "maps": [], @@ -36486,8 +34380,6 @@ }, "description": "001, Stud.-Arb. Bay. Ref. Ausbildung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0204.EG.001", "maps": [], @@ -36520,8 +34412,6 @@ }, "description": "007, Stud.-Arb. Bay. Ref. Ausbildung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0204.EG.007", "maps": [], @@ -36554,8 +34444,6 @@ }, "description": "009, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0204.EG.009", "maps": [], @@ -36588,8 +34476,6 @@ }, "description": "010, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0204.EG.010", "maps": [], @@ -36622,8 +34508,6 @@ }, "description": "012, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0204.EG.012", "maps": [], @@ -36656,8 +34540,6 @@ }, "description": "013, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0204.EG.013", "maps": [], @@ -36690,8 +34572,6 @@ }, "description": "-101, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0204.U1.001", "maps": [], @@ -36724,8 +34604,6 @@ }, "description": "-102, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0204.U1.002", "maps": [], @@ -36758,8 +34636,6 @@ }, "description": "-103, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0204.U1.003", "maps": [], @@ -36792,8 +34668,6 @@ }, "description": "-104, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0204.U1.004", "maps": [], @@ -36826,8 +34700,6 @@ }, "description": "-105, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0204.U1.005", "maps": [], @@ -36860,8 +34732,6 @@ }, "description": "-106, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0204.U1.006", "maps": [], @@ -36894,8 +34764,6 @@ }, "description": "-107, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0204.U1.007", "maps": [], @@ -36928,8 +34796,6 @@ }, "description": "014, Verbindungsgang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0204.U1.014", "maps": [], @@ -36962,8 +34828,6 @@ }, "description": "015, Lager/TUM-Film", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0204.U1.015", "maps": [], @@ -36996,8 +34860,6 @@ }, "description": "1110, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0205.01.110", "maps": [], @@ -37030,8 +34892,6 @@ }, "description": "1111, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0205.01.111", "maps": [], @@ -37064,8 +34924,6 @@ }, "description": "1112, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0205.01.112", "maps": [], @@ -37098,8 +34956,6 @@ }, "description": "1113, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0205.01.113", "maps": [], @@ -37132,8 +34988,6 @@ }, "description": "1114, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0205.01.114", "maps": [], @@ -37166,8 +35020,6 @@ }, "description": "2209, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0205.02.209", "maps": [], @@ -37200,8 +35052,6 @@ }, "description": "2210, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0205.02.210", "maps": [], @@ -37234,8 +35084,6 @@ }, "description": "2211, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0205.02.211", "maps": [], @@ -37268,8 +35116,6 @@ }, "description": "2212, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0205.02.212", "maps": [], @@ -37302,8 +35148,6 @@ }, "description": "3301, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0205.03.301", "maps": [], @@ -37336,8 +35180,6 @@ }, "description": "3302, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0205.03.302", "maps": [], @@ -37370,8 +35212,6 @@ }, "description": "3303, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0205.03.303", "maps": [], @@ -37404,8 +35244,6 @@ }, "description": "3304, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0205.03.304", "maps": [], @@ -37438,8 +35276,6 @@ }, "description": "3307, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0205.03.307", "maps": [], @@ -37472,8 +35308,6 @@ }, "description": "3308, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0205.03.308", "maps": [], @@ -37506,8 +35340,6 @@ }, "description": "3309, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0205.03.309", "maps": [], @@ -37540,8 +35372,6 @@ }, "description": "3310, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0205.03.310", "maps": [], @@ -37574,8 +35404,6 @@ }, "description": "3311, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0205.03.311", "maps": [], @@ -37608,8 +35436,6 @@ }, "description": "3312, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0205.03.312", "maps": [], @@ -37642,8 +35468,6 @@ }, "description": "0003, Fernuni. Hagen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0205.EG.003", "maps": [], @@ -37676,8 +35500,6 @@ }, "description": "0009, WC-Damen / Wickeltisch", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0205.EG.009", "maps": [], @@ -37710,8 +35532,6 @@ }, "description": "0010, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0205.EG.010", "maps": [], @@ -37744,8 +35564,6 @@ }, "description": "0011, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0205.EG.011", "maps": [], @@ -37778,8 +35596,6 @@ }, "description": "0011A, Flur/Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0205.EG.011A", "maps": [], @@ -37812,8 +35628,6 @@ }, "description": "0012, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0205.EG.012", "maps": [], @@ -37846,8 +35660,6 @@ }, "description": "0013, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0205.EG.013", "maps": [], @@ -37880,8 +35692,6 @@ }, "description": "K1, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0205.U1.001", "maps": [], @@ -37914,8 +35724,6 @@ }, "description": "K2, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0205.U1.002", "maps": [], @@ -37948,8 +35756,6 @@ }, "description": "K3, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0205.U1.003", "maps": [], @@ -37982,8 +35788,6 @@ }, "description": "K4, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0205.U1.004", "maps": [], @@ -38016,8 +35820,6 @@ }, "description": "K5, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0205.U1.005", "maps": [], @@ -38050,8 +35852,6 @@ }, "description": "K6, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0205.U1.006", "maps": [], @@ -38084,8 +35884,6 @@ }, "description": "K7, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0205.U1.007", "maps": [], @@ -38118,8 +35916,6 @@ }, "description": "K9, Treppe/Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0205.U1.009", "maps": [], @@ -38152,8 +35948,6 @@ }, "description": "K10, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0205.U1.010", "maps": [], @@ -38186,8 +35980,6 @@ }, "description": "K11, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0205.U1.011", "maps": [], @@ -38220,8 +36012,6 @@ }, "description": "K12, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0205.U1.012", "maps": [], @@ -38254,8 +36044,6 @@ }, "description": "103, Speiseraum Mensa", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0206.01.103", "maps": [ @@ -38300,8 +36088,6 @@ }, "description": "207, L\u00fcftungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0206.02.207", "maps": [], @@ -38334,8 +36120,6 @@ }, "description": "208, RLT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0206.02.208", "maps": [], @@ -38368,8 +36152,6 @@ }, "description": "211, RLT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0206.02.211", "maps": [], @@ -38402,8 +36184,6 @@ }, "description": "213, EDV-Verteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0206.02.213", "maps": [], @@ -38436,8 +36216,6 @@ }, "description": "216, Maschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0206.02.216", "maps": [], @@ -38470,8 +36248,6 @@ }, "description": "219, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0206.02.219", "maps": [], @@ -38504,8 +36280,6 @@ }, "description": "219A, Maschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0206.02.219A", "maps": [], @@ -38538,8 +36312,6 @@ }, "description": "328, K\u00e4ltemasch.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "0206.DG.328", "maps": [], @@ -38572,8 +36344,6 @@ }, "description": "330, Aufzugsmaschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "0206.DG.330", "maps": [], @@ -38606,8 +36376,6 @@ }, "description": "332, K\u00fchlraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "0206.DG.332", "maps": [], @@ -38640,8 +36408,6 @@ }, "description": "002, Stud. Vertretung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0206.EG.002", "maps": [], @@ -38674,8 +36440,6 @@ }, "description": "008C, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0206.EG.008C", "maps": [], @@ -38708,8 +36472,6 @@ }, "description": "029C, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0206.EG.029C", "maps": [], @@ -38742,8 +36504,6 @@ }, "description": "039, Betriebstechn. Anlagen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0206.EG.039", "maps": [], @@ -38776,8 +36536,6 @@ }, "description": "-101B, Installschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0206.U1.001B", "maps": [], @@ -38810,8 +36568,6 @@ }, "description": "-103, Heiztechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0206.U1.003", "maps": [], @@ -38844,8 +36600,6 @@ }, "description": "-103A, RLT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0206.U1.003A", "maps": [], @@ -38878,8 +36632,6 @@ }, "description": "-105, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0206.U1.005", "maps": [], @@ -38912,8 +36664,6 @@ }, "description": "-105C, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0206.U1.005C", "maps": [], @@ -38946,8 +36696,6 @@ }, "description": "-109, \u00d6labscheider", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0206.U1.009", "maps": [], @@ -38980,8 +36728,6 @@ }, "description": "-111, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0206.U1.011", "maps": [], @@ -39014,8 +36760,6 @@ }, "description": "-127, Be.-u.Entl\u00fcftung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0206.U1.027", "maps": [], @@ -39048,8 +36792,6 @@ }, "description": "-128, Heiztechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0206.U1.028", "maps": [], @@ -39082,8 +36824,6 @@ }, "description": "-131, Lager mit Hygien. Anforderungen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0206.U1.031", "maps": [], @@ -39116,8 +36856,6 @@ }, "description": "-134, Heiztechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0206.U1.034", "maps": [], @@ -39150,8 +36888,6 @@ }, "description": "-136E, Lastenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0206.U1.036E", "maps": [], @@ -39184,8 +36920,6 @@ }, "description": "-142, TB-Anlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0206.U1.042", "maps": [], @@ -39218,8 +36952,6 @@ }, "description": "-142A, TB-Anlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0206.U1.042A", "maps": [], @@ -39252,8 +36984,6 @@ }, "description": "S1501, Treppenhaus 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0305.01.501", "maps": [], @@ -39286,8 +37016,6 @@ }, "description": "S1503, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0305.01.503", "maps": [], @@ -39320,8 +37048,6 @@ }, "description": "S1503A, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0305.01.503A", "maps": [], @@ -39354,8 +37080,6 @@ }, "description": "S1505, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0305.01.505", "maps": [], @@ -39388,8 +37112,6 @@ }, "description": "S1505A, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0305.01.505A", "maps": [], @@ -39422,8 +37144,6 @@ }, "description": "S1507, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0305.01.507", "maps": [], @@ -39456,8 +37176,6 @@ }, "description": "S1511, Treppenhaus 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0305.01.511", "maps": [], @@ -39490,8 +37208,6 @@ }, "description": "S1512, Lastenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0305.01.512", "maps": [], @@ -39524,8 +37240,6 @@ }, "description": "S1513, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0305.01.513", "maps": [], @@ -39558,8 +37272,6 @@ }, "description": "S1513A, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0305.01.513A", "maps": [], @@ -39592,8 +37304,6 @@ }, "description": "S1513B, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0305.01.513B", "maps": [], @@ -39626,8 +37336,6 @@ }, "description": "S1513C, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0305.01.513C", "maps": [], @@ -39660,8 +37368,6 @@ }, "description": "S1529A, Lift", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0305.01.529A", "maps": [], @@ -39694,8 +37400,6 @@ }, "description": "S1539, K\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0305.01.539", "maps": [], @@ -39728,8 +37432,6 @@ }, "description": "S1543, Beh.-WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0305.01.543", "maps": [], @@ -39762,8 +37464,6 @@ }, "description": "S1544, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0305.01.544", "maps": [], @@ -39796,8 +37496,6 @@ }, "description": "S1550, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0305.01.550", "maps": [], @@ -39830,8 +37528,6 @@ }, "description": "S1551, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0305.01.551", "maps": [], @@ -39864,8 +37560,6 @@ }, "description": "S2501, Treppenhaus 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0305.02.501", "maps": [], @@ -39898,8 +37592,6 @@ }, "description": "S2503, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0305.02.503", "maps": [], @@ -39932,8 +37624,6 @@ }, "description": "S2503A, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0305.02.503A", "maps": [], @@ -39966,8 +37656,6 @@ }, "description": "S2505, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0305.02.505", "maps": [], @@ -40000,8 +37688,6 @@ }, "description": "S2505A, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0305.02.505A", "maps": [], @@ -40034,8 +37720,6 @@ }, "description": "S2507, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0305.02.507", "maps": [], @@ -40068,8 +37752,6 @@ }, "description": "S2511, Treppenhaus 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0305.02.511", "maps": [], @@ -40102,8 +37784,6 @@ }, "description": "S2512, Lastenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0305.02.512", "maps": [], @@ -40136,8 +37816,6 @@ }, "description": "S2513, Flur/Vorbereich Lastenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0305.02.513", "maps": [], @@ -40170,8 +37848,6 @@ }, "description": "S2513A, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0305.02.513A", "maps": [], @@ -40204,8 +37880,6 @@ }, "description": "S2513B, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0305.02.513B", "maps": [], @@ -40238,8 +37912,6 @@ }, "description": "S2513C, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0305.02.513C", "maps": [], @@ -40272,8 +37944,6 @@ }, "description": "S2514, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0305.02.514", "maps": [], @@ -40306,8 +37976,6 @@ }, "description": "S2515, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0305.02.515", "maps": [], @@ -40340,8 +38008,6 @@ }, "description": "S2516, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0305.02.516", "maps": [], @@ -40374,8 +38040,6 @@ }, "description": "S2517, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0305.02.517", "maps": [], @@ -40440,8 +38104,6 @@ }, "description": "S2529A, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0305.02.529A", "maps": [], @@ -40474,8 +38136,6 @@ }, "description": "S2538, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0305.02.538", "maps": [], @@ -40508,8 +38168,6 @@ }, "description": "S2539, K\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0305.02.539", "maps": [], @@ -40542,8 +38200,6 @@ }, "description": "S2544, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0305.02.544", "maps": [], @@ -40576,8 +38232,6 @@ }, "description": "S2550, Flur 1 Nord", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0305.02.550", "maps": [], @@ -40610,8 +38264,6 @@ }, "description": "S2551, Flur 2 S\u00fcd", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0305.02.551", "maps": [], @@ -40644,8 +38296,6 @@ }, "description": "S3501, Treppenhaus 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0305.03.501", "maps": [], @@ -40678,8 +38328,6 @@ }, "description": "S3503, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0305.03.503", "maps": [], @@ -40712,8 +38360,6 @@ }, "description": "S3503A, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0305.03.503A", "maps": [], @@ -40746,8 +38392,6 @@ }, "description": "S3505, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0305.03.505", "maps": [], @@ -40780,8 +38424,6 @@ }, "description": "S3505A, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0305.03.505A", "maps": [], @@ -40814,8 +38456,6 @@ }, "description": "S3507, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0305.03.507", "maps": [], @@ -40848,8 +38488,6 @@ }, "description": "S3511, Treppenhaus 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0305.03.511", "maps": [], @@ -40882,8 +38520,6 @@ }, "description": "S3512, Lastenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0305.03.512", "maps": [], @@ -40916,8 +38552,6 @@ }, "description": "S3513, Lager/Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0305.03.513", "maps": [], @@ -40950,8 +38584,6 @@ }, "description": "S3513A, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0305.03.513A", "maps": [], @@ -40984,8 +38616,6 @@ }, "description": "S3513B, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0305.03.513B", "maps": [], @@ -41018,8 +38648,6 @@ }, "description": "S3513C, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0305.03.513C", "maps": [], @@ -41052,8 +38680,6 @@ }, "description": "S3528, Treppenhaus 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0305.03.528", "maps": [], @@ -41086,8 +38712,6 @@ }, "description": "S3529A, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0305.03.529A", "maps": [], @@ -41120,8 +38744,6 @@ }, "description": "S3535, Klimatechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0305.03.535", "maps": [], @@ -41154,8 +38776,6 @@ }, "description": "S3543, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0305.03.543", "maps": [], @@ -41188,8 +38808,6 @@ }, "description": "S3544, K\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0305.03.544", "maps": [], @@ -41222,8 +38840,6 @@ }, "description": "S3550, Flur 1 Nord", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0305.03.550", "maps": [], @@ -41256,8 +38872,6 @@ }, "description": "S3552, Flur 3 S\u00fcd", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0305.03.552", "maps": [], @@ -41290,8 +38904,6 @@ }, "description": "S4510, Besprechung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0305.04.510", "maps": [], @@ -41324,8 +38936,6 @@ }, "description": "S4511, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0305.04.511", "maps": [], @@ -41358,8 +38968,6 @@ }, "description": "S4512, EDV/LRZ", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0305.04.512", "maps": [], @@ -41392,8 +39000,6 @@ }, "description": "S4513, Vorraum Lastenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0305.04.513", "maps": [], @@ -41426,8 +39032,6 @@ }, "description": "S4513A, Lastenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0305.04.513A", "maps": [], @@ -41460,8 +39064,6 @@ }, "description": "S4514, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0305.04.514", "maps": [], @@ -41494,8 +39096,6 @@ }, "description": "S4515, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0305.04.515", "maps": [], @@ -41528,8 +39128,6 @@ }, "description": "S4524, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0305.04.524", "maps": [], @@ -41562,8 +39160,6 @@ }, "description": "S4525, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0305.04.525", "maps": [], @@ -41596,8 +39192,6 @@ }, "description": "S4526, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0305.04.526", "maps": [], @@ -41630,8 +39224,6 @@ }, "description": "S4527, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0305.04.527", "maps": [], @@ -41664,8 +39256,6 @@ }, "description": "S4528B, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0305.04.528B", "maps": [], @@ -41698,8 +39288,6 @@ }, "description": "S4529, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0305.04.529", "maps": [], @@ -41732,8 +39320,6 @@ }, "description": "S4530, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0305.04.530", "maps": [], @@ -41766,8 +39352,6 @@ }, "description": "S4531, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0305.04.531", "maps": [], @@ -41800,8 +39384,6 @@ }, "description": "S4532, Roboterhalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0305.04.532", "maps": [], @@ -41834,8 +39416,6 @@ }, "description": "S4534, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0305.04.534", "maps": [], @@ -41868,8 +39448,6 @@ }, "description": "S4528A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0305.04.S28A", "maps": [], @@ -41902,8 +39480,6 @@ }, "description": "S5501, Maschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "0305.DG.501", "maps": [], @@ -41936,8 +39512,6 @@ }, "description": "S5502, Treppenhaus 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "0305.DG.502", "maps": [], @@ -41970,8 +39544,6 @@ }, "description": "S5506, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "0305.DG.506", "maps": [], @@ -42004,8 +39576,6 @@ }, "description": "S5506A, Installation/Kriechgang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "0305.DG.506A", "maps": [], @@ -42038,8 +39608,6 @@ }, "description": "S5509, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "0305.DG.509", "maps": [], @@ -42072,8 +39640,6 @@ }, "description": "S5509A, Installation/Kriechgang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "0305.DG.509A", "maps": [], @@ -42106,8 +39672,6 @@ }, "description": "S5510, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "0305.DG.510", "maps": [], @@ -42140,8 +39704,6 @@ }, "description": "S5512, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "0305.DG.512", "maps": [], @@ -42174,8 +39736,6 @@ }, "description": "S5513, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "0305.DG.513", "maps": [], @@ -42208,8 +39768,6 @@ }, "description": "S5514, Dachtechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "0305.DG.514", "maps": [], @@ -42242,8 +39800,6 @@ }, "description": "S5515, Dachterasse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "0305.DG.515", "maps": [], @@ -42276,8 +39832,6 @@ }, "description": "S0501, Treppenhaus 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0305.EG.501", "maps": [], @@ -42310,8 +39864,6 @@ }, "description": "S0501A, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0305.EG.501A", "maps": [], @@ -42344,8 +39896,6 @@ }, "description": "S0502, Foyer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0305.EG.502", "maps": [], @@ -42378,8 +39928,6 @@ }, "description": "S0502A, Windfang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0305.EG.502A", "maps": [], @@ -42412,8 +39960,6 @@ }, "description": "S0502B, Windfang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0305.EG.502B", "maps": [], @@ -42446,8 +39992,6 @@ }, "description": "S0503, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0305.EG.503", "maps": [], @@ -42480,8 +40024,6 @@ }, "description": "S0505, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0305.EG.505", "maps": [], @@ -42514,8 +40056,6 @@ }, "description": "S0505A, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0305.EG.505A", "maps": [], @@ -42548,8 +40088,6 @@ }, "description": "S0507, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0305.EG.507", "maps": [], @@ -42582,8 +40120,6 @@ }, "description": "S0511, Treppenhaus 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0305.EG.511", "maps": [], @@ -42616,8 +40152,6 @@ }, "description": "S0512, Lastenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0305.EG.512", "maps": [], @@ -42650,8 +40184,6 @@ }, "description": "S0513, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0305.EG.513", "maps": [], @@ -42684,8 +40216,6 @@ }, "description": "S0513A, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0305.EG.513A", "maps": [], @@ -42718,8 +40248,6 @@ }, "description": "S0513B, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0305.EG.513B", "maps": [], @@ -42752,8 +40280,6 @@ }, "description": "S0513C, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0305.EG.513C", "maps": [], @@ -42786,8 +40312,6 @@ }, "description": "S0531, Treppenhaus 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0305.EG.531", "maps": [], @@ -42820,8 +40344,6 @@ }, "description": "S0532, Poststelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0305.EG.532", "maps": [], @@ -42854,8 +40376,6 @@ }, "description": "S0532A, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0305.EG.532A", "maps": [], @@ -42888,8 +40408,6 @@ }, "description": "S0550, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0305.EG.550", "maps": [], @@ -42922,8 +40440,6 @@ }, "description": "S0551, Flur Schleuse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0305.EG.551", "maps": [], @@ -42956,8 +40472,6 @@ }, "description": "S0552, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0305.EG.552", "maps": [], @@ -42990,8 +40504,6 @@ }, "description": "S-1503, Lastenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0305.U1.503", "maps": [], @@ -43024,8 +40536,6 @@ }, "description": "S-1504, Treppenhaus 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0305.U1.504", "maps": [], @@ -43058,8 +40568,6 @@ }, "description": "S-1505, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0305.U1.505", "maps": [], @@ -43092,8 +40600,6 @@ }, "description": "S-1507, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0305.U1.507", "maps": [], @@ -43126,8 +40632,6 @@ }, "description": "S-1508, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0305.U1.508", "maps": [], @@ -43160,8 +40664,6 @@ }, "description": "S-1509, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0305.U1.509", "maps": [], @@ -43194,8 +40696,6 @@ }, "description": "S-1510, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0305.U1.510", "maps": [], @@ -43228,8 +40728,6 @@ }, "description": "S-1511, Gang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0305.U1.511", "maps": [], @@ -43262,8 +40760,6 @@ }, "description": "S-1514, Alte K\u00e4ltezentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0305.U1.514", "maps": [], @@ -43296,8 +40792,6 @@ }, "description": "S-1515, Sanit\u00e4r", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0305.U1.515", "maps": [], @@ -43330,8 +40824,6 @@ }, "description": "S-1560, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0305.U1.560", "maps": [], @@ -43364,8 +40856,6 @@ }, "description": "S-1568, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0305.U1.568", "maps": [], @@ -43398,8 +40888,6 @@ }, "description": "S-1568A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0305.U1.568A", "maps": [], @@ -43432,8 +40920,6 @@ }, "description": "S-1568B, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0305.U1.568B", "maps": [], @@ -43466,8 +40952,6 @@ }, "description": "S-1580, Verkehrsfl.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0305.U1.580", "maps": [], @@ -43500,8 +40984,6 @@ }, "description": "S-1581, Tierfgarage Verkehrsfl\u00e4chen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0305.U1.581", "maps": [], @@ -43534,8 +41016,6 @@ }, "description": "S-5182, Tiefgarage Verkehrsfl\u00e4chen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0305.U1.852", "maps": [], @@ -43568,8 +41048,6 @@ }, "description": "1101, Archiv", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0401.01.101", "maps": [], @@ -43602,8 +41080,6 @@ }, "description": "1102, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0401.01.102", "maps": [], @@ -43636,8 +41112,6 @@ }, "description": "1103, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0401.01.103", "maps": [], @@ -43670,8 +41144,6 @@ }, "description": "1104, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0401.01.104", "maps": [], @@ -43704,8 +41176,6 @@ }, "description": "1105, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0401.01.105", "maps": [], @@ -43738,8 +41208,6 @@ }, "description": "1106, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0401.01.106", "maps": [], @@ -43772,8 +41240,6 @@ }, "description": "1107, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0401.01.107", "maps": [], @@ -43806,8 +41272,6 @@ }, "description": "1108, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0401.01.108", "maps": [], @@ -43840,8 +41304,6 @@ }, "description": "1109, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0401.01.109", "maps": [], @@ -43874,8 +41336,6 @@ }, "description": "1110, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0401.01.110", "maps": [], @@ -43908,8 +41368,6 @@ }, "description": "1111, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0401.01.111", "maps": [], @@ -43942,8 +41400,6 @@ }, "description": "1112, B\u00fcro/ZV 4-Leitung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0401.01.112", "maps": [], @@ -43976,8 +41432,6 @@ }, "description": "1113, Archiv/B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0401.01.113", "maps": [], @@ -44010,8 +41464,6 @@ }, "description": "1114, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0401.01.114", "maps": [], @@ -44044,8 +41496,6 @@ }, "description": "1118, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0401.01.118", "maps": [], @@ -44078,8 +41528,6 @@ }, "description": "1121, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0401.01.121", "maps": [], @@ -44112,8 +41560,6 @@ }, "description": "1122, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0401.01.122", "maps": [], @@ -44146,8 +41592,6 @@ }, "description": "1123, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0401.01.123", "maps": [], @@ -44180,8 +41624,6 @@ }, "description": "1124, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0401.01.124", "maps": [], @@ -44214,8 +41656,6 @@ }, "description": "1125, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0401.01.125", "maps": [], @@ -44248,8 +41688,6 @@ }, "description": "1126, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0401.01.126", "maps": [], @@ -44282,8 +41720,6 @@ }, "description": "2215, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0401.02.215", "maps": [], @@ -44316,8 +41752,6 @@ }, "description": "2216, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0401.02.216", "maps": [], @@ -44350,8 +41784,6 @@ }, "description": "2217, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0401.02.217", "maps": [], @@ -44384,8 +41816,6 @@ }, "description": "2221, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0401.02.221", "maps": [], @@ -44418,8 +41848,6 @@ }, "description": "2222, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0401.02.222", "maps": [], @@ -44452,8 +41880,6 @@ }, "description": "2222A, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0401.02.222A", "maps": [], @@ -44486,8 +41912,6 @@ }, "description": "2223, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0401.02.223", "maps": [], @@ -44520,8 +41944,6 @@ }, "description": "2224, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0401.02.224", "maps": [], @@ -44554,8 +41976,6 @@ }, "description": "2225, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0401.02.225", "maps": [], @@ -44588,8 +42008,6 @@ }, "description": "3318, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0401.03.318", "maps": [], @@ -44622,8 +42040,6 @@ }, "description": "3322, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0401.03.322", "maps": [], @@ -44656,8 +42072,6 @@ }, "description": "3323, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0401.03.323", "maps": [], @@ -44690,8 +42104,6 @@ }, "description": "3324, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0401.03.324", "maps": [], @@ -44724,8 +42136,6 @@ }, "description": "3325, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0401.03.325", "maps": [], @@ -44758,8 +42168,6 @@ }, "description": "3326, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0401.03.326", "maps": [], @@ -44792,8 +42200,6 @@ }, "description": "3327, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0401.03.327", "maps": [], @@ -44826,8 +42232,6 @@ }, "description": "3328, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0401.03.328", "maps": [], @@ -44860,8 +42264,6 @@ }, "description": "4422, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0401.04.422", "maps": [], @@ -44894,8 +42296,6 @@ }, "description": "4423, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0401.04.423", "maps": [], @@ -44928,8 +42328,6 @@ }, "description": "4424, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0401.04.424", "maps": [], @@ -44962,8 +42360,6 @@ }, "description": "4425, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0401.04.425", "maps": [], @@ -44996,8 +42392,6 @@ }, "description": "4427, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0401.04.427", "maps": [], @@ -45030,8 +42424,6 @@ }, "description": "4428, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0401.04.428", "maps": [], @@ -45064,8 +42456,6 @@ }, "description": "4429, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0401.04.429", "maps": [], @@ -45098,8 +42488,6 @@ }, "description": "4429A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0401.04.429A", "maps": [], @@ -45132,8 +42520,6 @@ }, "description": "5501, Install./Dachabstellraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "0401.DG.501", "maps": [], @@ -45166,8 +42552,6 @@ }, "description": "5528, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "0401.DG.528", "maps": [], @@ -45200,8 +42584,6 @@ }, "description": "0001, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0401.EG.001", "maps": [], @@ -45234,8 +42616,6 @@ }, "description": "0001A, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0401.EG.001A", "maps": [], @@ -45268,8 +42648,6 @@ }, "description": "0002, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0401.EG.002", "maps": [], @@ -45302,8 +42680,6 @@ }, "description": "0002A, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0401.EG.002A", "maps": [], @@ -45336,8 +42712,6 @@ }, "description": "0005, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0401.EG.005", "maps": [], @@ -45370,8 +42744,6 @@ }, "description": "0009, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0401.EG.009", "maps": [], @@ -45404,8 +42776,6 @@ }, "description": "0009, Einfahrt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0401.EG.009A", "maps": [], @@ -45438,8 +42808,6 @@ }, "description": "0010, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0401.EG.010", "maps": [], @@ -45472,8 +42840,6 @@ }, "description": "0010A, Flur/Papierlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0401.EG.010A", "maps": [], @@ -45506,8 +42872,6 @@ }, "description": "0011, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0401.EG.011", "maps": [], @@ -45540,8 +42904,6 @@ }, "description": "0012, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0401.EG.012", "maps": [], @@ -45574,8 +42936,6 @@ }, "description": "0013, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0401.EG.013", "maps": [], @@ -45608,8 +42968,6 @@ }, "description": "0015, Besprechungsraum/ZV 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0401.EG.015", "maps": [], @@ -45642,8 +43000,6 @@ }, "description": "015A, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0401.EG.015A", "maps": [], @@ -45676,8 +43032,6 @@ }, "description": "0016, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0401.EG.016", "maps": [], @@ -45710,8 +43064,6 @@ }, "description": "0017, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0401.EG.017", "maps": [], @@ -45744,8 +43096,6 @@ }, "description": "0018, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0401.EG.018", "maps": [], @@ -45778,8 +43128,6 @@ }, "description": "0019, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0401.EG.019", "maps": [], @@ -45812,8 +43160,6 @@ }, "description": "0019A, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0401.EG.019A", "maps": [], @@ -45846,8 +43192,6 @@ }, "description": "0020, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0401.EG.020", "maps": [], @@ -45880,8 +43224,6 @@ }, "description": "0020A, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0401.EG.020A", "maps": [], @@ -45914,8 +43256,6 @@ }, "description": "0021, K\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0401.EG.021", "maps": [], @@ -45948,8 +43288,6 @@ }, "description": "0022, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0401.EG.022", "maps": [], @@ -45982,8 +43320,6 @@ }, "description": "0023, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0401.EG.023", "maps": [], @@ -46016,8 +43352,6 @@ }, "description": "-1001A, Archiv", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0401.U1.001A", "maps": [], @@ -46050,8 +43384,6 @@ }, "description": "-1009, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0401.U1.009", "maps": [], @@ -46084,8 +43416,6 @@ }, "description": "-1010, Archiv", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0401.U1.010", "maps": [], @@ -46118,8 +43448,6 @@ }, "description": "-1011, Archiv", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0401.U1.011", "maps": [], @@ -46152,8 +43480,6 @@ }, "description": "-1013, Archiv", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0401.U1.013", "maps": [], @@ -46186,8 +43512,6 @@ }, "description": "-1014, Archiv", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0401.U1.014", "maps": [], @@ -46220,8 +43544,6 @@ }, "description": "-1015, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0401.U1.015", "maps": [], @@ -46254,8 +43576,6 @@ }, "description": "-1016, Heiz.-/EDV-Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0401.U1.016", "maps": [], @@ -46288,8 +43608,6 @@ }, "description": "-1021, Raumlufttechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0401.U1.021", "maps": [], @@ -46322,8 +43640,6 @@ }, "description": "-1022, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0401.U1.022", "maps": [], @@ -46356,8 +43672,6 @@ }, "description": "-1023, Kellerflur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0401.U1.023", "maps": [], @@ -46390,8 +43704,6 @@ }, "description": "-1024, Keller-Technik-Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0401.U1.024", "maps": [], @@ -46424,8 +43736,6 @@ }, "description": "Nicht genutzte Nutzfl\u00e4chen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0401.U1.999", "maps": [], @@ -46541,8 +43851,6 @@ }, "description": "1110, Treppenraum Nord", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0501.01.110", "maps": [], @@ -46575,8 +43883,6 @@ }, "description": "1111, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0501.01.111", "maps": [], @@ -46609,8 +43915,6 @@ }, "description": "1113, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0501.01.113", "maps": [], @@ -46643,8 +43947,6 @@ }, "description": "1130A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0501.01.130A", "maps": [], @@ -46677,8 +43979,6 @@ }, "description": "1130B, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0501.01.130B", "maps": [], @@ -46711,8 +44011,6 @@ }, "description": "1135, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0501.01.135", "maps": [], @@ -46745,8 +44043,6 @@ }, "description": "1135A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0501.01.135A", "maps": [], @@ -46779,8 +44075,6 @@ }, "description": "1137, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0501.01.137", "maps": [], @@ -46813,8 +44107,6 @@ }, "description": "1139, Flur Nord", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0501.01.139", "maps": [], @@ -46847,8 +44139,6 @@ }, "description": "1139A, Elektro-Installationsschacht Nord", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0501.01.139A", "maps": [], @@ -46881,8 +44171,6 @@ }, "description": "1142B, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0501.01.142B", "maps": [], @@ -46915,8 +44203,6 @@ }, "description": "1142C, Installationsraum Bibliothek", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0501.01.142C", "maps": [], @@ -46949,8 +44235,6 @@ }, "description": "1143A/G, Lager Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0501.01.143A", "maps": [], @@ -46983,8 +44267,6 @@ }, "description": "1151A, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0501.01.151A", "maps": [], @@ -47017,8 +44299,6 @@ }, "description": "1151B, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0501.01.151B", "maps": [], @@ -47051,8 +44331,6 @@ }, "description": "1152A, Installationsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0501.01.152A", "maps": [], @@ -47085,8 +44363,6 @@ }, "description": "1152B, Installationsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0501.01.152B", "maps": [], @@ -47119,8 +44395,6 @@ }, "description": "1153, WC-Herren mit Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0501.01.153", "maps": [], @@ -47153,8 +44427,6 @@ }, "description": "1153A, LRZ-Verteilerknoten", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0501.01.153A", "maps": [], @@ -47187,8 +44459,6 @@ }, "description": "1155, WC-Damen mit Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0501.01.155", "maps": [], @@ -47221,8 +44491,6 @@ }, "description": "1161A, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0501.01.161A", "maps": [], @@ -47255,8 +44523,6 @@ }, "description": "1161B, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0501.01.161B", "maps": [], @@ -47289,8 +44555,6 @@ }, "description": "1172A, Flur B\u00fcro Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0501.01.172A", "maps": [], @@ -47323,8 +44587,6 @@ }, "description": "1172B, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0501.01.172B", "maps": [], @@ -47440,8 +44702,6 @@ }, "description": "1181, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0501.01.181", "maps": [], @@ -47474,8 +44734,6 @@ }, "description": "1183, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0501.01.183", "maps": [], @@ -47508,8 +44766,6 @@ }, "description": "1183A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0501.01.183A", "maps": [], @@ -47542,8 +44798,6 @@ }, "description": "1190, Treppenraum S\u00fcd", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0501.01.190", "maps": [], @@ -47651,8 +44905,6 @@ }, "description": "2101, Raumlufttechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0501.02.101", "maps": [], @@ -47685,8 +44937,6 @@ }, "description": "2104, Raumlufttechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0501.02.104", "maps": [], @@ -47719,8 +44969,6 @@ }, "description": "2110, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0501.02.110", "maps": [], @@ -47753,8 +45001,6 @@ }, "description": "2111, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0501.02.111", "maps": [], @@ -47787,8 +45033,6 @@ }, "description": "2113, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0501.02.113", "maps": [], @@ -47821,8 +45065,6 @@ }, "description": "2119, Telefon-Geb\u00fchrenabrechnung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0501.02.119", "maps": [], @@ -47855,8 +45097,6 @@ }, "description": "2121, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0501.02.121", "maps": [], @@ -47889,8 +45129,6 @@ }, "description": "2123, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0501.02.123", "maps": [], @@ -47923,8 +45161,6 @@ }, "description": "2135, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0501.02.135", "maps": [], @@ -47957,8 +45193,6 @@ }, "description": "2137, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0501.02.137", "maps": [], @@ -47991,8 +45225,6 @@ }, "description": "2138A, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0501.02.138A", "maps": [], @@ -48025,8 +45257,6 @@ }, "description": "2139, Flur Nord", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0501.02.139", "maps": [], @@ -48059,8 +45289,6 @@ }, "description": "0139A, Elektro Installationsschacht Nord", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0501.02.139A", "maps": [], @@ -48093,8 +45321,6 @@ }, "description": "2142, Treppe/Flur-Zentral", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0501.02.142", "maps": [], @@ -48127,8 +45353,6 @@ }, "description": "2146A, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0501.02.146A", "maps": [], @@ -48161,8 +45385,6 @@ }, "description": "2150, Flur S\u00fcd", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0501.02.150", "maps": [], @@ -48195,8 +45417,6 @@ }, "description": "0150A, Elektro Installationsschacht S\u00fcd", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0501.02.150A", "maps": [], @@ -48229,8 +45449,6 @@ }, "description": "2153, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0501.02.153", "maps": [], @@ -48263,8 +45481,6 @@ }, "description": "2155, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0501.02.155", "maps": [], @@ -48297,8 +45513,6 @@ }, "description": "2180B, Raumlufttechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0501.02.180B", "maps": [], @@ -48331,8 +45545,6 @@ }, "description": "2190, Treppenraum Nord", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0501.02.190", "maps": [], @@ -48365,8 +45577,6 @@ }, "description": "3110, Treppenraum Nord", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0501.03.110", "maps": [], @@ -48399,8 +45609,6 @@ }, "description": "3117, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0501.03.117", "maps": [], @@ -48433,8 +45641,6 @@ }, "description": "3135, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0501.03.135", "maps": [], @@ -48467,8 +45673,6 @@ }, "description": "3135A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0501.03.135A", "maps": [], @@ -48501,8 +45705,6 @@ }, "description": "3137, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0501.03.137", "maps": [], @@ -48535,8 +45737,6 @@ }, "description": "3139, Flur Nord", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0501.03.139", "maps": [], @@ -48569,8 +45769,6 @@ }, "description": "3139A, Elektro Install. Nord", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0501.03.139A", "maps": [], @@ -48603,8 +45801,6 @@ }, "description": "3142, Zentraler Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0501.03.142", "maps": [], @@ -48637,8 +45833,6 @@ }, "description": "3149, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0501.03.149", "maps": [], @@ -48671,8 +45865,6 @@ }, "description": "3150, Flur S\u00fcd", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0501.03.150", "maps": [], @@ -48705,8 +45897,6 @@ }, "description": "3150A, Elektro Install. S\u00fcd", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0501.03.150A", "maps": [], @@ -48739,8 +45929,6 @@ }, "description": "3153, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0501.03.153", "maps": [], @@ -48773,8 +45961,6 @@ }, "description": "3155, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0501.03.155", "maps": [], @@ -48807,8 +45993,6 @@ }, "description": "3180, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0501.03.180", "maps": [], @@ -48841,8 +46025,6 @@ }, "description": "3190, Treppenhaus S\u00fcd", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0501.03.190", "maps": [], @@ -48875,8 +46057,6 @@ }, "description": "3195, Terrasse (Reinigen)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0501.03.195", "maps": [], @@ -48909,8 +46089,6 @@ }, "description": "4110, Treppenraum Nord", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0501.04.110", "maps": [], @@ -48943,8 +46121,6 @@ }, "description": "4116, Flur zu WC 4113", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0501.04.116", "maps": [], @@ -48977,8 +46153,6 @@ }, "description": "4135, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0501.04.135", "maps": [], @@ -49011,8 +46185,6 @@ }, "description": "4135A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0501.04.135A", "maps": [], @@ -49045,8 +46217,6 @@ }, "description": "4137, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0501.04.137", "maps": [], @@ -49079,8 +46249,6 @@ }, "description": "4137A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0501.04.137A", "maps": [], @@ -49113,8 +46281,6 @@ }, "description": "4142, Zentraler Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0501.04.142", "maps": [], @@ -49147,8 +46313,6 @@ }, "description": "4149, Flur Nord", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0501.04.149", "maps": [], @@ -49181,8 +46345,6 @@ }, "description": "4149A, Elektro Install. Nord", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0501.04.149A", "maps": [], @@ -49215,8 +46377,6 @@ }, "description": "4150, Flur S\u00fcd", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0501.04.150", "maps": [], @@ -49249,8 +46409,6 @@ }, "description": "4150A, Elektro Install. S\u00fcd", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0501.04.150A", "maps": [], @@ -49283,8 +46441,6 @@ }, "description": "4170B, BIM Forschungslabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0501.04.170B", "maps": [], @@ -49317,8 +46473,6 @@ }, "description": "4170C, Seminarraum Architekturinformatik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0501.04.170C", "maps": [], @@ -49351,8 +46505,6 @@ }, "description": "4180, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0501.04.180", "maps": [], @@ -49385,8 +46537,6 @@ }, "description": "4180A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0501.04.180A", "maps": [], @@ -49419,8 +46569,6 @@ }, "description": "4181, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0501.04.181", "maps": [], @@ -49453,8 +46601,6 @@ }, "description": "4183, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0501.04.183", "maps": [], @@ -49487,8 +46633,6 @@ }, "description": "4190, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0501.04.190", "maps": [], @@ -49521,8 +46665,6 @@ }, "description": "5110, Treppenhaus Nord", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0501.05.110", "maps": [], @@ -49555,8 +46697,6 @@ }, "description": "5111, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0501.05.111", "maps": [], @@ -49589,8 +46729,6 @@ }, "description": "5113, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0501.05.113", "maps": [], @@ -49623,8 +46761,6 @@ }, "description": "5118, Aufzugsmaschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0501.05.118", "maps": [], @@ -49657,8 +46793,6 @@ }, "description": "5130, Dachterrasse (Reinigen)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0501.05.130", "maps": [], @@ -49691,8 +46825,6 @@ }, "description": "5131, Dachterrasse (Reinigen)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0501.05.131", "maps": [], @@ -49725,8 +46857,6 @@ }, "description": "5134A, Aufzugsmaschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0501.05.134", "maps": [], @@ -49759,8 +46889,6 @@ }, "description": "5138, Telefonverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0501.05.138", "maps": [], @@ -49793,8 +46921,6 @@ }, "description": "5142, Zentral Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0501.05.142", "maps": [], @@ -49827,8 +46953,6 @@ }, "description": "5149, Aufzugsmaschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0501.05.149", "maps": [], @@ -49861,8 +46985,6 @@ }, "description": "5150, Flur mit Treppe von Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0501.05.150", "maps": [], @@ -49895,8 +47017,6 @@ }, "description": "5152, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0501.05.152", "maps": [], @@ -49929,8 +47049,6 @@ }, "description": "5164, Cafeteria-K\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0501.05.164", "maps": [], @@ -49963,8 +47081,6 @@ }, "description": "5165, Cafeteria-K\u00fchlraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0501.05.165", "maps": [], @@ -49997,8 +47113,6 @@ }, "description": "5166, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0501.05.166", "maps": [], @@ -50031,8 +47145,6 @@ }, "description": "5169, Aufzugsmaschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0501.05.169", "maps": [], @@ -50065,8 +47177,6 @@ }, "description": "5190, Treppenhaus S\u00fcd", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0501.05.190", "maps": [], @@ -50099,8 +47209,6 @@ }, "description": "6110, Treppe zur Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "0501.06.110", "maps": [], @@ -50133,8 +47241,6 @@ }, "description": "6116, Aufzugsmaschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "0501.06.118", "maps": [], @@ -50167,8 +47273,6 @@ }, "description": "6130A, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "0501.06.130A", "maps": [], @@ -50201,8 +47305,6 @@ }, "description": "6131, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "0501.06.131", "maps": [], @@ -50235,8 +47337,6 @@ }, "description": "6134, Aufzugsmaschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "0501.06.134", "maps": [], @@ -50269,8 +47369,6 @@ }, "description": "6138, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "0501.06.138", "maps": [], @@ -50303,8 +47401,6 @@ }, "description": "6138A, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "0501.06.138A", "maps": [], @@ -50337,8 +47433,6 @@ }, "description": "6142, Treppe zur Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "0501.06.142", "maps": [], @@ -50371,8 +47465,6 @@ }, "description": "6149, Aufzugsmaschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "0501.06.149", "maps": [], @@ -50405,8 +47497,6 @@ }, "description": "6163, Aufzugsmaschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "0501.06.163", "maps": [], @@ -50439,8 +47529,6 @@ }, "description": "0101, Flur Nordspange", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.101", "maps": [], @@ -50473,8 +47561,6 @@ }, "description": "0110, Treppenraum Nord", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.110", "maps": [], @@ -50507,8 +47593,6 @@ }, "description": "0111, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.111", "maps": [], @@ -50541,8 +47625,6 @@ }, "description": "0113, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.113", "maps": [], @@ -50575,8 +47657,6 @@ }, "description": "0116, Personenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.116", "maps": [], @@ -50609,8 +47689,6 @@ }, "description": "0119A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.119A", "maps": [], @@ -50643,8 +47721,6 @@ }, "description": "0120, H\u00f6rsaal gem. Nutzung GEO,SP,WS,OR", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.120", "maps": [], @@ -50677,8 +47753,6 @@ }, "description": "0130, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.130", "maps": [], @@ -50711,8 +47785,6 @@ }, "description": "0130C, K\u00fcche Immatrikulationshalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.130C", "maps": [], @@ -50745,8 +47817,6 @@ }, "description": "0132, Kellertreppe Nord", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.132", "maps": [], @@ -50779,8 +47849,6 @@ }, "description": "0132A, L\u00fcftungszentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.132A", "maps": [], @@ -50813,8 +47881,6 @@ }, "description": "0135, WC-Damen / Wickeltisch", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.135", "maps": [], @@ -50847,8 +47913,6 @@ }, "description": "0136, Immatrikulationshalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.136", "maps": [], @@ -50881,8 +47945,6 @@ }, "description": "0137, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.137", "maps": [], @@ -50915,8 +47977,6 @@ }, "description": "0138A, Installationsschacht Nord", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.138A", "maps": [], @@ -50949,8 +48009,6 @@ }, "description": "0139, Flur Nord", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.139", "maps": [], @@ -50983,8 +48041,6 @@ }, "description": "0139A, Elektro-Install. Nord", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.139A", "maps": [], @@ -51017,8 +48073,6 @@ }, "description": "0140, Durchgangshalle zur Immathalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.140", "maps": [], @@ -51051,8 +48105,6 @@ }, "description": "0141, Windfang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.141", "maps": [], @@ -51085,8 +48137,6 @@ }, "description": "0142, Foyer / Eingangshalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.142", "maps": [], @@ -51119,8 +48169,6 @@ }, "description": "0149, Betriebs\u00e4rztlicher Dienst", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.149", "maps": [], @@ -51153,8 +48201,6 @@ }, "description": "0149A, Betriebs\u00e4rztlicher Dienst", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.149A", "maps": [], @@ -51187,8 +48233,6 @@ }, "description": "0150, Flur S\u00fcd", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.150", "maps": [], @@ -51221,8 +48265,6 @@ }, "description": "0150A, Elektro-Install. S\u00fcd", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.150A", "maps": [], @@ -51255,8 +48297,6 @@ }, "description": "0152, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.152", "maps": [], @@ -51289,8 +48329,6 @@ }, "description": "0153, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.153", "maps": [], @@ -51323,8 +48361,6 @@ }, "description": "0153A, LRZ-Verteilerknoten", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.153A", "maps": [], @@ -51357,8 +48393,6 @@ }, "description": "0154, Flur SSZ", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.154", "maps": [], @@ -51391,8 +48425,6 @@ }, "description": "0154A, Installationsschacht S\u00fcd", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.154A", "maps": [], @@ -51425,8 +48457,6 @@ }, "description": "0155, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.155", "maps": [], @@ -51459,8 +48489,6 @@ }, "description": "0161, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.161", "maps": [], @@ -51493,8 +48521,6 @@ }, "description": "0163, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.163", "maps": [], @@ -51527,8 +48553,6 @@ }, "description": "0165, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.165", "maps": [], @@ -51561,8 +48585,6 @@ }, "description": "0166, Kellertreppe S\u00fcd", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.166", "maps": [], @@ -51595,8 +48617,6 @@ }, "description": "0167, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.167", "maps": [], @@ -51629,8 +48649,6 @@ }, "description": "0169, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.169", "maps": [], @@ -51663,8 +48681,6 @@ }, "description": "0170, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.170", "maps": [], @@ -51697,8 +48713,6 @@ }, "description": "0170A, Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.170A", "maps": [], @@ -51731,8 +48745,6 @@ }, "description": "0171, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.171", "maps": [], @@ -51765,8 +48777,6 @@ }, "description": "0172A, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.172A", "maps": [], @@ -51799,8 +48809,6 @@ }, "description": "0172B, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.172B", "maps": [], @@ -51833,8 +48841,6 @@ }, "description": "0174, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.174", "maps": [], @@ -51867,8 +48873,6 @@ }, "description": "0176, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.176", "maps": [], @@ -51901,8 +48905,6 @@ }, "description": "0181, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.181", "maps": [], @@ -51935,8 +48937,6 @@ }, "description": "0183, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.183", "maps": [], @@ -51969,8 +48969,6 @@ }, "description": "0183A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.183A", "maps": [], @@ -52003,8 +49001,6 @@ }, "description": "0184, B\u00fcro (Rochadefl\u00e4che)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.184", "maps": [], @@ -52037,8 +49033,6 @@ }, "description": "0184A, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.184A", "maps": [], @@ -52071,8 +49065,6 @@ }, "description": "0185, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.185", "maps": [], @@ -52105,8 +49097,6 @@ }, "description": "0186, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.186", "maps": [], @@ -52139,8 +49129,6 @@ }, "description": "0187, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.187", "maps": [], @@ -52173,8 +49161,6 @@ }, "description": "0188, Flur CIA", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.188", "maps": [], @@ -52207,8 +49193,6 @@ }, "description": "0189, B\u00fcro Durchgang zu 0193", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.189", "maps": [], @@ -52241,8 +49225,6 @@ }, "description": "0190, Treppenraum S\u00fcd", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.190", "maps": [], @@ -52275,8 +49257,6 @@ }, "description": "0191A, Aufzugsschacht S\u00fcd", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.190A", "maps": [], @@ -52309,8 +49289,6 @@ }, "description": "0193, B\u00fcro zu 0189", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.193", "maps": [], @@ -52343,8 +49321,6 @@ }, "description": "0194, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.194", "maps": [], @@ -52377,8 +49353,6 @@ }, "description": "0195, Flur S\u00fcdspange", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.195", "maps": [], @@ -52411,8 +49385,6 @@ }, "description": "0196, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.196", "maps": [], @@ -52445,8 +49417,6 @@ }, "description": "0198, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.198", "maps": [], @@ -52479,8 +49449,6 @@ }, "description": "0198A, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.198A", "maps": [], @@ -52513,8 +49481,6 @@ }, "description": "199, Flur/Treppe/\u00dcbergang zu 0502", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.199", "maps": [], @@ -52547,8 +49513,6 @@ }, "description": "199A, Lastenaufzug/\u00dcbergang zu 0502", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0501.EG.199A", "maps": [], @@ -52581,8 +49545,6 @@ }, "description": "-1101, Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0501.U1.101", "maps": [], @@ -52615,8 +49577,6 @@ }, "description": "-1101A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0501.U1.101A", "maps": [], @@ -52649,8 +49609,6 @@ }, "description": "-1101B, Dusche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0501.U1.101B", "maps": [], @@ -52683,8 +49641,6 @@ }, "description": "-1102, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0501.U1.102", "maps": [], @@ -52717,8 +49673,6 @@ }, "description": "-1103, Gardarobe u. Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0501.U1.103", "maps": [], @@ -52751,8 +49705,6 @@ }, "description": "-1104, Hausmeisterb\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0501.U1.104", "maps": [], @@ -52785,8 +49737,6 @@ }, "description": "-1107, Raumlufttechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0501.U1.107", "maps": [], @@ -52819,8 +49769,6 @@ }, "description": "-1109, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0501.U1.109", "maps": [], @@ -52853,8 +49801,6 @@ }, "description": "-1110, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0501.U1.110", "maps": [], @@ -52887,8 +49833,6 @@ }, "description": "-1110A, Abstellraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0501.U1.110A", "maps": [], @@ -52921,8 +49865,6 @@ }, "description": "-1121, Betriebstechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0501.U1.121", "maps": [], @@ -52955,8 +49897,6 @@ }, "description": "-1130, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0501.U1.130", "maps": [], @@ -52989,8 +49929,6 @@ }, "description": "K135, Stromversorgung/Batterieraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0501.U1.135", "maps": [], @@ -53023,8 +49961,6 @@ }, "description": "-1136, Raumlufttechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0501.U1.136", "maps": [], @@ -53057,8 +49993,6 @@ }, "description": "-1139, Flur Geod\u00e4siebereich", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0501.U1.139", "maps": [], @@ -53091,8 +50025,6 @@ }, "description": "-1140, Heizungstechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0501.U1.140", "maps": [], @@ -53125,8 +50057,6 @@ }, "description": "-1140A, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0501.U1.140A", "maps": [], @@ -53159,8 +50089,6 @@ }, "description": "-1140B, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0501.U1.140B", "maps": [], @@ -53193,8 +50121,6 @@ }, "description": "-1140C, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0501.U1.140C", "maps": [], @@ -53227,8 +50153,6 @@ }, "description": "-1140D, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0501.U1.140D", "maps": [], @@ -53261,8 +50185,6 @@ }, "description": "-1143, Lager M\u00f6bel", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0501.U1.143", "maps": [], @@ -53295,8 +50217,6 @@ }, "description": "-1148, Putzfirma", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0501.U1.146", "maps": [], @@ -53329,8 +50249,6 @@ }, "description": "-1147, Toiletten/Papierhandt\u00fccher", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0501.U1.147", "maps": [], @@ -53363,8 +50281,6 @@ }, "description": "-1150, Grosser Keller Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0501.U1.150", "maps": [], @@ -53397,8 +50313,6 @@ }, "description": "-1151, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0501.U1.151", "maps": [], @@ -53431,8 +50345,6 @@ }, "description": "-1152, Lastenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0501.U1.152", "maps": [], @@ -53465,8 +50377,6 @@ }, "description": "-1155, Betriebstechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0501.U1.155", "maps": [], @@ -53499,8 +50409,6 @@ }, "description": "-1156, L\u00fcftungstechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0501.U1.156", "maps": [], @@ -53533,8 +50441,6 @@ }, "description": "-1164B, Lager Putzmaterial", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0501.U1.164B", "maps": [], @@ -53567,8 +50473,6 @@ }, "description": "-1166, Sprinklerzentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0501.U1.166", "maps": [], @@ -53601,8 +50505,6 @@ }, "description": "-1168, Flur Zugang/Transport", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0501.U1.168", "maps": [], @@ -53635,8 +50537,6 @@ }, "description": "K171, Elektrotechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0501.U1.171", "maps": [], @@ -53669,8 +50569,6 @@ }, "description": "K173, Elektrotechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0501.U1.173", "maps": [], @@ -53703,8 +50601,6 @@ }, "description": "-1175, Lager/Schreinerei Kohlschmid", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0501.U1.175", "maps": [], @@ -53737,8 +50633,6 @@ }, "description": "-1184, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0501.U1.184", "maps": [], @@ -53771,8 +50665,6 @@ }, "description": "-1188, Flur/Treppe \u00dcbergang zu 0502", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0501.U1.188", "maps": [], @@ -53805,8 +50697,6 @@ }, "description": "-1189, Lastenaufzug/\u00dcbergang zu 0502", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0501.U1.189", "maps": [], @@ -53839,8 +50729,6 @@ }, "description": "-1190, B\u00fcchermagazin Bibliothek", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0501.U1.190", "maps": [], @@ -53873,8 +50761,6 @@ }, "description": "-1190A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0501.U1.190A", "maps": [], @@ -53907,8 +50793,6 @@ }, "description": "-1190B, Br\u00e4ust\u00fcberl", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0501.U1.190B", "maps": [], @@ -53941,8 +50825,6 @@ }, "description": "-1191, Flur-Feuerwehr", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0501.U1.191", "maps": [], @@ -53975,8 +50857,6 @@ }, "description": "-1192, Windfang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0501.U1.192", "maps": [], @@ -54009,8 +50889,6 @@ }, "description": "-1193, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0501.U1.193", "maps": [], @@ -54043,8 +50921,6 @@ }, "description": "-1194, Lager 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0501.U1.194", "maps": [], @@ -54077,8 +50953,6 @@ }, "description": "-1195, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0501.U1.195", "maps": [], @@ -54111,8 +50985,6 @@ }, "description": "-1196, Lager 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0501.U1.196", "maps": [], @@ -54145,8 +51017,6 @@ }, "description": "-1197, Lager 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0501.U1.197", "maps": [], @@ -54179,8 +51049,6 @@ }, "description": "-1198, Aufenthaltsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0501.U1.198", "maps": [], @@ -54213,8 +51081,6 @@ }, "description": "-1199, B\u00fcro Putzfirma", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0501.U1.199", "maps": [], @@ -54247,8 +51113,6 @@ }, "description": "-1199A, Dusche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0501.U1.199A", "maps": [], @@ -54281,8 +51145,6 @@ }, "description": "-2001, Installationskanal-Hochschulstrasse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "0501.U2.001", "maps": [], @@ -54315,8 +51177,6 @@ }, "description": "-2101, Installationskanal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "0501.U2.101", "maps": [], @@ -54432,8 +51292,6 @@ }, "description": "1200A, Lager Carl von Linde-H\u00f6rsaal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0502.01.200A", "maps": [], @@ -54466,8 +51324,6 @@ }, "description": "1200B, Lager Carl von Linde-H\u00f6rsaal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0502.01.200B", "maps": [], @@ -54500,8 +51356,6 @@ }, "description": "1202, Vorbereitung Carl von Linde-H\u00f6rsaal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0502.01.202", "maps": [], @@ -54534,8 +51388,6 @@ }, "description": "1202A, Galerie/Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0502.01.202A", "maps": [], @@ -54568,8 +51420,6 @@ }, "description": "1203, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0502.01.203", "maps": [], @@ -54602,8 +51452,6 @@ }, "description": "1204, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0502.01.204", "maps": [], @@ -54636,8 +51484,6 @@ }, "description": "1211A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0502.01.211A", "maps": [], @@ -54670,8 +51516,6 @@ }, "description": "1211B, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0502.01.211B", "maps": [], @@ -54704,8 +51548,6 @@ }, "description": "1211C, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0502.01.211C", "maps": [], @@ -54738,8 +51580,6 @@ }, "description": "1219, Foyer/Gardarobe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0502.01.219", "maps": [], @@ -54772,8 +51612,6 @@ }, "description": "1219A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0502.01.219A", "maps": [], @@ -54806,8 +51644,6 @@ }, "description": "1219B, Studentische Arbeitspl\u00e4tze", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0502.01.219B", "maps": [], @@ -54840,8 +51676,6 @@ }, "description": "1221, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0502.01.221", "maps": [], @@ -54874,8 +51708,6 @@ }, "description": "1221G, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0502.01.221G", "maps": [], @@ -54908,8 +51740,6 @@ }, "description": "1229, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0502.01.229", "maps": [], @@ -54942,8 +51772,6 @@ }, "description": "1229AG, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0502.01.229G", "maps": [], @@ -54976,8 +51804,6 @@ }, "description": "1230, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0502.01.230", "maps": [], @@ -55010,8 +51836,6 @@ }, "description": "1230A, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0502.01.230A", "maps": [], @@ -55044,8 +51868,6 @@ }, "description": "1237, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0502.01.237", "maps": [], @@ -55078,8 +51900,6 @@ }, "description": "1242, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0502.01.242", "maps": [], @@ -55112,8 +51932,6 @@ }, "description": "1244, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0502.01.244", "maps": [], @@ -55226,8 +52044,6 @@ }, "description": "1266, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0502.01.266", "maps": [], @@ -55260,8 +52076,6 @@ }, "description": "1267, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0502.01.267", "maps": [], @@ -55294,8 +52108,6 @@ }, "description": "1267A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0502.01.267A", "maps": [], @@ -55328,8 +52140,6 @@ }, "description": "1271, L\u00fcftungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0502.01.271", "maps": [], @@ -55362,8 +52172,6 @@ }, "description": "1271A, Telefonzentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0502.01.271A", "maps": [], @@ -55396,8 +52204,6 @@ }, "description": "1271B, Telefonzentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0502.01.271B", "maps": [], @@ -55430,8 +52236,6 @@ }, "description": "1271C, Telefonzentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0502.01.271C", "maps": [], @@ -55464,8 +52268,6 @@ }, "description": "2203, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0502.02.203", "maps": [], @@ -55498,8 +52300,6 @@ }, "description": "2205, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0502.02.205", "maps": [], @@ -55532,8 +52332,6 @@ }, "description": "2215, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0502.02.215", "maps": [], @@ -55566,8 +52364,6 @@ }, "description": "2216A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0502.02.216A", "maps": [], @@ -55600,8 +52396,6 @@ }, "description": "2219, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0502.02.219", "maps": [], @@ -55634,8 +52428,6 @@ }, "description": "2222, Katastrophen/Selbstschutz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0502.02.222", "maps": [], @@ -55668,8 +52460,6 @@ }, "description": "2224, Film-Projektionsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0502.02.224", "maps": [], @@ -55702,8 +52492,6 @@ }, "description": "2226, Vorf\u00fchrraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0502.02.226", "maps": [], @@ -55736,8 +52524,6 @@ }, "description": "2228, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0502.02.228", "maps": [], @@ -55770,8 +52556,6 @@ }, "description": "2230, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0502.02.230", "maps": [], @@ -55804,8 +52588,6 @@ }, "description": "2230A, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0502.02.230A", "maps": [], @@ -55838,8 +52620,6 @@ }, "description": "2230B, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0502.02.230B", "maps": [], @@ -55872,8 +52652,6 @@ }, "description": "2230C, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0502.02.230C", "maps": [], @@ -55906,8 +52684,6 @@ }, "description": "2260, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0502.02.260", "maps": [], @@ -55940,8 +52716,6 @@ }, "description": "2260A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0502.02.260A", "maps": [], @@ -55974,8 +52748,6 @@ }, "description": "2260B, Treppe zu 3258", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0502.02.260B", "maps": [], @@ -56008,8 +52780,6 @@ }, "description": "2261, Vorbereitungsraum CH/HS 2300", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0502.02.261", "maps": [], @@ -56042,8 +52812,6 @@ }, "description": "2262, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0502.02.262", "maps": [], @@ -56076,8 +52844,6 @@ }, "description": "2264, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0502.02.264", "maps": [], @@ -56110,8 +52876,6 @@ }, "description": "2266, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0502.02.266", "maps": [], @@ -56144,8 +52908,6 @@ }, "description": "2268, B\u00fcro IKOM", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0502.02.268", "maps": [], @@ -56178,8 +52940,6 @@ }, "description": "2270, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0502.02.270", "maps": [], @@ -56212,8 +52972,6 @@ }, "description": "2270A, Raumluft/Heizung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0502.02.270A", "maps": [], @@ -56246,8 +53004,6 @@ }, "description": "2271, Vorf\u00fchrraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0502.02.271", "maps": [], @@ -56280,8 +53036,6 @@ }, "description": "2272, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0502.02.272", "maps": [], @@ -56314,8 +53068,6 @@ }, "description": "2272A, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0502.02.272A", "maps": [], @@ -56348,8 +53100,6 @@ }, "description": "2272B, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0502.02.272B", "maps": [], @@ -56382,8 +53132,6 @@ }, "description": "2272C, Flur/Durchgang 0501", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0502.02.272C", "maps": [], @@ -56416,8 +53164,6 @@ }, "description": "3202, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0502.03.202", "maps": [], @@ -56450,8 +53196,6 @@ }, "description": "3202A, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0502.03.202A", "maps": [], @@ -56484,8 +53228,6 @@ }, "description": "3209, Cip-Raum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0502.03.209", "maps": [], @@ -56518,8 +53260,6 @@ }, "description": "3209A, Treppe zu 3209", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0502.03.209A", "maps": [], @@ -56552,8 +53292,6 @@ }, "description": "3226A, Flur zu 3226", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0502.03.226A", "maps": [], @@ -56586,8 +53324,6 @@ }, "description": "3228, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0502.03.228", "maps": [], @@ -56620,8 +53356,6 @@ }, "description": "3228A, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0502.03.228A", "maps": [], @@ -56654,8 +53388,6 @@ }, "description": "3238A, Treppe zu 3238", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0502.03.238A", "maps": [], @@ -56688,8 +53420,6 @@ }, "description": "3240c, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0502.03.240C", "maps": [], @@ -56722,8 +53452,6 @@ }, "description": "3254, Flucht Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0502.03.254", "maps": [], @@ -56756,8 +53484,6 @@ }, "description": "3259, Fluchtflur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0502.03.259", "maps": [], @@ -56790,8 +53516,6 @@ }, "description": "3262, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0502.03.262", "maps": [], @@ -56824,8 +53548,6 @@ }, "description": "4208, Speicher/Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0502.04.208", "maps": [], @@ -56858,8 +53580,6 @@ }, "description": "4209, Dachflur S\u00fcd", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0502.04.209", "maps": [], @@ -56892,8 +53612,6 @@ }, "description": "4210, Dachlager/Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0502.04.210", "maps": [], @@ -56926,8 +53644,6 @@ }, "description": "4210A, Dachflur Nord", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0502.04.210A", "maps": [], @@ -56960,8 +53676,6 @@ }, "description": "0200, Registratur (Jungakten)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0502.EG.200", "maps": [], @@ -56994,8 +53708,6 @@ }, "description": "0201, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0502.EG.201", "maps": [], @@ -57028,8 +53740,6 @@ }, "description": "0205, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0502.EG.205", "maps": [], @@ -57062,8 +53772,6 @@ }, "description": "0205A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0502.EG.205A", "maps": [], @@ -57096,8 +53804,6 @@ }, "description": "0206, Poststelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0502.EG.206", "maps": [], @@ -57130,8 +53836,6 @@ }, "description": "0206A/G, Galerie Poststelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0502.EG.206A", "maps": [], @@ -57164,8 +53868,6 @@ }, "description": "0209, Registratur (Altakten)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0502.EG.209", "maps": [], @@ -57198,8 +53900,6 @@ }, "description": "0210, Poststelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0502.EG.210", "maps": [], @@ -57232,8 +53932,6 @@ }, "description": "0210A/G, Galerie Poststelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0502.EG.210A", "maps": [], @@ -57266,8 +53964,6 @@ }, "description": "0210B, Treppe Poststelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0502.EG.210B", "maps": [], @@ -57300,8 +53996,6 @@ }, "description": "0213, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0502.EG.213", "maps": [], @@ -57334,8 +54028,6 @@ }, "description": "0219, Foyer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0502.EG.219", "maps": [], @@ -57448,8 +54140,6 @@ }, "description": "0221, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0502.EG.221", "maps": [], @@ -57482,8 +54172,6 @@ }, "description": "0226, B\u00fcro Werkstattleitung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0502.EG.226", "maps": [], @@ -57516,8 +54204,6 @@ }, "description": "0230, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0502.EG.230", "maps": [], @@ -57550,8 +54236,6 @@ }, "description": "0230A, Eingang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0502.EG.230A", "maps": [], @@ -57584,8 +54268,6 @@ }, "description": "0235, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0502.EG.235", "maps": [], @@ -57618,8 +54300,6 @@ }, "description": "0244, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0502.EG.244", "maps": [], @@ -57652,8 +54332,6 @@ }, "description": "0245, Flur/Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0502.EG.245", "maps": [], @@ -57686,8 +54364,6 @@ }, "description": "0246, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0502.EG.246", "maps": [], @@ -57720,8 +54396,6 @@ }, "description": "0251 ZG, Lager ZA4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0502.EG.251", "maps": [], @@ -57754,8 +54428,6 @@ }, "description": "0256 ZG, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0502.EG.256", "maps": [], @@ -57788,8 +54460,6 @@ }, "description": "0257 ZG, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0502.EG.257", "maps": [], @@ -57822,8 +54492,6 @@ }, "description": "0259 ZG, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0502.EG.259", "maps": [], @@ -57856,8 +54524,6 @@ }, "description": "0261, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0502.EG.261", "maps": [], @@ -57890,8 +54556,6 @@ }, "description": "0261A ZG, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0502.EG.261A", "maps": [], @@ -57924,8 +54588,6 @@ }, "description": "0262, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0502.EG.262", "maps": [], @@ -57958,8 +54620,6 @@ }, "description": "0263, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0502.EG.263", "maps": [], @@ -57992,8 +54652,6 @@ }, "description": "0264, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0502.EG.264", "maps": [], @@ -58026,8 +54684,6 @@ }, "description": "0266, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0502.EG.266", "maps": [], @@ -58060,8 +54716,6 @@ }, "description": "0266a ZG, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0502.EG.266A", "maps": [], @@ -58094,8 +54748,6 @@ }, "description": "0266 ZG, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0502.EG.266B", "maps": [], @@ -58128,8 +54780,6 @@ }, "description": "0269, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0502.EG.269", "maps": [], @@ -58162,8 +54812,6 @@ }, "description": "0270, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0502.EG.270", "maps": [], @@ -58196,8 +54844,6 @@ }, "description": "0272, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0502.EG.272", "maps": [], @@ -58230,8 +54876,6 @@ }, "description": "0273, Garage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0502.EG.273", "maps": [], @@ -58264,8 +54908,6 @@ }, "description": "-1201, Flur 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.201", "maps": [], @@ -58298,8 +54940,6 @@ }, "description": "-1201A, Flur 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.201A", "maps": [], @@ -58332,8 +54972,6 @@ }, "description": "-1201B, Eingangsflur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.201B", "maps": [], @@ -58366,8 +55004,6 @@ }, "description": "-1202, Werkstatt f. Medientechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.202", "maps": [], @@ -58400,8 +55036,6 @@ }, "description": "-1205, Raumlufttechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.205", "maps": [], @@ -58434,8 +55068,6 @@ }, "description": "-1206, E-Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.206", "maps": [], @@ -58468,8 +55100,6 @@ }, "description": "-1207, Wasch./Dusch./WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.207", "maps": [], @@ -58502,8 +55132,6 @@ }, "description": "-1208, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.208", "maps": [], @@ -58536,8 +55164,6 @@ }, "description": "-1209, Werkstatt f. Heiz. u. Klimatechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.209", "maps": [], @@ -58570,8 +55196,6 @@ }, "description": "-1210, Meisterb\u00fcro Elektrotechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.210", "maps": [], @@ -58604,8 +55228,6 @@ }, "description": "-1211, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.211", "maps": [], @@ -58638,8 +55260,6 @@ }, "description": "-1212, Aufenthalt Elektrotechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.212", "maps": [], @@ -58672,8 +55292,6 @@ }, "description": "-1213, Aufenthalt/Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.213", "maps": [], @@ -58706,8 +55324,6 @@ }, "description": "-1214, Werkstatt Regeltechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.214", "maps": [], @@ -58740,8 +55356,6 @@ }, "description": "-1215, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.215", "maps": [], @@ -58774,8 +55388,6 @@ }, "description": "-1216, Werkstatt Regeltechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.216", "maps": [], @@ -58808,8 +55420,6 @@ }, "description": "-1217, Meisterb\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.217", "maps": [], @@ -58842,8 +55452,6 @@ }, "description": "-1218, Meisterb\u00fcro Regeltechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.218", "maps": [], @@ -58876,8 +55484,6 @@ }, "description": "-1218A, Werkstatt Regeltechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.218A", "maps": [], @@ -58910,8 +55516,6 @@ }, "description": "-1221, Lager Heizungswerkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.221", "maps": [], @@ -58944,8 +55548,6 @@ }, "description": "K224, Pumpenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.224", "maps": [], @@ -58978,8 +55580,6 @@ }, "description": "K226, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.226", "maps": [], @@ -59012,8 +55612,6 @@ }, "description": "-1227, Lager Heizungswerkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.227", "maps": [], @@ -59046,8 +55644,6 @@ }, "description": "-1229, Lager Heizungswerkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.229", "maps": [], @@ -59080,8 +55676,6 @@ }, "description": "-1231, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.231", "maps": [], @@ -59114,8 +55708,6 @@ }, "description": "K232, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.232", "maps": [], @@ -59148,8 +55740,6 @@ }, "description": "-1235, Lager Heizungswerkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.235", "maps": [], @@ -59182,8 +55772,6 @@ }, "description": "-1236, Technik-/ Maschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.236", "maps": [], @@ -59216,8 +55804,6 @@ }, "description": "-1236A, Raumlufttechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.236A", "maps": [], @@ -59250,8 +55836,6 @@ }, "description": "-1236B, Raumlufttechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.236B", "maps": [], @@ -59284,8 +55868,6 @@ }, "description": "-1236C, Raumlufttechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.236C", "maps": [], @@ -59318,8 +55900,6 @@ }, "description": "-1237, Waschraum u. WC f\u00fcr alle Werkst\u00e4tten", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.237", "maps": [], @@ -59352,8 +55932,6 @@ }, "description": "-1239, Umkleide f\u00fcr alle Werkst\u00e4tten", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.239", "maps": [], @@ -59386,8 +55964,6 @@ }, "description": "-1239A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.239A", "maps": [], @@ -59420,8 +55996,6 @@ }, "description": "-1241, Lager Elektrowerkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.241", "maps": [], @@ -59454,8 +56028,6 @@ }, "description": "-1244, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.244", "maps": [], @@ -59488,8 +56060,6 @@ }, "description": "-1244A, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.244A", "maps": [], @@ -59522,8 +56092,6 @@ }, "description": "-1245, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.245", "maps": [], @@ -59556,8 +56124,6 @@ }, "description": "-1247, Lager Regelwerkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.247", "maps": [], @@ -59590,8 +56156,6 @@ }, "description": "-1247a, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.247A", "maps": [], @@ -59624,8 +56188,6 @@ }, "description": "-1247b, Technikraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.247B", "maps": [], @@ -59658,8 +56220,6 @@ }, "description": "-1247c, Technikraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.247C", "maps": [], @@ -59692,8 +56252,6 @@ }, "description": "-1247d, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.247D", "maps": [], @@ -59726,8 +56284,6 @@ }, "description": "-1247e, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.247E", "maps": [], @@ -59760,8 +56316,6 @@ }, "description": "-1247f, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.247F", "maps": [], @@ -59794,8 +56348,6 @@ }, "description": "-1249, Umkleide", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.249", "maps": [], @@ -59828,8 +56380,6 @@ }, "description": "-1249A, Umkleide", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.249A", "maps": [], @@ -59862,8 +56412,6 @@ }, "description": "-1255, Werkstatt Sanit\u00e4r", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.255", "maps": [], @@ -59896,8 +56444,6 @@ }, "description": "-1255a, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.255A", "maps": [], @@ -59930,8 +56476,6 @@ }, "description": "-1257, Aufenthalt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.257", "maps": [], @@ -59964,8 +56508,6 @@ }, "description": "-1257a, B\u00fcro/Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.257A", "maps": [], @@ -59998,8 +56540,6 @@ }, "description": "-1260, Flur 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.260", "maps": [], @@ -60032,8 +56572,6 @@ }, "description": "-1260a, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.260A", "maps": [], @@ -60066,8 +56604,6 @@ }, "description": "-1262, Flur 7", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.262", "maps": [], @@ -60100,8 +56636,6 @@ }, "description": "-1263, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.263", "maps": [], @@ -60134,8 +56668,6 @@ }, "description": "-1264, Flur/Treppe 8", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.264", "maps": [], @@ -60168,8 +56700,6 @@ }, "description": "-1266, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.266", "maps": [], @@ -60202,8 +56732,6 @@ }, "description": "-1267, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.267", "maps": [], @@ -60236,8 +56764,6 @@ }, "description": "-1275, Heiztechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.275", "maps": [], @@ -60270,8 +56796,6 @@ }, "description": "-1276, Flur 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.276", "maps": [], @@ -60304,8 +56828,6 @@ }, "description": "-1277, Flur/Treppe 6", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.277", "maps": [], @@ -60338,8 +56860,6 @@ }, "description": "-1279, Flur 5", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.279", "maps": [], @@ -60372,8 +56892,6 @@ }, "description": "-1285, Versorgungsgang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0502.U1.285", "maps": [], @@ -60406,8 +56924,6 @@ }, "description": "-2201, Installationskanal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "0502.U2.201", "maps": [], @@ -60440,8 +56956,6 @@ }, "description": "1310, Verbindungsflur zu 0502", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0503.01.310", "maps": [], @@ -60474,8 +56988,6 @@ }, "description": "1315, Treppe/Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0503.01.315", "maps": [], @@ -60508,8 +57020,6 @@ }, "description": "1315a, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0503.01.315A", "maps": [], @@ -60542,8 +57052,6 @@ }, "description": "1316A, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0503.01.316A", "maps": [], @@ -60576,8 +57084,6 @@ }, "description": "1346, Beh.-WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0503.01.346", "maps": [], @@ -60610,8 +57116,6 @@ }, "description": "1352, Lager/Server", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0503.01.352", "maps": [], @@ -60644,8 +57148,6 @@ }, "description": "1355, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0503.01.355", "maps": [], @@ -60678,8 +57180,6 @@ }, "description": "1363, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0503.01.363", "maps": [], @@ -60712,8 +57212,6 @@ }, "description": "1364, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0503.01.364", "maps": [], @@ -60746,8 +57244,6 @@ }, "description": "1364A, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0503.01.364A", "maps": [], @@ -60780,8 +57276,6 @@ }, "description": "1364B, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0503.01.364B", "maps": [], @@ -60814,8 +57308,6 @@ }, "description": "1364C, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0503.01.364C", "maps": [], @@ -60848,8 +57340,6 @@ }, "description": "1364D, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0503.01.364D", "maps": [], @@ -60882,8 +57372,6 @@ }, "description": "1374, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0503.01.374", "maps": [], @@ -60916,8 +57404,6 @@ }, "description": "1374a, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0503.01.374A", "maps": [], @@ -60950,8 +57436,6 @@ }, "description": "1374b, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0503.01.374B", "maps": [], @@ -60984,8 +57468,6 @@ }, "description": "1374C, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0503.01.374C", "maps": [], @@ -61018,8 +57500,6 @@ }, "description": "1374D, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0503.01.374D", "maps": [], @@ -61052,8 +57532,6 @@ }, "description": "1374E, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0503.01.374E", "maps": [], @@ -61086,8 +57564,6 @@ }, "description": "1375A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0503.01.375A", "maps": [], @@ -61203,8 +57679,6 @@ }, "description": "2300a ZG, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0503.02.300A", "maps": [], @@ -61237,8 +57711,6 @@ }, "description": "2301, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0503.02.301", "maps": [], @@ -61271,8 +57743,6 @@ }, "description": "2302, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0503.02.302", "maps": [], @@ -61305,8 +57775,6 @@ }, "description": "2303, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0503.02.303", "maps": [], @@ -61339,8 +57807,6 @@ }, "description": "2303a ZG, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0503.02.303A", "maps": [], @@ -61373,8 +57839,6 @@ }, "description": "2303b ZG, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0503.02.303B", "maps": [], @@ -61407,8 +57871,6 @@ }, "description": "2303C, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0503.02.303C", "maps": [], @@ -61441,8 +57903,6 @@ }, "description": "2304, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0503.02.304", "maps": [], @@ -61475,8 +57935,6 @@ }, "description": "2305, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0503.02.305", "maps": [], @@ -61509,8 +57967,6 @@ }, "description": "2305A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0503.02.305A", "maps": [], @@ -61543,8 +57999,6 @@ }, "description": "2306, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0503.02.306", "maps": [], @@ -61577,8 +58031,6 @@ }, "description": "2322C, Teek\u00fcche / Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0503.02.322C", "maps": [], @@ -61611,8 +58063,6 @@ }, "description": "2324C, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0503.02.324C", "maps": [], @@ -61645,8 +58095,6 @@ }, "description": "2328C, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0503.02.328C", "maps": [], @@ -61679,8 +58127,6 @@ }, "description": "2346A, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0503.02.346A", "maps": [], @@ -61713,8 +58159,6 @@ }, "description": "2346B, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0503.02.346B", "maps": [], @@ -61747,8 +58191,6 @@ }, "description": "2349, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0503.02.349", "maps": [], @@ -61781,8 +58223,6 @@ }, "description": "2350, Veranstaltung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0503.02.350", "maps": [], @@ -61815,8 +58255,6 @@ }, "description": "2358, LRZ-Verteilerknoten", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0503.02.358", "maps": [], @@ -61849,8 +58287,6 @@ }, "description": "2366, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0503.02.366", "maps": [], @@ -61883,8 +58319,6 @@ }, "description": "2366A, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0503.02.366A", "maps": [], @@ -61917,8 +58351,6 @@ }, "description": "2366B, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0503.02.366B", "maps": [], @@ -61951,8 +58383,6 @@ }, "description": "2366C, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0503.02.366C", "maps": [], @@ -61985,8 +58415,6 @@ }, "description": "2366D, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0503.02.366D", "maps": [], @@ -62019,8 +58447,6 @@ }, "description": "2366E, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0503.02.366E", "maps": [], @@ -62053,8 +58479,6 @@ }, "description": "2369, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0503.02.369", "maps": [], @@ -62167,8 +58591,6 @@ }, "description": "2371, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0503.02.371", "maps": [], @@ -62201,8 +58623,6 @@ }, "description": "3300, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0503.03.300", "maps": [], @@ -62235,8 +58655,6 @@ }, "description": "3301, Treppe/Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0503.03.301", "maps": [], @@ -62269,8 +58687,6 @@ }, "description": "3303, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0503.03.303", "maps": [], @@ -62303,8 +58719,6 @@ }, "description": "3304A, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0503.03.304A", "maps": [], @@ -62337,8 +58751,6 @@ }, "description": "3304B, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0503.03.304B", "maps": [], @@ -62371,8 +58783,6 @@ }, "description": "3305, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0503.03.305", "maps": [], @@ -62405,8 +58815,6 @@ }, "description": "3306, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0503.03.306", "maps": [], @@ -62439,8 +58847,6 @@ }, "description": "3308, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0503.03.308", "maps": [], @@ -62473,8 +58879,6 @@ }, "description": "3309, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0503.03.309", "maps": [], @@ -62507,8 +58911,6 @@ }, "description": "3380, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0503.03.380", "maps": [], @@ -62541,8 +58943,6 @@ }, "description": "3380a, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0503.03.380A", "maps": [], @@ -62575,8 +58975,6 @@ }, "description": "3380B, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0503.03.380B", "maps": [], @@ -62609,8 +59007,6 @@ }, "description": "4301, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0503.04.301", "maps": [], @@ -62643,8 +59039,6 @@ }, "description": "4301A, M\u00f6bellager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0503.04.301A", "maps": [], @@ -62677,8 +59071,6 @@ }, "description": "4301C, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0503.04.301C", "maps": [], @@ -62711,8 +59103,6 @@ }, "description": "4302, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0503.04.302", "maps": [], @@ -62745,8 +59135,6 @@ }, "description": "4303, Verbindungsgang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0503.04.303", "maps": [], @@ -62779,8 +59167,6 @@ }, "description": "4304, Verbindungsgang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0503.04.304", "maps": [], @@ -62813,8 +59199,6 @@ }, "description": "4306A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0503.04.306A", "maps": [], @@ -62847,8 +59231,6 @@ }, "description": "4306B, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0503.04.306B", "maps": [], @@ -62881,8 +59263,6 @@ }, "description": "4308, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0503.04.308", "maps": [], @@ -62915,8 +59295,6 @@ }, "description": "4308A, Aufzug Masch. Raum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0503.04.308A", "maps": [], @@ -62949,8 +59327,6 @@ }, "description": "4314, RLT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0503.04.314", "maps": [], @@ -62983,8 +59359,6 @@ }, "description": "4317, Turmtreppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0503.04.317", "maps": [], @@ -63017,8 +59391,6 @@ }, "description": "4359B, Haustechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0503.04.359B", "maps": [], @@ -63051,8 +59423,6 @@ }, "description": "4364A, Archiv max. Nutzlastbegrenzung 1,0kN/m\u00b2/ 10", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0503.04.364A", "maps": [], @@ -63085,8 +59455,6 @@ }, "description": "4364B, Archiv max. Nutzlastbegrenzung 1,0kN/m\u00b2/ 10", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0503.04.364B", "maps": [], @@ -63119,8 +59487,6 @@ }, "description": "4364C, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0503.04.364C", "maps": [], @@ -63153,8 +59519,6 @@ }, "description": "4364D, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0503.04.364D", "maps": [], @@ -63187,8 +59551,6 @@ }, "description": "5316, Turmgalerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0503.05.316", "maps": [], @@ -63221,8 +59583,6 @@ }, "description": "5317, Turmtreppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0503.05.317", "maps": [], @@ -63255,8 +59615,6 @@ }, "description": "5318, Turmterrasse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0503.05.318", "maps": [], @@ -63289,8 +59647,6 @@ }, "description": "6317, Turmtreppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "0503.06.317", "maps": [], @@ -63323,8 +59679,6 @@ }, "description": "7316, Turmgalerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "07", "id": "0503.07.316", "maps": [], @@ -63357,8 +59711,6 @@ }, "description": "7317, Turmdachtreppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "07", "id": "0503.07.317", "maps": [], @@ -63391,8 +59743,6 @@ }, "description": "8316, Turmdachterrasse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "08", "id": "0503.08.316", "maps": [], @@ -63425,8 +59775,6 @@ }, "description": "0307, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0503.EG.307", "maps": [], @@ -63459,8 +59807,6 @@ }, "description": "0310, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0503.EG.310", "maps": [], @@ -63493,8 +59839,6 @@ }, "description": "0314, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0503.EG.314", "maps": [], @@ -63527,8 +59871,6 @@ }, "description": "0314a, Lager unter Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0503.EG.314A", "maps": [], @@ -63561,8 +59903,6 @@ }, "description": "0315, Treppenhaus Turm", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0503.EG.315", "maps": [], @@ -63595,8 +59935,6 @@ }, "description": "0315a, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0503.EG.315A", "maps": [], @@ -63629,8 +59967,6 @@ }, "description": "0316A, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0503.EG.316A", "maps": [], @@ -63663,8 +59999,6 @@ }, "description": "0316B, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0503.EG.316B", "maps": [], @@ -63697,8 +60031,6 @@ }, "description": "0317, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0503.EG.317", "maps": [], @@ -63731,8 +60063,6 @@ }, "description": "0318, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0503.EG.318", "maps": [], @@ -63765,8 +60095,6 @@ }, "description": "0319, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0503.EG.319", "maps": [], @@ -63799,8 +60127,6 @@ }, "description": "0346A, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0503.EG.346A", "maps": [], @@ -63833,8 +60159,6 @@ }, "description": "0346B, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0503.EG.346B", "maps": [], @@ -63867,8 +60191,6 @@ }, "description": "0348, Treppenhaus Goldener Engel", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0503.EG.348", "maps": [], @@ -63901,8 +60223,6 @@ }, "description": "0348a, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0503.EG.348A", "maps": [], @@ -63935,8 +60255,6 @@ }, "description": "0351, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0503.EG.351", "maps": [], @@ -63969,8 +60287,6 @@ }, "description": "0353, L\u00fcftungsanlage f. H\u00f6rsaal 0360", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0503.EG.353", "maps": [], @@ -64003,8 +60319,6 @@ }, "description": "0353a, Durchgang zu 0353", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0503.EG.353A", "maps": [], @@ -64037,8 +60351,6 @@ }, "description": "0353b, Elektro Verteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0503.EG.353B", "maps": [], @@ -64157,8 +60469,6 @@ }, "description": "0363, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0503.EG.363", "maps": [], @@ -64191,8 +60501,6 @@ }, "description": "0364, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0503.EG.364", "maps": [], @@ -64225,8 +60533,6 @@ }, "description": "0364A, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0503.EG.364A", "maps": [], @@ -64259,8 +60565,6 @@ }, "description": "0364B, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0503.EG.364B", "maps": [], @@ -64293,8 +60597,6 @@ }, "description": "0364C, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0503.EG.364C", "maps": [], @@ -64327,8 +60629,6 @@ }, "description": "0364D, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0503.EG.364D", "maps": [], @@ -64361,8 +60661,6 @@ }, "description": "0371B, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0503.EG.371B", "maps": [], @@ -64395,8 +60693,6 @@ }, "description": "0371C, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0503.EG.371C", "maps": [], @@ -64429,8 +60725,6 @@ }, "description": "0372, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0503.EG.372", "maps": [], @@ -64463,8 +60757,6 @@ }, "description": "0372A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0503.EG.372A", "maps": [], @@ -64497,8 +60789,6 @@ }, "description": "-1301, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0503.U1.301", "maps": [], @@ -64531,8 +60821,6 @@ }, "description": "-1303, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0503.U1.303", "maps": [], @@ -64565,8 +60853,6 @@ }, "description": "-1304b, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0503.U1.304B", "maps": [], @@ -64599,8 +60885,6 @@ }, "description": "-1307, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0503.U1.307", "maps": [], @@ -64633,8 +60917,6 @@ }, "description": "-1308, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0503.U1.308", "maps": [], @@ -64667,8 +60949,6 @@ }, "description": "-1308a, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0503.U1.308A", "maps": [], @@ -64701,8 +60981,6 @@ }, "description": "-1308b, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0503.U1.308B", "maps": [], @@ -64735,8 +61013,6 @@ }, "description": "-1326, 3. Bauabschnitt bis ca. Ende Aug. 2019", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0503.U1.326", "maps": [], @@ -64769,8 +61045,6 @@ }, "description": "-1346, Haustechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0503.U1.346", "maps": [], @@ -64803,8 +61077,6 @@ }, "description": "-1352, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0503.U1.352", "maps": [], @@ -64837,8 +61109,6 @@ }, "description": "-1352a, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0503.U1.352A", "maps": [], @@ -64871,8 +61141,6 @@ }, "description": "-1353, Installationsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0503.U1.353", "maps": [], @@ -64905,8 +61173,6 @@ }, "description": "-1355, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0503.U1.355", "maps": [], @@ -64939,8 +61205,6 @@ }, "description": "-1356A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0503.U1.356A", "maps": [], @@ -64973,8 +61237,6 @@ }, "description": "-1356B, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0503.U1.356B", "maps": [], @@ -65007,8 +61269,6 @@ }, "description": "-1356C, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0503.U1.356C", "maps": [], @@ -65041,8 +61301,6 @@ }, "description": "-1356D, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0503.U1.356D", "maps": [], @@ -65075,8 +61333,6 @@ }, "description": "-1357, Installationsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0503.U1.357", "maps": [], @@ -65109,8 +61365,6 @@ }, "description": "-1358, RLT-Zentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0503.U1.358", "maps": [], @@ -65143,8 +61397,6 @@ }, "description": "-1360, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0503.U1.360", "maps": [], @@ -65177,8 +61429,6 @@ }, "description": "-1363, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0503.U1.363", "maps": [], @@ -65211,8 +61461,6 @@ }, "description": "-1364, NSHV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0503.U1.364", "maps": [], @@ -65245,8 +61493,6 @@ }, "description": "-1364A, MS", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0503.U1.364A", "maps": [], @@ -65279,8 +61525,6 @@ }, "description": "-1364B, Trafo", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0503.U1.364B", "maps": [], @@ -65313,8 +61557,6 @@ }, "description": "-1364C, Trafo", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0503.U1.364C", "maps": [], @@ -65347,8 +61589,6 @@ }, "description": "-1365, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0503.U1.365", "maps": [], @@ -65381,8 +61621,6 @@ }, "description": "-1367, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0503.U1.367", "maps": [], @@ -65415,8 +61653,6 @@ }, "description": "-1368, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0503.U1.368", "maps": [], @@ -65449,8 +61685,6 @@ }, "description": "-1368A, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0503.U1.368A", "maps": [], @@ -65483,8 +61717,6 @@ }, "description": "-1369, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0503.U1.369", "maps": [], @@ -65517,8 +61749,6 @@ }, "description": "-1371, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0503.U1.371", "maps": [], @@ -65551,8 +61781,6 @@ }, "description": "-1372, Sprinkler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0503.U1.372", "maps": [], @@ -65585,8 +61813,6 @@ }, "description": "-1373, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0503.U1.373", "maps": [], @@ -65619,8 +61845,6 @@ }, "description": "-1373A, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0503.U1.373A", "maps": [], @@ -65653,8 +61877,6 @@ }, "description": "-1374, Sprinkler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0503.U1.374", "maps": [], @@ -65687,8 +61909,6 @@ }, "description": "-1375a, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0503.U1.375A", "maps": [], @@ -65721,8 +61941,6 @@ }, "description": "-1376, B\u00fcro Fa. Siemens", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0503.U1.376", "maps": [], @@ -65755,8 +61973,6 @@ }, "description": "-1379, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0503.U1.379", "maps": [], @@ -65789,8 +62005,6 @@ }, "description": "-1379a, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0503.U1.379A", "maps": [], @@ -65823,8 +62037,6 @@ }, "description": "-2301, Installationskanal 0503", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "0503.U2.304", "maps": [], @@ -66001,8 +62213,6 @@ }, "description": "1404, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0504.01.404", "maps": [], @@ -66035,8 +62245,6 @@ }, "description": "1406, Beh.-WC / Wickeltisch", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0504.01.406", "maps": [], @@ -66069,8 +62277,6 @@ }, "description": "1408, Elektroinstallationsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0504.01.408", "maps": [], @@ -66103,8 +62309,6 @@ }, "description": "1410, Flur 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0504.01.410", "maps": [], @@ -66137,8 +62341,6 @@ }, "description": "1412, Treppenhaus 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0504.01.412", "maps": [], @@ -66171,8 +62373,6 @@ }, "description": "1414, Verbindungsgang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0504.01.414", "maps": [], @@ -66205,8 +62405,6 @@ }, "description": "1426, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0504.01.426", "maps": [], @@ -66239,8 +62437,6 @@ }, "description": "1426A, Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0504.01.426A", "maps": [], @@ -66273,8 +62469,6 @@ }, "description": "1430, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0504.01.430", "maps": [], @@ -66307,8 +62501,6 @@ }, "description": "1430A, Elektroinstallationsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0504.01.430A", "maps": [], @@ -66341,8 +62533,6 @@ }, "description": "1432, Flur 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0504.01.432", "maps": [], @@ -66375,8 +62565,6 @@ }, "description": "1434, Treppenhaus 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0504.01.434", "maps": [], @@ -66409,8 +62597,6 @@ }, "description": "1444, Aufzugsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0504.01.444", "maps": [], @@ -66443,8 +62629,6 @@ }, "description": "1448, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0504.01.448", "maps": [], @@ -66477,8 +62661,6 @@ }, "description": "1448A, Aufzugsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0504.01.448A", "maps": [], @@ -66511,8 +62693,6 @@ }, "description": "1451, Flur 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0504.01.451", "maps": [], @@ -66545,8 +62725,6 @@ }, "description": "2403, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0504.02.403", "maps": [], @@ -66579,8 +62757,6 @@ }, "description": "2404a, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0504.02.404A", "maps": [], @@ -66613,8 +62789,6 @@ }, "description": "2404B, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0504.02.404B", "maps": [], @@ -66647,8 +62821,6 @@ }, "description": "2408, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0504.02.408", "maps": [], @@ -66681,8 +62853,6 @@ }, "description": "2410, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0504.02.410", "maps": [], @@ -66715,8 +62885,6 @@ }, "description": "2414, Elektroinstallationsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0504.02.414", "maps": [], @@ -66749,8 +62917,6 @@ }, "description": "2416, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0504.02.416", "maps": [], @@ -66783,8 +62949,6 @@ }, "description": "2426, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0504.02.426", "maps": [], @@ -66817,8 +62981,6 @@ }, "description": "2426A, Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0504.02.426A", "maps": [], @@ -66851,8 +63013,6 @@ }, "description": "2428, Elektroinstallationsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0504.02.428", "maps": [], @@ -66885,8 +63045,6 @@ }, "description": "2430, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0504.02.430", "maps": [], @@ -66919,8 +63077,6 @@ }, "description": "2432, Flur 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0504.02.432", "maps": [], @@ -66953,8 +63109,6 @@ }, "description": "2432a, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0504.02.432A", "maps": [], @@ -66987,8 +63141,6 @@ }, "description": "2432b, Aufzugsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0504.02.432B", "maps": [], @@ -67021,8 +63173,6 @@ }, "description": "2434, Treppenhaus 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0504.02.434", "maps": [], @@ -67055,8 +63205,6 @@ }, "description": "2434a, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0504.02.434A", "maps": [], @@ -67089,8 +63237,6 @@ }, "description": "3404, \u00dcbungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0504.03.404", "maps": [], @@ -67123,8 +63269,6 @@ }, "description": "3408, Elektroinstallationsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0504.03.408", "maps": [], @@ -67157,8 +63301,6 @@ }, "description": "3412, Flur/Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0504.03.412", "maps": [], @@ -67191,8 +63333,6 @@ }, "description": "3414, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0504.03.414", "maps": [], @@ -67225,8 +63365,6 @@ }, "description": "3428/1, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0504.03.428A", "maps": [], @@ -67259,8 +63397,6 @@ }, "description": "3428/2, Elektroinstallationsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0504.03.428B", "maps": [], @@ -67293,8 +63429,6 @@ }, "description": "3429, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0504.03.429", "maps": [], @@ -67327,8 +63461,6 @@ }, "description": "3430, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0504.03.430", "maps": [], @@ -67361,8 +63493,6 @@ }, "description": "3432, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0504.03.432", "maps": [], @@ -67395,8 +63525,6 @@ }, "description": "432a, Aufzugsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0504.03.432A", "maps": [], @@ -67429,8 +63557,6 @@ }, "description": "0406, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0504.EG.406", "maps": [], @@ -67463,8 +63589,6 @@ }, "description": "0408, WC-Damen mit Vorraum u. Dusche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0504.EG.408", "maps": [], @@ -67497,8 +63621,6 @@ }, "description": "0408a, Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0504.EG.408A", "maps": [], @@ -67531,8 +63653,6 @@ }, "description": "0410, Elektroraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0504.EG.410", "maps": [], @@ -67565,8 +63685,6 @@ }, "description": "0412, Flur 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0504.EG.412", "maps": [], @@ -67599,8 +63717,6 @@ }, "description": "0413, Flur 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0504.EG.413", "maps": [], @@ -67633,8 +63749,6 @@ }, "description": "0416, Treppenhaus 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0504.EG.416", "maps": [], @@ -67667,8 +63781,6 @@ }, "description": "0426, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0504.EG.426", "maps": [], @@ -67701,8 +63813,6 @@ }, "description": "0426A, Elektroinstallationsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0504.EG.426A", "maps": [], @@ -67735,8 +63845,6 @@ }, "description": "0428, WC-Herren mit Dusche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0504.EG.428", "maps": [], @@ -67769,8 +63877,6 @@ }, "description": "0430, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0504.EG.430", "maps": [], @@ -67803,8 +63909,6 @@ }, "description": "0435, Treppenhaus 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0504.EG.435", "maps": [], @@ -67837,8 +63941,6 @@ }, "description": "0436, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0504.EG.436", "maps": [], @@ -67871,8 +63973,6 @@ }, "description": "0437, Treppenhaus 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0504.EG.437", "maps": [], @@ -67905,8 +64005,6 @@ }, "description": "0448, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0504.EG.448", "maps": [], @@ -67939,8 +64037,6 @@ }, "description": "-1401, Installation/Stahlpodest", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0504.U1.401", "maps": [], @@ -67973,8 +64069,6 @@ }, "description": "-1402, Heizungsverteilung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0504.U1.402", "maps": [], @@ -68007,8 +64101,6 @@ }, "description": "-1403, Wasseranschluss", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0504.U1.403", "maps": [], @@ -68041,8 +64133,6 @@ }, "description": "K414, Flur 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0504.U1.414", "maps": [], @@ -68075,8 +64165,6 @@ }, "description": "K416, Treppenhaus 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0504.U1.416", "maps": [], @@ -68109,8 +64197,6 @@ }, "description": "-1419, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0504.U1.419", "maps": [], @@ -68143,8 +64229,6 @@ }, "description": "-1422, Pausenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0504.U1.422", "maps": [], @@ -68177,8 +64261,6 @@ }, "description": "-1424, Lager, Malerfirma", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0504.U1.424", "maps": [], @@ -68211,8 +64293,6 @@ }, "description": "-1424a, Maurermannschaft", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0504.U1.424A", "maps": [], @@ -68245,8 +64325,6 @@ }, "description": "-1424b, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0504.U1.424B", "maps": [], @@ -68279,8 +64357,6 @@ }, "description": "-1426, Bauamt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0504.U1.426", "maps": [], @@ -68313,8 +64389,6 @@ }, "description": "-1426A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0504.U1.426A", "maps": [], @@ -68347,8 +64421,6 @@ }, "description": "-1427, Heizzentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0504.U1.427", "maps": [], @@ -68381,8 +64453,6 @@ }, "description": "-1427A, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0504.U1.427A", "maps": [], @@ -68415,8 +64485,6 @@ }, "description": "-1429, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0504.U1.429", "maps": [], @@ -68449,8 +64517,6 @@ }, "description": "-1430, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0504.U1.430", "maps": [], @@ -68483,8 +64549,6 @@ }, "description": "430a, Lager unter Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0504.U1.430A", "maps": [], @@ -68517,8 +64581,6 @@ }, "description": "-1431, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0504.U1.431", "maps": [], @@ -68551,8 +64613,6 @@ }, "description": "-1484, Aufzugsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0504.U1.484", "maps": [], @@ -68585,8 +64645,6 @@ }, "description": "-2424a, Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "0504.U2.424A", "maps": [], @@ -68619,8 +64677,6 @@ }, "description": "1515, EDV/Telecom", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0505.01.515", "maps": [], @@ -68653,8 +64709,6 @@ }, "description": "1521, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0505.01.521", "maps": [], @@ -68687,8 +64741,6 @@ }, "description": "1522, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0505.01.522", "maps": [], @@ -68721,8 +64773,6 @@ }, "description": "1523, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0505.01.523", "maps": [], @@ -68755,8 +64805,6 @@ }, "description": "1526, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0505.01.526A", "maps": [], @@ -68789,8 +64837,6 @@ }, "description": "1527, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0505.01.527A", "maps": [], @@ -68823,8 +64869,6 @@ }, "description": "1548, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0505.01.548", "maps": [], @@ -68857,8 +64901,6 @@ }, "description": "1580, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0505.01.580", "maps": [], @@ -68891,8 +64933,6 @@ }, "description": "1580.1, HLS-Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0505.01.580A", "maps": [], @@ -68925,8 +64965,6 @@ }, "description": "1580.2, HLS-Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0505.01.580B", "maps": [], @@ -68959,8 +64997,6 @@ }, "description": "1580.3, ELT-Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0505.01.580C", "maps": [], @@ -68993,8 +65029,6 @@ }, "description": "1581, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0505.01.581", "maps": [], @@ -69027,8 +65061,6 @@ }, "description": "1582, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0505.01.582", "maps": [], @@ -69061,8 +65093,6 @@ }, "description": "1582.1, ELT-Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0505.01.582A", "maps": [], @@ -69095,8 +65125,6 @@ }, "description": "1582.2, HLS-Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0505.01.582B", "maps": [], @@ -69129,8 +65157,6 @@ }, "description": "1582.3, HLS-Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0505.01.582C", "maps": [], @@ -69163,8 +65189,6 @@ }, "description": "1583, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0505.01.583", "maps": [], @@ -69197,8 +65221,6 @@ }, "description": "1584, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0505.01.584", "maps": [], @@ -69231,8 +65253,6 @@ }, "description": "1585, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0505.01.585", "maps": [], @@ -69265,8 +65285,6 @@ }, "description": "1586, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0505.01.586", "maps": [], @@ -69299,8 +65317,6 @@ }, "description": "1587, ELT-Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0505.01.587", "maps": [], @@ -69333,8 +65349,6 @@ }, "description": "1588, HLS-Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0505.01.588", "maps": [], @@ -69367,8 +65381,6 @@ }, "description": "1590, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0505.01.590", "maps": [], @@ -69401,8 +65413,6 @@ }, "description": "1591, Treppenturm", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0505.01.591", "maps": [], @@ -69435,8 +65445,6 @@ }, "description": "1591, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0505.01.593", "maps": [], @@ -69469,8 +65477,6 @@ }, "description": "1594, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0505.01.594", "maps": [], @@ -69503,8 +65509,6 @@ }, "description": "1596, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0505.01.596", "maps": [], @@ -69537,8 +65541,6 @@ }, "description": "2585, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0505.02.285", "maps": [], @@ -69571,8 +65573,6 @@ }, "description": "2521, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0505.02.521", "maps": [], @@ -69605,8 +65605,6 @@ }, "description": "2521, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0505.02.522", "maps": [], @@ -69639,8 +65637,6 @@ }, "description": "2523, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0505.02.523", "maps": [], @@ -69673,8 +65669,6 @@ }, "description": "2526, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0505.02.526A", "maps": [], @@ -69707,8 +65701,6 @@ }, "description": "2527, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0505.02.527", "maps": [], @@ -69741,8 +65733,6 @@ }, "description": "2548, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0505.02.548", "maps": [], @@ -69775,8 +65765,6 @@ }, "description": "2550, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0505.02.550", "maps": [], @@ -69809,8 +65797,6 @@ }, "description": "2566, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0505.02.566", "maps": [], @@ -69843,8 +65829,6 @@ }, "description": "2580, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0505.02.580", "maps": [], @@ -69877,8 +65861,6 @@ }, "description": "2580.1, Tech.HL-Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0505.02.580A", "maps": [], @@ -69911,8 +65893,6 @@ }, "description": "2580.2, HLS-Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0505.02.580B", "maps": [], @@ -69945,8 +65925,6 @@ }, "description": "2580.3, ELT-Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0505.02.580C", "maps": [], @@ -69979,8 +65957,6 @@ }, "description": "2581, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0505.02.581", "maps": [], @@ -70013,8 +65989,6 @@ }, "description": "2582, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0505.02.582", "maps": [], @@ -70047,8 +66021,6 @@ }, "description": "2582.1, ELT-Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0505.02.582A", "maps": [], @@ -70081,8 +66053,6 @@ }, "description": "2582.2, HLS-Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0505.02.582B", "maps": [], @@ -70115,8 +66085,6 @@ }, "description": "2582.3, HLS-Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0505.02.582C", "maps": [], @@ -70149,8 +66117,6 @@ }, "description": "2583, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0505.02.583", "maps": [], @@ -70183,8 +66149,6 @@ }, "description": "2584, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0505.02.584", "maps": [], @@ -70217,8 +66181,6 @@ }, "description": "2586, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0505.02.586", "maps": [], @@ -70251,8 +66213,6 @@ }, "description": "2587, Technik ELT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0505.02.587", "maps": [], @@ -70285,8 +66245,6 @@ }, "description": "2588, HLS-Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0505.02.588", "maps": [], @@ -70319,8 +66277,6 @@ }, "description": "2590, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0505.02.590", "maps": [], @@ -70353,8 +66309,6 @@ }, "description": "2591, Treppenturm", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0505.02.591", "maps": [], @@ -70387,8 +66341,6 @@ }, "description": "2593, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0505.02.593", "maps": [], @@ -70421,8 +66373,6 @@ }, "description": "2594, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0505.02.594", "maps": [], @@ -70455,8 +66405,6 @@ }, "description": "2596, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0505.02.596", "maps": [], @@ -70489,8 +66437,6 @@ }, "description": "3521, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0505.03.521", "maps": [], @@ -70523,8 +66469,6 @@ }, "description": "3522, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0505.03.522", "maps": [], @@ -70557,8 +66501,6 @@ }, "description": "3523, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0505.03.523", "maps": [], @@ -70591,8 +66533,6 @@ }, "description": "3526, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0505.03.526A", "maps": [], @@ -70625,8 +66565,6 @@ }, "description": "3527, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0505.03.527A", "maps": [], @@ -70659,8 +66597,6 @@ }, "description": "3548, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0505.03.548", "maps": [], @@ -70693,8 +66629,6 @@ }, "description": "3580, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0505.03.580", "maps": [], @@ -70727,8 +66661,6 @@ }, "description": "3580.1, HLS-Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0505.03.580A", "maps": [], @@ -70761,8 +66693,6 @@ }, "description": "3580.2, HLS-Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0505.03.580B", "maps": [], @@ -70795,8 +66725,6 @@ }, "description": "3580.3, ELT-Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0505.03.580C", "maps": [], @@ -70829,8 +66757,6 @@ }, "description": "3581, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0505.03.581", "maps": [], @@ -70863,8 +66789,6 @@ }, "description": "3582, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0505.03.582", "maps": [], @@ -70897,8 +66821,6 @@ }, "description": "3582.1, ELT-Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0505.03.582A", "maps": [], @@ -70931,8 +66853,6 @@ }, "description": "3582.2, HLS-Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0505.03.582B", "maps": [], @@ -70965,8 +66885,6 @@ }, "description": "3582.3, HLS-Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0505.03.582C", "maps": [], @@ -70999,8 +66917,6 @@ }, "description": "3583, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0505.03.583", "maps": [], @@ -71033,8 +66949,6 @@ }, "description": "3584, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0505.03.584", "maps": [], @@ -71067,8 +66981,6 @@ }, "description": "3585, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0505.03.585", "maps": [], @@ -71101,8 +67013,6 @@ }, "description": "3586, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0505.03.586", "maps": [], @@ -71135,8 +67045,6 @@ }, "description": "3587, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0505.03.587", "maps": [], @@ -71169,8 +67077,6 @@ }, "description": "3588, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0505.03.588", "maps": [], @@ -71203,8 +67109,6 @@ }, "description": "3590, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0505.03.590", "maps": [], @@ -71237,8 +67141,6 @@ }, "description": "3591, Treppenturm", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0505.03.591", "maps": [], @@ -71271,8 +67173,6 @@ }, "description": "3593, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0505.03.593", "maps": [], @@ -71305,8 +67205,6 @@ }, "description": "3594, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0505.03.594", "maps": [], @@ -71339,8 +67237,6 @@ }, "description": "3596, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0505.03.596", "maps": [], @@ -71373,8 +67269,6 @@ }, "description": "4519, TB-Anlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0505.04.519", "maps": [], @@ -71407,8 +67301,6 @@ }, "description": "4520, L\u00fcftungszentrale Bauteil 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0505.04.520", "maps": [], @@ -71441,8 +67333,6 @@ }, "description": "4521, TB-Anlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0505.04.521", "maps": [], @@ -71475,8 +67365,6 @@ }, "description": "4553, L\u00fcftungszentrale Bauteil 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0505.04.553", "maps": [], @@ -71509,8 +67397,6 @@ }, "description": "4554, TB-Anlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0505.04.554", "maps": [], @@ -71543,8 +67429,6 @@ }, "description": "4590, Aufzugmaschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0505.04.590", "maps": [], @@ -71577,8 +67461,6 @@ }, "description": "4591, Treppenturm", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0505.04.591", "maps": [], @@ -71611,8 +67493,6 @@ }, "description": "4593, Maschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0505.04.593", "maps": [], @@ -71645,8 +67525,6 @@ }, "description": "4594, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0505.04.594", "maps": [], @@ -71679,8 +67557,6 @@ }, "description": "0510, CIP-Pool", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0505.EG.510", "maps": [], @@ -71713,8 +67589,6 @@ }, "description": "0514, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0505.EG.514", "maps": [], @@ -71747,8 +67621,6 @@ }, "description": "0520, Beh.-WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0505.EG.520", "maps": [], @@ -71781,8 +67653,6 @@ }, "description": "0521, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0505.EG.521", "maps": [], @@ -71815,8 +67685,6 @@ }, "description": "0522, WC-Herren / Wickeltisch", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0505.EG.522", "maps": [], @@ -71849,8 +67717,6 @@ }, "description": "0523, WC-Damen / Wickeltisch", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0505.EG.523", "maps": [], @@ -71955,8 +67821,6 @@ }, "description": "0536, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0505.EG.536", "maps": [], @@ -71989,8 +67853,6 @@ }, "description": "0538, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0505.EG.538", "maps": [], @@ -72095,8 +67957,6 @@ }, "description": "0542, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0505.EG.542", "maps": [], @@ -72129,8 +67989,6 @@ }, "description": "0544, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0505.EG.544", "maps": [], @@ -72163,8 +68021,6 @@ }, "description": "0548, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0505.EG.548", "maps": [], @@ -72197,8 +68053,6 @@ }, "description": "0582, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0505.EG.582", "maps": [], @@ -72231,8 +68085,6 @@ }, "description": "0583, Foyer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0505.EG.583", "maps": [], @@ -72265,8 +68117,6 @@ }, "description": "0584, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0505.EG.584", "maps": [], @@ -72299,8 +68149,6 @@ }, "description": "0585, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0505.EG.585A", "maps": [], @@ -72333,8 +68181,6 @@ }, "description": "0587, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0505.EG.587", "maps": [], @@ -72367,8 +68213,6 @@ }, "description": "0587.1, ELT. Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0505.EG.587A", "maps": [], @@ -72401,8 +68245,6 @@ }, "description": "0589, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0505.EG.589", "maps": [], @@ -72435,8 +68277,6 @@ }, "description": "0590, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0505.EG.590", "maps": [], @@ -72469,8 +68309,6 @@ }, "description": "0591, Treppenturm", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0505.EG.591", "maps": [], @@ -72503,8 +68341,6 @@ }, "description": "0592, Wendeltreppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0505.EG.592", "maps": [], @@ -72537,8 +68373,6 @@ }, "description": "0593, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0505.EG.593", "maps": [], @@ -72571,8 +68405,6 @@ }, "description": "0594, Eingang Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0505.EG.594", "maps": [], @@ -72605,8 +68437,6 @@ }, "description": "0595, Treppenraum Nord", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0505.EG.595A", "maps": [], @@ -72639,8 +68469,6 @@ }, "description": "-1500, Abstellraum im Turm", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0505.U1.500", "maps": [], @@ -72673,8 +68501,6 @@ }, "description": "-1503, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0505.U1.503", "maps": [], @@ -72707,8 +68533,6 @@ }, "description": "-1507, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0505.U1.507", "maps": [], @@ -72741,8 +68565,6 @@ }, "description": "-1509, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0505.U1.509", "maps": [], @@ -72775,8 +68597,6 @@ }, "description": "-1510, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0505.U1.510", "maps": [], @@ -72809,8 +68629,6 @@ }, "description": "-1511, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0505.U1.511", "maps": [], @@ -72843,8 +68661,6 @@ }, "description": "-1512, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0505.U1.512", "maps": [], @@ -72877,8 +68693,6 @@ }, "description": "-1513, L\u00fcftungsaggregat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0505.U1.513", "maps": [], @@ -72911,8 +68725,6 @@ }, "description": "-1514, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0505.U1.514", "maps": [], @@ -72945,8 +68757,6 @@ }, "description": "-1515, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0505.U1.515", "maps": [], @@ -72979,8 +68789,6 @@ }, "description": "-1516, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0505.U1.516", "maps": [], @@ -73013,8 +68821,6 @@ }, "description": "-1517, Umkleide-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0505.U1.517", "maps": [], @@ -73047,8 +68853,6 @@ }, "description": "-1517A, WC-Damen mit Dusche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0505.U1.517A", "maps": [], @@ -73081,8 +68885,6 @@ }, "description": "-1518, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0505.U1.518", "maps": [], @@ -73115,8 +68917,6 @@ }, "description": "-1530, Umkleide-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0505.U1.519", "maps": [], @@ -73149,8 +68949,6 @@ }, "description": "-1520, WC-Herren mit Dusche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0505.U1.520", "maps": [], @@ -73183,8 +68981,6 @@ }, "description": "-1530, Werkbankraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0505.U1.530", "maps": [], @@ -73217,8 +69013,6 @@ }, "description": "-1536, Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0505.U1.536", "maps": [], @@ -73251,8 +69045,6 @@ }, "description": "-1536, Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0505.U1.542", "maps": [], @@ -73285,8 +69077,6 @@ }, "description": "-1545, Technik/ELT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0505.U1.545", "maps": [], @@ -73319,8 +69109,6 @@ }, "description": "-1547, Heizung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0505.U1.547", "maps": [], @@ -73353,8 +69141,6 @@ }, "description": "-1548, Technik/ELT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0505.U1.548", "maps": [], @@ -73387,8 +69173,6 @@ }, "description": "-1549, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0505.U1.549", "maps": [], @@ -73421,8 +69205,6 @@ }, "description": "-1550, Heizung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0505.U1.550", "maps": [], @@ -73455,8 +69237,6 @@ }, "description": "-1566, TB-Anlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0505.U1.566", "maps": [], @@ -73489,8 +69269,6 @@ }, "description": "-1576, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0505.U1.576", "maps": [], @@ -73523,8 +69301,6 @@ }, "description": "-1580, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0505.U1.580", "maps": [], @@ -73557,8 +69333,6 @@ }, "description": "-1583.1, Flur v. Werkstattb\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0505.U1.583A", "maps": [], @@ -73591,8 +69365,6 @@ }, "description": "-1583.2, Flur v. Werkstattb\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0505.U1.583B", "maps": [], @@ -73625,8 +69397,6 @@ }, "description": "-1588, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0505.U1.588", "maps": [], @@ -73659,8 +69429,6 @@ }, "description": "-1588.1, ELT Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0505.U1.588A", "maps": [], @@ -73693,8 +69461,6 @@ }, "description": "-1589, Flur unter Halle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0505.U1.589", "maps": [], @@ -73727,8 +69493,6 @@ }, "description": "-1590, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0505.U1.590", "maps": [], @@ -73761,8 +69525,6 @@ }, "description": "-1591, Treppenturm", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0505.U1.591", "maps": [], @@ -73795,8 +69557,6 @@ }, "description": "-1592, Wendeltreppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0505.U1.592", "maps": [], @@ -73829,8 +69589,6 @@ }, "description": "-1593, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0505.U1.593", "maps": [], @@ -73863,8 +69621,6 @@ }, "description": "-1594, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0505.U1.594", "maps": [], @@ -73897,8 +69653,6 @@ }, "description": "-1595, Treppenraum Nord", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0505.U1.595", "maps": [], @@ -73931,8 +69685,6 @@ }, "description": "Z510A, ELT-Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0505.Z1.510A", "maps": [], @@ -73965,8 +69717,6 @@ }, "description": "Z510B, ELT-Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0505.Z1.510B", "maps": [], @@ -73999,8 +69749,6 @@ }, "description": "Z510, CIP-Pool", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0505.Z1.510Z", "maps": [], @@ -74033,8 +69781,6 @@ }, "description": "Z521, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0505.Z1.521Z", "maps": [], @@ -74067,8 +69813,6 @@ }, "description": "Z522, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0505.Z1.522Z", "maps": [], @@ -74101,8 +69845,6 @@ }, "description": "Z523, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0505.Z1.523Z", "maps": [], @@ -74135,8 +69877,6 @@ }, "description": "Z531, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0505.Z1.531Z", "maps": [], @@ -74169,8 +69909,6 @@ }, "description": "Z532, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0505.Z1.532Z", "maps": [], @@ -74203,8 +69941,6 @@ }, "description": "Z534, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0505.Z1.534Z", "maps": [], @@ -74237,8 +69973,6 @@ }, "description": "Z536, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0505.Z1.536Z", "maps": [], @@ -74271,8 +70005,6 @@ }, "description": "Z538, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0505.Z1.538Z", "maps": [], @@ -74305,8 +70037,6 @@ }, "description": "Z548, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0505.Z1.548Z", "maps": [], @@ -74339,8 +70069,6 @@ }, "description": "Z582, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0505.Z1.582Z", "maps": [], @@ -74373,8 +70101,6 @@ }, "description": "Z583, Foyer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0505.Z1.583Z", "maps": [], @@ -74407,8 +70133,6 @@ }, "description": "Z584, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0505.Z1.584Z", "maps": [], @@ -74441,8 +70165,6 @@ }, "description": "Z585, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0505.Z1.585Z", "maps": [], @@ -74475,8 +70197,6 @@ }, "description": "Z587.1, Technik ELT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0505.Z1.587A", "maps": [], @@ -74509,8 +70229,6 @@ }, "description": "Z587, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0505.Z1.587Z", "maps": [], @@ -74543,8 +70261,6 @@ }, "description": "Z590, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0505.Z1.590Z", "maps": [], @@ -74577,8 +70293,6 @@ }, "description": "Z591, Treppenturm", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0505.Z1.591Z", "maps": [], @@ -74611,8 +70325,6 @@ }, "description": "Z592, Wendeltreppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0505.Z1.592Z", "maps": [], @@ -74645,8 +70357,6 @@ }, "description": "Z593, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0505.Z1.593Z", "maps": [], @@ -74679,8 +70389,6 @@ }, "description": "Z594, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0505.Z1.594Z", "maps": [], @@ -74713,8 +70421,6 @@ }, "description": "Z595, Treppenraum Nord", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0505.Z1.595Z", "maps": [], @@ -74819,8 +70525,6 @@ }, "description": "1602, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0506.01.602", "maps": [], @@ -74853,8 +70557,6 @@ }, "description": "1603A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0506.01.603A", "maps": [], @@ -74887,8 +70589,6 @@ }, "description": "1603B, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0506.01.603B", "maps": [], @@ -74921,8 +70621,6 @@ }, "description": "1603C, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0506.01.603C", "maps": [], @@ -74955,8 +70653,6 @@ }, "description": "1604, Flur 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0506.01.604", "maps": [], @@ -74989,8 +70685,6 @@ }, "description": "1605B, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0506.01.605B", "maps": [], @@ -75023,8 +70717,6 @@ }, "description": "1607A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0506.01.607A", "maps": [], @@ -75057,8 +70749,6 @@ }, "description": "1607B, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0506.01.607B", "maps": [], @@ -75091,8 +70781,6 @@ }, "description": "1607C, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0506.01.607C", "maps": [], @@ -75125,8 +70813,6 @@ }, "description": "1608, Flur 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0506.01.608", "maps": [], @@ -75159,8 +70845,6 @@ }, "description": "1609A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0506.01.609A", "maps": [], @@ -75193,8 +70877,6 @@ }, "description": "1609C, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0506.01.609C", "maps": [], @@ -75227,8 +70909,6 @@ }, "description": "1610, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0506.01.610", "maps": [], @@ -75261,8 +70941,6 @@ }, "description": "1622, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0506.01.622", "maps": [], @@ -75295,8 +70973,6 @@ }, "description": "1623, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0506.01.623", "maps": [], @@ -75329,8 +71005,6 @@ }, "description": "1625, Flur 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0506.01.625", "maps": [], @@ -75363,8 +71037,6 @@ }, "description": "1630, Flur 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0506.01.630", "maps": [], @@ -75397,8 +71069,6 @@ }, "description": "1631, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0506.01.631", "maps": [], @@ -75431,8 +71101,6 @@ }, "description": "1632, Raumlufttechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0506.01.632", "maps": [], @@ -75465,8 +71133,6 @@ }, "description": "1634, Personenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0506.01.634", "maps": [], @@ -75499,8 +71165,6 @@ }, "description": "2601, \u00dcbungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0506.02.601", "maps": [ @@ -75565,8 +71229,6 @@ }, "description": "2601A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0506.02.601A", "maps": [], @@ -75599,8 +71261,6 @@ }, "description": "2602, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0506.02.602", "maps": [], @@ -75633,8 +71293,6 @@ }, "description": "2604, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0506.02.604", "maps": [], @@ -75667,8 +71325,6 @@ }, "description": "2604A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0506.02.604A", "maps": [], @@ -75701,8 +71357,6 @@ }, "description": "2604B, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0506.02.604B", "maps": [], @@ -75735,8 +71389,6 @@ }, "description": "2604C, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0506.02.604C", "maps": [], @@ -75769,8 +71421,6 @@ }, "description": "2605, \u00dcbungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0506.02.605", "maps": [ @@ -75838,8 +71488,6 @@ }, "description": "2605A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0506.02.605A", "maps": [], @@ -75936,8 +71584,6 @@ }, "description": "2607A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0506.02.607A", "maps": [], @@ -75970,8 +71616,6 @@ }, "description": "2609, \u00dcbungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0506.02.609", "maps": [], @@ -76004,8 +71648,6 @@ }, "description": "2609A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0506.02.609A", "maps": [], @@ -76038,8 +71680,6 @@ }, "description": "2610, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0506.02.610", "maps": [], @@ -76072,8 +71712,6 @@ }, "description": "2622, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0506.02.622", "maps": [], @@ -76106,8 +71744,6 @@ }, "description": "2623, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0506.02.623", "maps": [], @@ -76140,8 +71776,6 @@ }, "description": "2630, Flur 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0506.02.630", "maps": [], @@ -76174,8 +71808,6 @@ }, "description": "2630A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0506.02.630A", "maps": [], @@ -76208,8 +71840,6 @@ }, "description": "2631, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0506.02.631", "maps": [], @@ -76242,8 +71872,6 @@ }, "description": "2632, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0506.02.632", "maps": [], @@ -76276,8 +71904,6 @@ }, "description": "3602, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0506.03.602", "maps": [], @@ -76310,8 +71936,6 @@ }, "description": "3604, Flur 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0506.03.604", "maps": [], @@ -76344,8 +71968,6 @@ }, "description": "3607, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0506.03.607", "maps": [], @@ -76378,8 +72000,6 @@ }, "description": "3610A, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0506.03.610A", "maps": [], @@ -76412,8 +72032,6 @@ }, "description": "3622, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0506.03.622", "maps": [], @@ -76446,8 +72064,6 @@ }, "description": "3623, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0506.03.623", "maps": [], @@ -76480,8 +72096,6 @@ }, "description": "3630, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0506.03.630", "maps": [], @@ -76514,8 +72128,6 @@ }, "description": "3631, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0506.03.631", "maps": [], @@ -76548,8 +72160,6 @@ }, "description": "3632, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0506.03.632", "maps": [], @@ -76582,8 +72192,6 @@ }, "description": "4620, Aufzugsmaschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0506.04.620", "maps": [], @@ -76616,8 +72224,6 @@ }, "description": "4621, Heizung u. Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0506.04.621", "maps": [], @@ -76650,8 +72256,6 @@ }, "description": "4630, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0506.04.630", "maps": [], @@ -76684,8 +72288,6 @@ }, "description": "4631, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0506.04.631", "maps": [], @@ -76718,8 +72320,6 @@ }, "description": "4650, Flucht- / Dachterrasse (Reinigen)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0506.04.650", "maps": [], @@ -76752,8 +72352,6 @@ }, "description": "4699B, Sonstige Luftfl\u00e4chen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0506.04.699B", "maps": [], @@ -76938,8 +72536,6 @@ }, "description": "0603, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0506.EG.603", "maps": [], @@ -76972,8 +72568,6 @@ }, "description": "Theresianum Foyer, 0604", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0506.EG.604", "maps": [], @@ -77006,8 +72600,6 @@ }, "description": "0604A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0506.EG.604A", "maps": [], @@ -77040,8 +72632,6 @@ }, "description": "0605, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0506.EG.605", "maps": [], @@ -77074,8 +72664,6 @@ }, "description": "0605A, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0506.EG.605A", "maps": [], @@ -77188,8 +72776,6 @@ }, "description": "0607, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0506.EG.607", "maps": [], @@ -77222,8 +72808,6 @@ }, "description": "0607A, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0506.EG.607A", "maps": [], @@ -77256,8 +72840,6 @@ }, "description": "0608, Windfang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0506.EG.608", "maps": [], @@ -77290,8 +72872,6 @@ }, "description": "0610, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0506.EG.610", "maps": [], @@ -77324,8 +72904,6 @@ }, "description": "0622, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0506.EG.622", "maps": [], @@ -77358,8 +72936,6 @@ }, "description": "0623, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0506.EG.623", "maps": [], @@ -77392,8 +72968,6 @@ }, "description": "0625, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0506.EG.625", "maps": [], @@ -77426,8 +73000,6 @@ }, "description": "0631, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0506.EG.631", "maps": [], @@ -77460,8 +73032,6 @@ }, "description": "0632, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0506.EG.632", "maps": [], @@ -77494,8 +73064,6 @@ }, "description": "0633, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0506.EG.633", "maps": [], @@ -77528,8 +73096,6 @@ }, "description": "-1601, Heizungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0506.U1.601", "maps": [], @@ -77562,8 +73128,6 @@ }, "description": "-1601A, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0506.U1.601A", "maps": [], @@ -77596,8 +73160,6 @@ }, "description": "-1602, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0506.U1.602", "maps": [], @@ -77630,8 +73192,6 @@ }, "description": "-1602A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0506.U1.602A", "maps": [], @@ -77664,8 +73224,6 @@ }, "description": "-1603, Raumlufttechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0506.U1.603", "maps": [], @@ -77698,8 +73256,6 @@ }, "description": "-1604, Flur 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0506.U1.604", "maps": [], @@ -77732,8 +73288,6 @@ }, "description": "-1607A, Lager (ASTA)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0506.U1.607A", "maps": [], @@ -77766,8 +73320,6 @@ }, "description": "-1608, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0506.U1.608", "maps": [], @@ -77800,8 +73352,6 @@ }, "description": "-1609, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0506.U1.609", "maps": [], @@ -77834,8 +73384,6 @@ }, "description": "-1609A, Lager/Tagungsm\u00f6bel", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0506.U1.609A", "maps": [], @@ -77868,8 +73416,6 @@ }, "description": "-1610, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0506.U1.610", "maps": [], @@ -77902,8 +73448,6 @@ }, "description": "-1615, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0506.U1.615", "maps": [], @@ -77936,8 +73480,6 @@ }, "description": "-1618, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0506.U1.618", "maps": [], @@ -77970,8 +73512,6 @@ }, "description": "-1621A, Installationsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0506.U1.621A", "maps": [], @@ -78004,8 +73544,6 @@ }, "description": "-1621B, Installationsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0506.U1.621B", "maps": [], @@ -78038,8 +73576,6 @@ }, "description": "-1622, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0506.U1.622", "maps": [], @@ -78072,8 +73608,6 @@ }, "description": "-1623, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0506.U1.623", "maps": [], @@ -78106,8 +73640,6 @@ }, "description": "-1624, Beh.-WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0506.U1.624", "maps": [], @@ -78140,8 +73672,6 @@ }, "description": "-1625, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0506.U1.625", "maps": [], @@ -78174,8 +73704,6 @@ }, "description": "-1630, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0506.U1.630", "maps": [], @@ -78208,8 +73736,6 @@ }, "description": "-1631, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0506.U1.631", "maps": [], @@ -78242,8 +73768,6 @@ }, "description": "-1632, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0506.U1.632", "maps": [], @@ -78276,8 +73800,6 @@ }, "description": "-1633, Aufzugsunterfahrt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0506.U1.633", "maps": [], @@ -78310,8 +73832,6 @@ }, "description": "-1690, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0506.U1.690", "maps": [], @@ -78344,8 +73864,6 @@ }, "description": "0603ZG, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0506.Z1.603", "maps": [], @@ -78378,8 +73896,6 @@ }, "description": "0604ZG, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0506.Z1.604", "maps": [], @@ -78412,8 +73928,6 @@ }, "description": "0608ZG, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0506.Z1.608", "maps": [], @@ -78446,8 +73960,6 @@ }, "description": "0610ZG, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0506.Z1.610", "maps": [], @@ -78480,8 +73992,6 @@ }, "description": "0623ZG, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0506.Z1.623", "maps": [], @@ -78514,8 +74024,6 @@ }, "description": "0624ZG, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0506.Z1.624", "maps": [], @@ -78548,8 +74056,6 @@ }, "description": "0625ZG, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0506.Z1.625", "maps": [], @@ -78582,8 +74088,6 @@ }, "description": "0630ZG, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0506.Z1.630", "maps": [], @@ -78688,8 +74192,6 @@ }, "description": "1700, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0507.01.700", "maps": [], @@ -78722,8 +74224,6 @@ }, "description": "1700A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0507.01.700A", "maps": [], @@ -78756,8 +74256,6 @@ }, "description": "1700B, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0507.01.700B", "maps": [], @@ -78790,8 +74288,6 @@ }, "description": "1721, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0507.01.721", "maps": [], @@ -78824,8 +74320,6 @@ }, "description": "1721A, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0507.01.721A", "maps": [], @@ -78858,8 +74352,6 @@ }, "description": "1723, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0507.01.723", "maps": [], @@ -78892,8 +74384,6 @@ }, "description": "1723A, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0507.01.723A", "maps": [], @@ -78926,8 +74416,6 @@ }, "description": "1724, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0507.01.724", "maps": [], @@ -78960,8 +74448,6 @@ }, "description": "1734, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0507.01.734", "maps": [], @@ -78994,8 +74480,6 @@ }, "description": "1740, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0507.01.740", "maps": [], @@ -79028,8 +74512,6 @@ }, "description": "1742, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0507.01.742", "maps": [], @@ -79062,8 +74544,6 @@ }, "description": "1745, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0507.01.745", "maps": [], @@ -79096,8 +74576,6 @@ }, "description": "1749, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0507.01.749", "maps": [], @@ -79130,8 +74608,6 @@ }, "description": "1750, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0507.01.750", "maps": [], @@ -79164,8 +74640,6 @@ }, "description": "1750A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0507.01.750A", "maps": [], @@ -79198,8 +74672,6 @@ }, "description": "1751, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0507.01.751", "maps": [], @@ -79232,8 +74704,6 @@ }, "description": "1751A, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0507.01.751A", "maps": [], @@ -79266,8 +74736,6 @@ }, "description": "1751B, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0507.01.751B", "maps": [], @@ -79300,8 +74768,6 @@ }, "description": "1751C, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0507.01.751C", "maps": [], @@ -79334,8 +74800,6 @@ }, "description": "1760, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0507.01.760", "maps": [], @@ -79368,8 +74832,6 @@ }, "description": "1784A, Installationsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0507.01.784A", "maps": [], @@ -79402,8 +74864,6 @@ }, "description": "1795, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0507.01.795", "maps": [], @@ -79436,8 +74896,6 @@ }, "description": "1795A, Fluchtbalkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0507.01.795A", "maps": [], @@ -79470,8 +74928,6 @@ }, "description": "2700, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0507.02.700", "maps": [], @@ -79504,8 +74960,6 @@ }, "description": "2701A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0507.02.700A", "maps": [], @@ -79538,8 +74992,6 @@ }, "description": "2710, Zeichensaal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0507.02.710", "maps": [ @@ -79607,8 +75059,6 @@ }, "description": "2712, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0507.02.712", "maps": [], @@ -79641,8 +75091,6 @@ }, "description": "2719, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0507.02.719", "maps": [], @@ -79675,8 +75123,6 @@ }, "description": "2721, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0507.02.721", "maps": [], @@ -79709,8 +75155,6 @@ }, "description": "2721A, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0507.02.721A", "maps": [], @@ -79743,8 +75187,6 @@ }, "description": "2723, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0507.02.723", "maps": [], @@ -79777,8 +75219,6 @@ }, "description": "2723A, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0507.02.723A", "maps": [], @@ -79811,8 +75251,6 @@ }, "description": "2735A, Kopierer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0507.02.735A", "maps": [], @@ -79845,8 +75283,6 @@ }, "description": "2748, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0507.02.748", "maps": [], @@ -79879,8 +75315,6 @@ }, "description": "2748B, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0507.02.748B", "maps": [], @@ -79913,8 +75347,6 @@ }, "description": "2749, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0507.02.749", "maps": [], @@ -79947,8 +75379,6 @@ }, "description": "2751, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0507.02.751", "maps": [], @@ -79981,8 +75411,6 @@ }, "description": "2751A, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0507.02.751A", "maps": [], @@ -80015,8 +75443,6 @@ }, "description": "2751B, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0507.02.751B", "maps": [], @@ -80049,8 +75475,6 @@ }, "description": "2752, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0507.02.752", "maps": [], @@ -80083,8 +75507,6 @@ }, "description": "2752B, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0507.02.752B", "maps": [], @@ -80117,8 +75539,6 @@ }, "description": "2752C, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0507.02.752C", "maps": [], @@ -80151,8 +75571,6 @@ }, "description": "2755, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0507.02.755", "maps": [], @@ -80185,8 +75603,6 @@ }, "description": "2755a, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0507.02.755A", "maps": [], @@ -80219,8 +75635,6 @@ }, "description": "2755B, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0507.02.755B", "maps": [], @@ -80325,8 +75739,6 @@ }, "description": "2762, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0507.02.762", "maps": [], @@ -80359,8 +75771,6 @@ }, "description": "2763, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0507.02.763", "maps": [], @@ -80393,8 +75803,6 @@ }, "description": "2768, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0507.02.768", "maps": [], @@ -80507,8 +75915,6 @@ }, "description": "2773, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0507.02.773", "maps": [], @@ -80541,8 +75947,6 @@ }, "description": "2792, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0507.02.792", "maps": [], @@ -80575,8 +75979,6 @@ }, "description": "2792A, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0507.02.792A", "maps": [], @@ -80609,8 +76011,6 @@ }, "description": "2793, Vermittlung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0507.02.793", "maps": [], @@ -80643,8 +76043,6 @@ }, "description": "2794, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0507.02.794", "maps": [], @@ -80677,8 +76075,6 @@ }, "description": "3700A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0507.03.700A", "maps": [], @@ -80711,8 +76107,6 @@ }, "description": "3700B, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0507.03.700B", "maps": [], @@ -80745,8 +76139,6 @@ }, "description": "3701, Zeichnen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0507.03.701", "maps": [ @@ -80814,8 +76206,6 @@ }, "description": "3701A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0507.03.701A", "maps": [], @@ -80848,8 +76238,6 @@ }, "description": "3740, Bibliothek", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0507.03.740", "maps": [], @@ -80882,8 +76270,6 @@ }, "description": "3744, RLT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0507.03.744", "maps": [], @@ -80916,8 +76302,6 @@ }, "description": "3749, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0507.03.749", "maps": [], @@ -81033,8 +76417,6 @@ }, "description": "3751, RLT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0507.03.751", "maps": [], @@ -81067,8 +76449,6 @@ }, "description": "3752A, RLT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0507.03.752A", "maps": [], @@ -81101,8 +76481,6 @@ }, "description": "3752B, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0507.03.752B", "maps": [], @@ -81135,8 +76513,6 @@ }, "description": "3762, Archiv", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0507.03.762", "maps": [], @@ -81169,8 +76545,6 @@ }, "description": "3762A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0507.03.762A", "maps": [], @@ -81203,8 +76577,6 @@ }, "description": "3763, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0507.03.763", "maps": [], @@ -81237,8 +76609,6 @@ }, "description": "3763A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0507.03.763A", "maps": [], @@ -81271,8 +76641,6 @@ }, "description": "3765, Projektionsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0507.03.765", "maps": [], @@ -81305,8 +76673,6 @@ }, "description": "3767, RLT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0507.03.767", "maps": [], @@ -81339,8 +76705,6 @@ }, "description": "3783, Teilk\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0507.03.783", "maps": [], @@ -81373,8 +76737,6 @@ }, "description": "3784, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0507.03.784", "maps": [], @@ -81407,8 +76769,6 @@ }, "description": "3786, Duschen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0507.03.786", "maps": [], @@ -81441,8 +76801,6 @@ }, "description": "3787, Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0507.03.787", "maps": [], @@ -81475,8 +76833,6 @@ }, "description": "3787A, Aufenthalt Fernmeldew.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0507.03.787A", "maps": [], @@ -81509,8 +76865,6 @@ }, "description": "3788, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0507.03.788", "maps": [], @@ -81543,8 +76897,6 @@ }, "description": "3789, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0507.03.789", "maps": [], @@ -81577,8 +76929,6 @@ }, "description": "3790, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0507.03.790", "maps": [], @@ -81611,8 +76961,6 @@ }, "description": "0700, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0507.EG.700", "maps": [], @@ -81645,8 +76993,6 @@ }, "description": "0701, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0507.EG.701", "maps": [], @@ -81679,8 +77025,6 @@ }, "description": "0710B, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0507.EG.710B", "maps": [], @@ -81713,8 +77057,6 @@ }, "description": "0714, Seminar", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0507.EG.714", "maps": [], @@ -81747,8 +77089,6 @@ }, "description": "0721, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0507.EG.721", "maps": [], @@ -81781,8 +77121,6 @@ }, "description": "0721A, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0507.EG.721A", "maps": [], @@ -81815,8 +77153,6 @@ }, "description": "0723, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0507.EG.723", "maps": [], @@ -81849,8 +77185,6 @@ }, "description": "0723A, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0507.EG.723A", "maps": [], @@ -81883,8 +77217,6 @@ }, "description": "0728, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0507.EG.728", "maps": [], @@ -81917,8 +77249,6 @@ }, "description": "0728B, Fluchttreppe (Reinigen)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0507.EG.728B", "maps": [], @@ -81951,8 +77281,6 @@ }, "description": "0728C, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0507.EG.728C", "maps": [], @@ -81985,8 +77313,6 @@ }, "description": "0730, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0507.EG.730", "maps": [], @@ -82019,8 +77345,6 @@ }, "description": "0743, Stra\u00dfe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0507.EG.743", "maps": [], @@ -82053,8 +77377,6 @@ }, "description": "0750, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0507.EG.750", "maps": [], @@ -82087,8 +77409,6 @@ }, "description": "0750A, Windfang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0507.EG.750A", "maps": [], @@ -82121,8 +77441,6 @@ }, "description": "0750B, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0507.EG.750B", "maps": [], @@ -82155,8 +77473,6 @@ }, "description": "0750C, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0507.EG.750C", "maps": [], @@ -82189,8 +77505,6 @@ }, "description": "0750D, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0507.EG.750D", "maps": [], @@ -82223,8 +77537,6 @@ }, "description": "0751, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0507.EG.751", "maps": [], @@ -82257,8 +77569,6 @@ }, "description": "0751A, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0507.EG.751A", "maps": [], @@ -82291,8 +77601,6 @@ }, "description": "0751B, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0507.EG.751B", "maps": [], @@ -82325,8 +77633,6 @@ }, "description": "0751C, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0507.EG.751C", "maps": [], @@ -82359,8 +77665,6 @@ }, "description": "0760, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0507.EG.760", "maps": [], @@ -82393,8 +77697,6 @@ }, "description": "0779, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0507.EG.779", "maps": [], @@ -82427,8 +77729,6 @@ }, "description": "0790, H\u00f6rsaal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0507.EG.790", "maps": [], @@ -82461,8 +77761,6 @@ }, "description": "0790B, Flur/Notausgang HS", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0507.EG.790B", "maps": [], @@ -82495,8 +77793,6 @@ }, "description": "0792, Durchfahrt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0507.EG.792", "maps": [], @@ -82529,8 +77825,6 @@ }, "description": "-1700A, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0507.U1.700A", "maps": [], @@ -82563,8 +77857,6 @@ }, "description": "-1700B, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0507.U1.700B", "maps": [], @@ -82597,8 +77889,6 @@ }, "description": "-1700C, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0507.U1.700C", "maps": [], @@ -82631,8 +77921,6 @@ }, "description": "-1700D, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0507.U1.700D", "maps": [], @@ -82665,8 +77953,6 @@ }, "description": "-1700F, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0507.U1.700F", "maps": [], @@ -82699,8 +77985,6 @@ }, "description": "-1701, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0507.U1.701", "maps": [], @@ -82733,8 +78017,6 @@ }, "description": "-1702, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0507.U1.702", "maps": [], @@ -82767,8 +78049,6 @@ }, "description": "-1703, Heizung/Brauch.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0507.U1.703", "maps": [], @@ -82801,8 +78081,6 @@ }, "description": "-1710D, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0507.U1.710D", "maps": [], @@ -82835,8 +78113,6 @@ }, "description": "-1710E, Vorratsbeh\u00e4lter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0507.U1.710E", "maps": [], @@ -82869,8 +78145,6 @@ }, "description": "-1712A, Wasserversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0507.U1.712A", "maps": [], @@ -82903,8 +78177,6 @@ }, "description": "-1721, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0507.U1.721", "maps": [], @@ -82937,8 +78209,6 @@ }, "description": "-1734, Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0507.U1.734", "maps": [], @@ -82971,8 +78241,6 @@ }, "description": "-1735, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0507.U1.735", "maps": [], @@ -83005,8 +78273,6 @@ }, "description": "-1736, Personenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0507.U1.736", "maps": [], @@ -83039,8 +78305,6 @@ }, "description": "-1746A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0507.U1.746A", "maps": [], @@ -83073,8 +78337,6 @@ }, "description": "-1746B, Fernmeldetechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0507.U1.746B", "maps": [], @@ -83107,8 +78369,6 @@ }, "description": "-1749A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0507.U1.749A", "maps": [], @@ -83141,8 +78401,6 @@ }, "description": "-1749B, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0507.U1.749B", "maps": [], @@ -83175,8 +78433,6 @@ }, "description": "-1749C, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0507.U1.749C", "maps": [], @@ -83209,8 +78465,6 @@ }, "description": "-1761, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0507.U1.761", "maps": [], @@ -83243,8 +78497,6 @@ }, "description": "-1764A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0507.U1.764A", "maps": [], @@ -83277,8 +78529,6 @@ }, "description": "-1771, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0507.U1.771", "maps": [], @@ -83311,8 +78561,6 @@ }, "description": "-1780, Niederspann.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0507.U1.780", "maps": [], @@ -83345,8 +78593,6 @@ }, "description": "-1780A, Mittelspann.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0507.U1.780A", "maps": [], @@ -83379,8 +78625,6 @@ }, "description": "-1784, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0507.U1.784", "maps": [], @@ -83413,8 +78657,6 @@ }, "description": "-1790, Rampe/Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0507.U1.790", "maps": [], @@ -83447,8 +78689,6 @@ }, "description": "R1002, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0507.U1.998", "maps": [], @@ -83481,8 +78721,6 @@ }, "description": "-2701, RLT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "0507.U2.701", "maps": [], @@ -83515,8 +78753,6 @@ }, "description": "-2702, RLT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "0507.U2.702", "maps": [], @@ -83549,8 +78785,6 @@ }, "description": "-2703, RLT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "0507.U2.703", "maps": [], @@ -83583,8 +78817,6 @@ }, "description": "-2704, Heizung/Brauch.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "0507.U2.704", "maps": [], @@ -83617,8 +78849,6 @@ }, "description": "-2705, Heizung/Brauch.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "0507.U2.705", "maps": [], @@ -83651,8 +78881,6 @@ }, "description": "-2706, RLT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "0507.U2.706", "maps": [], @@ -83685,8 +78913,6 @@ }, "description": "-2707, RLT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "0507.U2.707", "maps": [], @@ -83719,8 +78945,6 @@ }, "description": "-2708, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "0507.U2.708", "maps": [], @@ -83753,8 +78977,6 @@ }, "description": "-2710, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "0507.U2.710", "maps": [], @@ -83787,8 +79009,6 @@ }, "description": "-2711, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "0507.U2.711", "maps": [], @@ -83821,8 +79041,6 @@ }, "description": "-2712, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "0507.U2.712", "maps": [], @@ -83855,8 +79073,6 @@ }, "description": "-2783, Wasser-Vorratsbeh\u00e4lter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "0507.U2.783", "maps": [], @@ -83889,8 +79105,6 @@ }, "description": "1800C, Treppe Versuchshalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0508.01.800C", "maps": [], @@ -83923,8 +79137,6 @@ }, "description": "1801, Wasch.-/Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0508.01.801", "maps": [], @@ -83957,8 +79169,6 @@ }, "description": "1808, W\u00e4rmeversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0508.01.808", "maps": [], @@ -83991,8 +79201,6 @@ }, "description": "1808B, B\u00fcro/ET-Warte/Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0508.01.808B", "maps": [], @@ -84025,8 +79233,6 @@ }, "description": "1808C, B\u00fcro/ET-Warte/Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0508.01.808C", "maps": [], @@ -84059,8 +79265,6 @@ }, "description": "1811, B\u00fcro/ET-Warte/Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0508.01.811", "maps": [], @@ -84093,8 +79297,6 @@ }, "description": "1812, Flur/Lager/B\u00fchne", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0508.01.812", "maps": [], @@ -84127,8 +79329,6 @@ }, "description": "1812A, Treppenhaus Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0508.01.812A", "maps": [], @@ -84161,8 +79361,6 @@ }, "description": "1815, Studentischer \u00dcbungsraum/Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0508.01.815", "maps": [], @@ -84195,8 +79393,6 @@ }, "description": "1880, Fluchtbalkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0508.01.880", "maps": [], @@ -84229,8 +79425,6 @@ }, "description": "800C, Treppe/Galerie/Versuchshalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0508.02.800C", "maps": [], @@ -84263,8 +79457,6 @@ }, "description": "2804, Lager HKW", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0508.02.804", "maps": [], @@ -84297,8 +79489,6 @@ }, "description": "2805, Lager/Galerie HKW", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0508.02.805", "maps": [], @@ -84331,8 +79521,6 @@ }, "description": "2806, Lager Galerie HKW", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0508.02.806", "maps": [], @@ -84365,8 +79553,6 @@ }, "description": "2808A, Galerie Halle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0508.02.808A", "maps": [], @@ -84399,8 +79585,6 @@ }, "description": "2809A, Staubanlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0508.02.809A", "maps": [], @@ -84433,8 +79617,6 @@ }, "description": "2880, Fluchtbalkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0508.02.880", "maps": [], @@ -84467,8 +79649,6 @@ }, "description": "3824, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0508.03.824", "maps": [], @@ -84501,8 +79681,6 @@ }, "description": "3830, Staubanlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0508.03.830", "maps": [], @@ -84535,8 +79713,6 @@ }, "description": "3880, Fluchtbalkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0508.03.880", "maps": [], @@ -84569,8 +79745,6 @@ }, "description": "4827, Biomassevergasanlage 1 (Umbau)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0508.04.827", "maps": [], @@ -84603,8 +79777,6 @@ }, "description": "4880, Fluchtbalkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0508.04.880", "maps": [], @@ -84637,8 +79809,6 @@ }, "description": "5829, Arbeitsraum/ohn. Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0508.05.829", "maps": [], @@ -84671,8 +79841,6 @@ }, "description": "5880, Fluchtbalkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0508.05.880", "maps": [], @@ -84705,8 +79873,6 @@ }, "description": "0800C, Treppe Versuchshalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0508.EG.800C", "maps": [], @@ -84739,8 +79905,6 @@ }, "description": "0801, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0508.EG.801", "maps": [], @@ -84773,8 +79937,6 @@ }, "description": "0810B, W\u00e4rmeversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0508.EG.810B", "maps": [], @@ -84807,8 +79969,6 @@ }, "description": "0812, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0508.EG.812", "maps": [], @@ -84841,8 +80001,6 @@ }, "description": "0813, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0508.EG.813", "maps": [], @@ -84875,8 +80033,6 @@ }, "description": "0814, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0508.EG.814", "maps": [], @@ -84909,8 +80065,6 @@ }, "description": "0824, Werkstatt/Sozialbereich URBANA-Energiedienst", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0508.EG.824", "maps": [], @@ -84943,8 +80097,6 @@ }, "description": "0826, WC URBANA-Energiedienste", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0508.EG.826", "maps": [], @@ -84977,8 +80129,6 @@ }, "description": "0828, B\u00fcro URBANA-Energiedienste", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0508.EG.828", "maps": [], @@ -85011,8 +80161,6 @@ }, "description": "0831, Sommerkesselhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0508.EG.831", "maps": [], @@ -85045,8 +80193,6 @@ }, "description": "0833, Standwerke M\u00fcnchen Strom", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0508.EG.833", "maps": [], @@ -85079,8 +80225,6 @@ }, "description": "0834, Erdgas\u00fcbergabestation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0508.EG.834", "maps": [], @@ -85113,8 +80257,6 @@ }, "description": "0873, Treppenraum Trafo", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0508.EG.873", "maps": [], @@ -85147,8 +80289,6 @@ }, "description": "-1800C, Treppe Versuchshalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0508.U1.800C", "maps": [], @@ -85181,8 +80321,6 @@ }, "description": "-1808, W\u00e4rmeversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0508.U1.808", "maps": [], @@ -85215,8 +80353,6 @@ }, "description": "-1808A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0508.U1.808A", "maps": [], @@ -85249,8 +80385,6 @@ }, "description": "-1808B, W\u00e4rmeversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0508.U1.808B", "maps": [], @@ -85283,8 +80417,6 @@ }, "description": "-1809, W\u00e4rmeversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0508.U1.809", "maps": [], @@ -85317,8 +80449,6 @@ }, "description": "-1811, Elektroverteilung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0508.U1.811", "maps": [], @@ -85351,8 +80481,6 @@ }, "description": "-1812, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0508.U1.812", "maps": [], @@ -85385,8 +80513,6 @@ }, "description": "-1814, Heiztechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0508.U1.814", "maps": [], @@ -85419,8 +80545,6 @@ }, "description": "-1814A, Notstromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0508.U1.814A", "maps": [], @@ -85453,8 +80577,6 @@ }, "description": "-1814B, Elektroausgaberaum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0508.U1.814B", "maps": [], @@ -85487,8 +80609,6 @@ }, "description": "-1815, Lager Fa. Siemens", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0508.U1.815", "maps": [], @@ -85521,8 +80641,6 @@ }, "description": "-1815A, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0508.U1.815A", "maps": [], @@ -85555,8 +80673,6 @@ }, "description": "-1817, Heizzentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0508.U1.817", "maps": [], @@ -85589,8 +80705,6 @@ }, "description": "-1818, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0508.U1.818", "maps": [], @@ -85623,8 +80737,6 @@ }, "description": "-1819, S\u00e4ure u. Laugenstation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0508.U1.819", "maps": [], @@ -85657,8 +80769,6 @@ }, "description": "-1821, Wasserversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0508.U1.821", "maps": [], @@ -85691,8 +80801,6 @@ }, "description": "-1822/A, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0508.U1.822", "maps": [], @@ -85725,8 +80833,6 @@ }, "description": "-1831, Wasserversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0508.U1.831", "maps": [], @@ -85759,8 +80865,6 @@ }, "description": "-1833, Mittelspannung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0508.U1.833", "maps": [], @@ -85793,8 +80897,6 @@ }, "description": "-1834, Elektrischer Betriebsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0508.U1.834", "maps": [], @@ -85827,8 +80929,6 @@ }, "description": "-1841A, L\u00fcftung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0508.U1.841A", "maps": [], @@ -85861,8 +80961,6 @@ }, "description": "-1841B, Heiztechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0508.U1.841B", "maps": [], @@ -85895,8 +80993,6 @@ }, "description": "-1841C, Heiztechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0508.U1.841C", "maps": [], @@ -85929,8 +81025,6 @@ }, "description": "-1845, \u00d6llager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0508.U1.845", "maps": [], @@ -85963,8 +81057,6 @@ }, "description": "-1845A, \u00d6llager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0508.U1.845A", "maps": [], @@ -85997,8 +81089,6 @@ }, "description": "-1847, Wasserversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0508.U1.847", "maps": [], @@ -86031,8 +81121,6 @@ }, "description": "-1851, Heiztechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0508.U1.851", "maps": [], @@ -86065,8 +81153,6 @@ }, "description": "-1856, Heizung u. Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0508.U1.856", "maps": [], @@ -86099,8 +81185,6 @@ }, "description": "-1871, Treppenhaus S\u00fcd", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0508.U1.871", "maps": [], @@ -86133,8 +81217,6 @@ }, "description": "-1874, Entrauchung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0508.U1.874", "maps": [], @@ -86167,8 +81249,6 @@ }, "description": "-1880, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0508.U1.880", "maps": [], @@ -86201,8 +81281,6 @@ }, "description": "-1881, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0508.U1.881", "maps": [], @@ -86235,8 +81313,6 @@ }, "description": "-1896, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0508.U1.896", "maps": [], @@ -86269,8 +81345,6 @@ }, "description": "Z925, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0509.01.925", "maps": [], @@ -86303,8 +81377,6 @@ }, "description": "Z926, WC (HKW)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0509.01.926", "maps": [], @@ -86337,8 +81409,6 @@ }, "description": "Z928, Flur (HKW)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0509.01.928", "maps": [], @@ -86371,8 +81441,6 @@ }, "description": "Z929, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0509.01.929", "maps": [], @@ -86405,8 +81473,6 @@ }, "description": "Z930, Treppenhaus 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0509.01.930", "maps": [], @@ -86439,8 +81505,6 @@ }, "description": "Z931, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0509.01.931", "maps": [], @@ -86473,8 +81537,6 @@ }, "description": "Z933, Raumlufttechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0509.01.933", "maps": [], @@ -86507,8 +81569,6 @@ }, "description": "Z935, Elektrotechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0509.01.935", "maps": [], @@ -86541,8 +81601,6 @@ }, "description": "Z937, Elektrotechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0509.01.937", "maps": [], @@ -86575,8 +81633,6 @@ }, "description": "Z955, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0509.01.955", "maps": [], @@ -86609,8 +81665,6 @@ }, "description": "Z957, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0509.01.957", "maps": [], @@ -86643,8 +81697,6 @@ }, "description": "Z959, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0509.01.959", "maps": [], @@ -86677,8 +81729,6 @@ }, "description": "Z960, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0509.01.960", "maps": [], @@ -86711,8 +81761,6 @@ }, "description": "Z973, Elektrotechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0509.01.973", "maps": [], @@ -86745,8 +81793,6 @@ }, "description": "Z975, Elektrotechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0509.01.975", "maps": [], @@ -86779,8 +81825,6 @@ }, "description": "Z987, Raumlufttechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0509.01.987", "maps": [], @@ -86813,8 +81857,6 @@ }, "description": "Z989, Galerieflur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0509.01.989", "maps": [], @@ -86847,8 +81889,6 @@ }, "description": "Z989A, Fluchtbalkon Audimax (Reinigen)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0509.01.989A", "maps": [], @@ -86881,8 +81921,6 @@ }, "description": "Z989B, Fluchttreppe Audimax (Reinigen)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0509.01.989B", "maps": [], @@ -86915,8 +81953,6 @@ }, "description": "Z990, Treppenhaus 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0509.01.990", "maps": [], @@ -86949,8 +81985,6 @@ }, "description": "Z991, Raumlufttechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0509.01.991", "maps": [], @@ -86983,8 +82017,6 @@ }, "description": "Z993, Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0509.01.993", "maps": [], @@ -87017,8 +82049,6 @@ }, "description": "1920, B\u00fcro/Hausmeister", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0509.02.920", "maps": [], @@ -87051,8 +82081,6 @@ }, "description": "1923A, Rundbalkon (HKW-Reinigen)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0509.02.923A", "maps": [], @@ -87085,8 +82113,6 @@ }, "description": "1927, Aufzug (HKW)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0509.02.927", "maps": [], @@ -87119,8 +82145,6 @@ }, "description": "1928, Flur (HKW)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0509.02.928", "maps": [], @@ -87153,8 +82177,6 @@ }, "description": "1929, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0509.02.929", "maps": [], @@ -87187,8 +82209,6 @@ }, "description": "1930, Treppenhaus 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0509.02.930", "maps": [], @@ -87221,8 +82241,6 @@ }, "description": "1930C, \u00dcbergang 1 zu 0504", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0509.02.930C", "maps": [], @@ -87255,8 +82273,6 @@ }, "description": "1931, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0509.02.931", "maps": [], @@ -87289,8 +82305,6 @@ }, "description": "1933, Raumlufttechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0509.02.933", "maps": [], @@ -87323,8 +82337,6 @@ }, "description": "1937, Elektrotechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0509.02.937", "maps": [], @@ -87357,8 +82369,6 @@ }, "description": "1955, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0509.02.955", "maps": [], @@ -87391,8 +82401,6 @@ }, "description": "1957, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0509.02.957", "maps": [], @@ -87425,8 +82433,6 @@ }, "description": "1959, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0509.02.959", "maps": [], @@ -87459,8 +82465,6 @@ }, "description": "1960, Treppenhaus 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0509.02.960", "maps": [], @@ -87493,8 +82497,6 @@ }, "description": "1960C, \u00dcbergang 2 zu 0504", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0509.02.960C", "maps": [], @@ -87527,8 +82529,6 @@ }, "description": "1975, Elektrotechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0509.02.975", "maps": [], @@ -87561,8 +82561,6 @@ }, "description": "1977, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0509.02.977", "maps": [], @@ -87595,8 +82593,6 @@ }, "description": "1986, Audimax Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0509.02.986", "maps": [], @@ -87629,8 +82625,6 @@ }, "description": "1987, Raumlufttechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0509.02.987", "maps": [], @@ -87663,8 +82657,6 @@ }, "description": "1989, Galerieflur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0509.02.989", "maps": [], @@ -87697,8 +82689,6 @@ }, "description": "1990, Treppenhaus 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0509.02.990", "maps": [], @@ -87731,8 +82721,6 @@ }, "description": "1991, Raumlufttechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0509.02.991", "maps": [], @@ -87765,8 +82753,6 @@ }, "description": "1995, Windfang \u00dcbergang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0509.02.995", "maps": [], @@ -87799,8 +82785,6 @@ }, "description": "2929, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0509.03.929", "maps": [], @@ -87833,8 +82817,6 @@ }, "description": "2930, Treppenhaus 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0509.03.930", "maps": [], @@ -87867,8 +82849,6 @@ }, "description": "2931, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0509.03.931", "maps": [], @@ -87901,8 +82881,6 @@ }, "description": "2933, Raumlufttechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0509.03.933", "maps": [], @@ -87935,8 +82913,6 @@ }, "description": "2935, Elektrotechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0509.03.936", "maps": [], @@ -87969,8 +82945,6 @@ }, "description": "2937, Elektrotechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0509.03.937", "maps": [], @@ -88003,8 +82977,6 @@ }, "description": "2941, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0509.03.941", "maps": [], @@ -88037,8 +83009,6 @@ }, "description": "2955, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0509.03.955", "maps": [], @@ -88071,8 +83041,6 @@ }, "description": "2957, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0509.03.957", "maps": [], @@ -88105,8 +83073,6 @@ }, "description": "2959, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0509.03.959", "maps": [], @@ -88139,8 +83105,6 @@ }, "description": "2960, Treppenhaus 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0509.03.960", "maps": [], @@ -88173,8 +83137,6 @@ }, "description": "2973, Elektrotechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0509.03.973", "maps": [], @@ -88207,8 +83169,6 @@ }, "description": "2975, Elektrotechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0509.03.975", "maps": [], @@ -88241,8 +83201,6 @@ }, "description": "2987, Raumlufttechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0509.03.987", "maps": [], @@ -88275,8 +83233,6 @@ }, "description": "2989, Galerieflur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0509.03.989", "maps": [], @@ -88309,8 +83265,6 @@ }, "description": "2990, Treppenhaus 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0509.03.990", "maps": [], @@ -88343,8 +83297,6 @@ }, "description": "2991, Raumlufttechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0509.03.991", "maps": [], @@ -88377,8 +83329,6 @@ }, "description": "2995, Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0509.03.995", "maps": [], @@ -88411,8 +83361,6 @@ }, "description": "2999, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0509.03.999", "maps": [ @@ -88457,8 +83405,6 @@ }, "description": "3929, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0509.04.929", "maps": [], @@ -88491,8 +83437,6 @@ }, "description": "3930, Treppenhaus 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0509.04.930", "maps": [], @@ -88525,8 +83469,6 @@ }, "description": "3931, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0509.04.931", "maps": [], @@ -88559,8 +83501,6 @@ }, "description": "3933, Raumlufttechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0509.04.933", "maps": [], @@ -88593,8 +83533,6 @@ }, "description": "3935, Elektrotechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0509.04.935", "maps": [], @@ -88627,8 +83565,6 @@ }, "description": "3937, Elektrotechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0509.04.937", "maps": [], @@ -88661,8 +83597,6 @@ }, "description": "3955, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0509.04.955", "maps": [], @@ -88695,8 +83629,6 @@ }, "description": "3957, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0509.04.957", "maps": [], @@ -88729,8 +83661,6 @@ }, "description": "3959, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0509.04.959", "maps": [], @@ -88763,8 +83693,6 @@ }, "description": "3960, Treppenhaus 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0509.04.960", "maps": [], @@ -88797,8 +83725,6 @@ }, "description": "3973, Elektrotechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0509.04.973", "maps": [], @@ -88831,8 +83757,6 @@ }, "description": "3975, Elektrotechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0509.04.975", "maps": [], @@ -88865,8 +83789,6 @@ }, "description": "3987, Raumlufttechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0509.04.987", "maps": [], @@ -88899,8 +83821,6 @@ }, "description": "3989, Galerieflur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0509.04.989", "maps": [], @@ -88933,8 +83853,6 @@ }, "description": "3990, Treppenhaus 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0509.04.990", "maps": [], @@ -88967,8 +83885,6 @@ }, "description": "3991, Raumlufttechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0509.04.991", "maps": [], @@ -89001,8 +83917,6 @@ }, "description": "3995, Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0509.04.995", "maps": [], @@ -89035,8 +83949,6 @@ }, "description": "3999, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "0509.04.999", "maps": [], @@ -89069,8 +83981,6 @@ }, "description": "4905, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0509.05.905", "maps": [ @@ -89115,8 +84025,6 @@ }, "description": "4930, Treppenhaus 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0509.05.930", "maps": [], @@ -89149,8 +84057,6 @@ }, "description": "4931, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0509.05.931", "maps": [], @@ -89183,8 +84089,6 @@ }, "description": "4933, Raumlufttechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0509.05.933", "maps": [], @@ -89217,8 +84121,6 @@ }, "description": "4935, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0509.05.935", "maps": [], @@ -89251,8 +84153,6 @@ }, "description": "4937, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0509.05.937", "maps": [], @@ -89285,8 +84185,6 @@ }, "description": "4943, Treppenflur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0509.05.943", "maps": [], @@ -89319,8 +84217,6 @@ }, "description": "4960, Treppenhaus 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0509.05.960", "maps": [], @@ -89353,8 +84249,6 @@ }, "description": "4973, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0509.05.973", "maps": [], @@ -89387,8 +84281,6 @@ }, "description": "4975, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0509.05.975", "maps": [], @@ -89421,8 +84313,6 @@ }, "description": "4987, Raumlufttechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0509.05.987", "maps": [], @@ -89455,8 +84345,6 @@ }, "description": "4989, Galerieflur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0509.05.989", "maps": [], @@ -89489,8 +84377,6 @@ }, "description": "4990, Treppenhaus 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0509.05.990", "maps": [], @@ -89523,8 +84409,6 @@ }, "description": "4991, Raumlufttechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0509.05.991", "maps": [], @@ -89557,8 +84441,6 @@ }, "description": "4995, Fluchtbalkon (Reinigen)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0509.05.995", "maps": [], @@ -89591,8 +84473,6 @@ }, "description": "4996, Fluchtbalkon (Reinigen)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0509.05.996", "maps": [], @@ -89625,8 +84505,6 @@ }, "description": "4997, Fluchtbalkon (Reinigen)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0509.05.997", "maps": [], @@ -89659,8 +84537,6 @@ }, "description": "4998, Fluchtbalkon (Reinigen)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "0509.05.998", "maps": [], @@ -89693,8 +84569,6 @@ }, "description": "0926, WC (HKW)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0509.EG.926", "maps": [], @@ -89727,8 +84601,6 @@ }, "description": "0928, Flur (HKW)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0509.EG.928", "maps": [], @@ -89761,8 +84633,6 @@ }, "description": "0929, Aufzug (HKW)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0509.EG.929", "maps": [], @@ -89795,8 +84665,6 @@ }, "description": "0930, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0509.EG.930", "maps": [], @@ -89829,8 +84697,6 @@ }, "description": "0931, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0509.EG.931", "maps": [], @@ -89863,8 +84729,6 @@ }, "description": "0933, Elektrotechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0509.EG.933", "maps": [], @@ -89897,8 +84761,6 @@ }, "description": "0935, Elektrotechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0509.EG.935", "maps": [], @@ -89931,8 +84793,6 @@ }, "description": "0937, Elektrotechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0509.EG.937", "maps": [], @@ -89965,8 +84825,6 @@ }, "description": "0938, Besprechung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0509.EG.938", "maps": [], @@ -89999,8 +84857,6 @@ }, "description": "0955, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0509.EG.955", "maps": [], @@ -90033,8 +84889,6 @@ }, "description": "0957, WC-Damen / Wickeltisch", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0509.EG.957", "maps": [], @@ -90067,8 +84921,6 @@ }, "description": "0959, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0509.EG.959", "maps": [], @@ -90101,8 +84953,6 @@ }, "description": "0960, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0509.EG.960", "maps": [], @@ -90135,8 +84985,6 @@ }, "description": "0966, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0509.EG.966", "maps": [], @@ -90169,8 +85017,6 @@ }, "description": "0967, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0509.EG.967", "maps": [], @@ -90203,8 +85049,6 @@ }, "description": "0970, Audimax Foyer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0509.EG.970", "maps": [], @@ -90237,8 +85081,6 @@ }, "description": "0971a, Aufzug/Mensa", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0509.EG.971A", "maps": [], @@ -90271,8 +85113,6 @@ }, "description": "0973, Elektrotechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0509.EG.973", "maps": [], @@ -90305,8 +85145,6 @@ }, "description": "0975, Elektrotechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0509.EG.975", "maps": [], @@ -90339,8 +85177,6 @@ }, "description": "0978, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0509.EG.978", "maps": [], @@ -90453,8 +85289,6 @@ }, "description": "0982, Lager Audimax", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0509.EG.982", "maps": [], @@ -90487,8 +85321,6 @@ }, "description": "0983, Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0509.EG.983", "maps": [], @@ -90521,8 +85353,6 @@ }, "description": "Z985, Audimax Regie/Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0509.EG.985", "maps": [], @@ -90555,8 +85385,6 @@ }, "description": "0986, Sp\u00fclk\u00fcche Audimax", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0509.EG.986", "maps": [], @@ -90589,8 +85417,6 @@ }, "description": "0987, Raumlufttechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0509.EG.987", "maps": [], @@ -90623,8 +85449,6 @@ }, "description": "0990, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0509.EG.990", "maps": [], @@ -90657,8 +85481,6 @@ }, "description": "0991, Raumlufttechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0509.EG.991", "maps": [], @@ -90691,8 +85513,6 @@ }, "description": "0992, Putz.-/Abstellraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0509.EG.992", "maps": [], @@ -90725,8 +85545,6 @@ }, "description": "0992A, Lager Audimax", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0509.EG.992A", "maps": [], @@ -90759,8 +85577,6 @@ }, "description": "0992B, Lager Audimax", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0509.EG.992B", "maps": [], @@ -90793,8 +85609,6 @@ }, "description": "0993, Beh.-WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0509.EG.993", "maps": [], @@ -90827,8 +85641,6 @@ }, "description": "0995, Gardarobe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0509.EG.995", "maps": [], @@ -90861,8 +85673,6 @@ }, "description": "0999, Seminarraum gemein. Nut. LKN", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0509.EG.999", "maps": [], @@ -90895,8 +85705,6 @@ }, "description": "-1901A, Wendeltreppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0509.U1.901A", "maps": [], @@ -90929,8 +85737,6 @@ }, "description": "-1909, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0509.U1.909", "maps": [], @@ -90963,8 +85769,6 @@ }, "description": "-1920, Installation (HKW)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0509.U1.920", "maps": [], @@ -90997,8 +85801,6 @@ }, "description": "-1921, Aufzug (HKW)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0509.U1.921", "maps": [], @@ -91031,8 +85833,6 @@ }, "description": "-1930, Treppenhaus 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0509.U1.930", "maps": [], @@ -91065,8 +85865,6 @@ }, "description": "-1935, Elektrotechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0509.U1.935", "maps": [], @@ -91099,8 +85897,6 @@ }, "description": "-1936, Werkstattwaschraum/Dusche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0509.U1.936", "maps": [], @@ -91133,8 +85929,6 @@ }, "description": "-1937, Elektrotechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0509.U1.937", "maps": [], @@ -91167,8 +85961,6 @@ }, "description": "-1938, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0509.U1.938", "maps": [], @@ -91201,8 +85993,6 @@ }, "description": "-1940, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0509.U1.940", "maps": [], @@ -91235,8 +86025,6 @@ }, "description": "-1942, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0509.U1.942", "maps": [], @@ -91269,8 +86057,6 @@ }, "description": "-1947, Studentenarb. m. DV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0509.U1.947", "maps": [], @@ -91303,8 +86089,6 @@ }, "description": "-1948, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0509.U1.948", "maps": [], @@ -91337,8 +86121,6 @@ }, "description": "-1950, Tiefgarage Audimax", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0509.U1.950", "maps": [], @@ -91371,8 +86153,6 @@ }, "description": "-1951, Sprinklerzentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0509.U1.951", "maps": [], @@ -91405,8 +86185,6 @@ }, "description": "-1952, Abstellraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0509.U1.952", "maps": [], @@ -91439,8 +86217,6 @@ }, "description": "-1953, Elektro Verteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0509.U1.953", "maps": [], @@ -91473,8 +86249,6 @@ }, "description": "-1954, Batterieraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0509.U1.954", "maps": [], @@ -91507,8 +86281,6 @@ }, "description": "-1955, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0509.U1.955", "maps": [], @@ -91541,8 +86313,6 @@ }, "description": "-1956, Technik/L\u00fcftung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0509.U1.956", "maps": [], @@ -91575,8 +86345,6 @@ }, "description": "-1959, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0509.U1.959", "maps": [], @@ -91609,8 +86377,6 @@ }, "description": "-1960, Treppenhaus 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0509.U1.960", "maps": [], @@ -91643,8 +86409,6 @@ }, "description": "-1963a, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0509.U1.963A", "maps": [], @@ -91677,8 +86441,6 @@ }, "description": "-1967, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0509.U1.967", "maps": [], @@ -91711,8 +86473,6 @@ }, "description": "-1968, Elektrotechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0509.U1.968", "maps": [], @@ -91745,8 +86505,6 @@ }, "description": "-1973, Installation mit Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0509.U1.973", "maps": [], @@ -91779,8 +86537,6 @@ }, "description": "-1975, Installation mit Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0509.U1.975", "maps": [], @@ -91813,8 +86569,6 @@ }, "description": "-1979, Maschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0509.U1.979", "maps": [], @@ -91847,8 +86601,6 @@ }, "description": "-1980, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0509.U1.980", "maps": [], @@ -91881,8 +86633,6 @@ }, "description": "-1982, WC-Damen / Audimax", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0509.U1.982", "maps": [], @@ -91915,8 +86665,6 @@ }, "description": "-1983, WC- Vorraum Audimax", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0509.U1.983", "maps": [], @@ -91949,8 +86697,6 @@ }, "description": "-1184, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0509.U1.984", "maps": [], @@ -91983,8 +86729,6 @@ }, "description": "-1985, WC-Herren / Audimax", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0509.U1.985", "maps": [], @@ -92017,8 +86761,6 @@ }, "description": "-1986, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0509.U1.986", "maps": [], @@ -92051,8 +86793,6 @@ }, "description": "-1987, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0509.U1.987", "maps": [], @@ -92085,8 +86825,6 @@ }, "description": "-1988, Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0509.U1.988", "maps": [], @@ -92119,8 +86857,6 @@ }, "description": "-1989, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0509.U1.989", "maps": [], @@ -92153,8 +86889,6 @@ }, "description": "-1990, Treppenhaus 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0509.U1.990", "maps": [], @@ -92187,8 +86921,6 @@ }, "description": "-1991, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0509.U1.991", "maps": [], @@ -92221,8 +86953,6 @@ }, "description": "-1994, Elektroverteiler u. Medienlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0509.U1.994", "maps": [], @@ -92255,8 +86985,6 @@ }, "description": "-1996b, Maschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0509.U1.996B", "maps": [], @@ -92289,8 +87017,6 @@ }, "description": "-2901, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "0509.U2.901", "maps": [], @@ -92323,8 +87049,6 @@ }, "description": "-2903, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "0509.U2.903", "maps": [], @@ -92357,8 +87081,6 @@ }, "description": "-2905, Trafo", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "0509.U2.905", "maps": [], @@ -92391,8 +87113,6 @@ }, "description": "-2907, Trafo", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "0509.U2.907", "maps": [], @@ -92425,8 +87145,6 @@ }, "description": "-2928, Install.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "0509.U2.928", "maps": [], @@ -92459,8 +87177,6 @@ }, "description": "-2929, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "0509.U2.929", "maps": [], @@ -92493,8 +87209,6 @@ }, "description": "-2930, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "0509.U2.930", "maps": [], @@ -92527,8 +87241,6 @@ }, "description": "-2931, Pumpe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "0509.U2.931", "maps": [], @@ -92561,8 +87273,6 @@ }, "description": "-2936, Aufzugs-u.F\u00f6rdermasch.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "0509.U2.993B", "maps": [], @@ -92595,8 +87305,6 @@ }, "description": "-1995, Install.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "0509.U2.995", "maps": [], @@ -92629,8 +87337,6 @@ }, "description": "-2996, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "0509.U2.996", "maps": [], @@ -92663,8 +87369,6 @@ }, "description": "-2997, Abstellraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "0509.U2.997", "maps": [], @@ -92697,8 +87401,6 @@ }, "description": "Z995, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "0509.Z1.995", "maps": [], @@ -92731,8 +87433,6 @@ }, "description": "1008, Gardarobe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0510.01.008", "maps": [], @@ -92765,8 +87465,6 @@ }, "description": "1013, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0510.01.013", "maps": [], @@ -92799,8 +87497,6 @@ }, "description": "1013A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0510.01.013A", "maps": [], @@ -92833,8 +87529,6 @@ }, "description": "1019, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0510.01.019", "maps": [], @@ -92867,8 +87561,6 @@ }, "description": "1019A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0510.01.019A", "maps": [], @@ -92901,8 +87593,6 @@ }, "description": "1039, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0510.01.039", "maps": [], @@ -92935,8 +87625,6 @@ }, "description": "1039a, Treppe ZG", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0510.01.039A", "maps": [], @@ -92969,8 +87657,6 @@ }, "description": "1051, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0510.01.051", "maps": [], @@ -93003,8 +87689,6 @@ }, "description": "1051a, Treppe ZG", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0510.01.051A", "maps": [], @@ -93037,8 +87721,6 @@ }, "description": "1075, ZG Treppe/Flur S\u00fcd", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0510.01.075", "maps": [], @@ -93071,8 +87753,6 @@ }, "description": "1075A, ZG Treppe/Flur Nord", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "0510.01.075A", "maps": [], @@ -93105,8 +87785,6 @@ }, "description": "2002, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0510.02.002", "maps": [], @@ -93139,8 +87817,6 @@ }, "description": "2002A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0510.02.002A", "maps": [], @@ -93173,8 +87849,6 @@ }, "description": "2010, Treppenhaus Nord", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0510.02.010", "maps": [], @@ -93207,8 +87881,6 @@ }, "description": "2010A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0510.02.010A", "maps": [], @@ -93241,8 +87913,6 @@ }, "description": "2010B, Treppe Nord", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0510.02.010B", "maps": [], @@ -93275,8 +87945,6 @@ }, "description": "2020, Verbindungsflur Nord/S\u00fcd", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0510.02.020", "maps": [], @@ -93309,8 +87977,6 @@ }, "description": "2026, Raumlufttechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0510.02.026", "maps": [], @@ -93343,8 +88009,6 @@ }, "description": "2030, Treppenhaus S\u00fcd", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0510.02.030", "maps": [], @@ -93377,8 +88041,6 @@ }, "description": "2030A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0510.02.030A", "maps": [], @@ -93411,8 +88073,6 @@ }, "description": "2030B, Treppe S\u00fcd", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0510.02.030B", "maps": [], @@ -93445,8 +88105,6 @@ }, "description": "2040, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0510.02.040", "maps": [], @@ -93479,8 +88137,6 @@ }, "description": "2050, Innenhof Fluchtbalkon (Reinigen)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "0510.02.050", "maps": [], @@ -93513,8 +88169,6 @@ }, "description": "3002, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0510.03.002", "maps": [], @@ -93547,8 +88201,6 @@ }, "description": "3019, Treppenhaus Nord", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0510.03.019", "maps": [], @@ -93581,8 +88233,6 @@ }, "description": "3024, Treppenhaus S\u00fcd", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0510.03.024", "maps": [], @@ -93615,8 +88265,6 @@ }, "description": "3040, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0510.03.040", "maps": [], @@ -93649,8 +88297,6 @@ }, "description": "3040B, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "0510.03.040B", "maps": [], @@ -93683,8 +88329,6 @@ }, "description": "0001, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0510.EG.001", "maps": [], @@ -93717,8 +88361,6 @@ }, "description": "0001a, Installation Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0510.EG.001A", "maps": [], @@ -93751,8 +88393,6 @@ }, "description": "0001B, Behinderten Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0510.EG.001B", "maps": [], @@ -93785,8 +88425,6 @@ }, "description": "0002, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0510.EG.002", "maps": [], @@ -93819,8 +88457,6 @@ }, "description": "0002A, Vorraum Waschbecken", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0510.EG.002A", "maps": [], @@ -93853,8 +88489,6 @@ }, "description": "0003, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0510.EG.003", "maps": [], @@ -93887,8 +88521,6 @@ }, "description": "0012, Installation/Brandmeldezentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0510.EG.012", "maps": [], @@ -93921,8 +88553,6 @@ }, "description": "0012A, Brandmeldezentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0510.EG.012A", "maps": [], @@ -93955,8 +88585,6 @@ }, "description": "0012B, Vorraum Brandmeldezentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0510.EG.012B", "maps": [], @@ -93989,8 +88617,6 @@ }, "description": "0014, Pf\u00f6rtner/Auskunft", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0510.EG.014", "maps": [], @@ -94023,8 +88649,6 @@ }, "description": "0015, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0510.EG.015", "maps": [], @@ -94057,8 +88681,6 @@ }, "description": "0015A, Hauptreppe Nord", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0510.EG.015A", "maps": [], @@ -94091,8 +88713,6 @@ }, "description": "0019, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0510.EG.019", "maps": [], @@ -94125,8 +88745,6 @@ }, "description": "0019A, Vorraum/Waschbecken", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0510.EG.019A", "maps": [], @@ -94159,8 +88777,6 @@ }, "description": "0020, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0510.EG.020", "maps": [], @@ -94193,8 +88809,6 @@ }, "description": "0020A, Hauptreppe S\u00fcd", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0510.EG.020A", "maps": [], @@ -94227,8 +88841,6 @@ }, "description": "0020B, Lager S\u00fcd unter Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0510.EG.020B", "maps": [], @@ -94261,8 +88873,6 @@ }, "description": "0020C, Information", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0510.EG.020C", "maps": [], @@ -94295,8 +88905,6 @@ }, "description": "-1003, Aufenthalt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0510.U1.003", "maps": [], @@ -94329,8 +88937,6 @@ }, "description": "-1007, Lager/Schreibmaschinen/Akten", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0510.U1.007", "maps": [], @@ -94363,8 +88969,6 @@ }, "description": "-1011, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0510.U1.011", "maps": [], @@ -94397,8 +89001,6 @@ }, "description": "-1015, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0510.U1.015", "maps": [], @@ -94431,8 +89033,6 @@ }, "description": "-1015A, S\u00fcdtreppe Keller", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0510.U1.015A", "maps": [], @@ -94465,8 +89065,6 @@ }, "description": "-1015B, Nordtreppe Keller", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0510.U1.015B", "maps": [], @@ -94499,8 +89097,6 @@ }, "description": "-1016, Lager/Seife/Putzmittel", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0510.U1.016", "maps": [], @@ -94533,8 +89129,6 @@ }, "description": "-1018, Toilettenpapier/Handt\u00fccher", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0510.U1.018", "maps": [], @@ -94567,8 +89161,6 @@ }, "description": "Container 1 L\u00f6sungsmittel", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0511.EG.101", "maps": [], @@ -94601,8 +89193,6 @@ }, "description": "Container 2 L\u00f6sungsmittel", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0511.EG.102", "maps": [], @@ -94635,8 +89225,6 @@ }, "description": "Container 3 Salze", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0511.EG.103", "maps": [], @@ -94669,8 +89257,6 @@ }, "description": "Container 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0511.EG.104", "maps": [], @@ -94703,8 +89289,6 @@ }, "description": "Container 5", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0511.EG.105", "maps": [], @@ -94737,8 +89321,6 @@ }, "description": "Container 6", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0511.EG.106", "maps": [], @@ -94771,8 +89353,6 @@ }, "description": "K118, Reduzierstation (Heizung)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0511.U1.118", "maps": [], @@ -94805,8 +89385,6 @@ }, "description": "K119, Hochspannung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0511.U1.119", "maps": [], @@ -94839,8 +89417,6 @@ }, "description": "K120, Niederspannung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0511.U1.120", "maps": [], @@ -94873,8 +89449,6 @@ }, "description": "K121, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0511.U1.121", "maps": [], @@ -94907,8 +89481,6 @@ }, "description": "K122, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0511.U1.122", "maps": [], @@ -94941,8 +89513,6 @@ }, "description": "K123, Flur 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0511.U1.123", "maps": [], @@ -94975,8 +89545,6 @@ }, "description": "K124, Trafokammer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0511.U1.124", "maps": [], @@ -95009,8 +89577,6 @@ }, "description": "K125, Trafokammer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0511.U1.125", "maps": [], @@ -95043,8 +89609,6 @@ }, "description": "K126, Trafokammer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0511.U1.126", "maps": [], @@ -95077,8 +89641,6 @@ }, "description": "K127, Trockenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0511.U1.127", "maps": [], @@ -95111,8 +89673,6 @@ }, "description": "K128, Spritzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0511.U1.128", "maps": [], @@ -95145,8 +89705,6 @@ }, "description": "K129, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0511.U1.129", "maps": [], @@ -95179,8 +89737,6 @@ }, "description": "K130, Schlosserei", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0511.U1.130", "maps": [], @@ -95213,8 +89769,6 @@ }, "description": "K131, Technikraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0511.U1.131", "maps": [], @@ -95247,8 +89801,6 @@ }, "description": "K134, Wertstofflager 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0511.U1.134", "maps": [], @@ -95281,8 +89833,6 @@ }, "description": "K135, Wertstofflager 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0511.U1.135", "maps": [], @@ -95315,8 +89865,6 @@ }, "description": "K138, Einfahrt Wertstofflager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0511.U1.138", "maps": [], @@ -95349,8 +89897,6 @@ }, "description": "K140, Lager Schlosserei", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0511.U1.140", "maps": [], @@ -95383,8 +89929,6 @@ }, "description": "K141, B\u00fcro/Wertstofflager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0511.U1.141", "maps": [], @@ -95417,8 +89961,6 @@ }, "description": "-1581, Garage Hofwerkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0512.U1.281", "maps": [], @@ -95451,8 +89993,6 @@ }, "description": "-1581A, Hofwerkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "0512.U1.281A", "maps": [], @@ -95485,8 +90025,6 @@ }, "description": "0.001, Tentomax HS Stammgel\u00e4nde", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "0598.EG.001", "maps": [ @@ -95559,8 +90097,6 @@ }, "description": "LMU ASC A 348", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "1003.03.348", "maps": [ @@ -95605,8 +90141,6 @@ }, "description": "1.0.65, H\u00f6rsaal-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "1501.EG.065", "maps": [], @@ -95639,8 +90173,6 @@ }, "description": "51.1.51, H\u00f6rsaal C", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "1551.01.051", "maps": [], @@ -95673,8 +90205,6 @@ }, "description": "51.0.51, H\u00f6rsaal C", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "1551.EG.051", "maps": [ @@ -95719,8 +90249,6 @@ }, "description": "51.0.52, H\u00f6rsaal B", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "1551.EG.052", "maps": [ @@ -95765,8 +90293,6 @@ }, "description": "51.0.53, H\u00f6rsaal A", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "1551.EG.053", "maps": [ @@ -95811,8 +90337,6 @@ }, "description": "59.0.1, Kursraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "1559.EG.001", "maps": [], @@ -95845,8 +90369,6 @@ }, "description": "D.1.07, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "1901.01.107", "maps": [], @@ -95879,8 +90401,6 @@ }, "description": "D.2.01, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "1901.02.201", "maps": [], @@ -95913,8 +90433,6 @@ }, "description": "L.1.10, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "1902.01.110", "maps": [], @@ -95947,8 +90465,6 @@ }, "description": "8002, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2308.EG.002", "maps": [], @@ -95981,8 +90497,6 @@ }, "description": "8016, USC-Raum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2308.EG.016", "maps": [], @@ -96015,8 +90529,6 @@ }, "description": "9103, Kiosk vermietet", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2309.01.103", "maps": [], @@ -96049,8 +90561,6 @@ }, "description": "1104, Kiosk vermietet", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2309.01.104", "maps": [], @@ -96083,8 +90593,6 @@ }, "description": "9105, Tennis-Shop vermietet", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2309.01.105", "maps": [], @@ -96117,8 +90625,6 @@ }, "description": "9109, Lager-Verpachtet", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2309.01.109", "maps": [], @@ -96151,8 +90657,6 @@ }, "description": "9109A, Lager-Verpachtet", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2309.01.109A", "maps": [], @@ -96185,8 +90689,6 @@ }, "description": "9003, Wasserversorgung,-Aufbereitung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2309.EG.003", "maps": [], @@ -96219,8 +90721,6 @@ }, "description": "9004, Verteilerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2309.EG.004", "maps": [], @@ -96253,8 +90753,6 @@ }, "description": "9006, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2309.EG.006", "maps": [], @@ -96287,8 +90785,6 @@ }, "description": "15102a, Tech07b Elektro Verteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2315.01.102A", "maps": [], @@ -96321,8 +90817,6 @@ }, "description": "15111A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2315.01.111A", "maps": [], @@ -96355,8 +90849,6 @@ }, "description": "15113a, Tech07a Elektro Verteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2315.01.113A", "maps": [], @@ -96389,8 +90881,6 @@ }, "description": "15125, Seminarraum PZ 01", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2315.01.125", "maps": [], @@ -96423,8 +90913,6 @@ }, "description": "15202a, Tech07d Elektro Verteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2315.02.202A", "maps": [], @@ -96457,8 +90945,6 @@ }, "description": "15211, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2315.02.211", "maps": [], @@ -96491,8 +90977,6 @@ }, "description": "15212, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2315.02.212", "maps": [], @@ -96525,8 +91009,6 @@ }, "description": "15219a, Tech07c Elektro Verteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2315.02.219A", "maps": [], @@ -96559,8 +91041,6 @@ }, "description": "15224, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2315.02.224", "maps": [], @@ -96593,8 +91073,6 @@ }, "description": "15030 ZG, Technikverteiler ZG", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2315.EG.030", "maps": [], @@ -96627,8 +91105,6 @@ }, "description": "15U01, Technikzentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2315.U1.001", "maps": [], @@ -96661,8 +91137,6 @@ }, "description": "15U02, Technik\u00fcbergabe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2315.U1.002", "maps": [], @@ -96695,8 +91169,6 @@ }, "description": "15U04, Aufzugsmaschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2315.U1.004", "maps": [], @@ -96729,8 +91201,6 @@ }, "description": "15U05, Tech05 Elektroraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2315.U1.005", "maps": [], @@ -96763,8 +91233,6 @@ }, "description": "15U40, Westtreppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2315.U1.040", "maps": [], @@ -96797,8 +91265,6 @@ }, "description": "15U60, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2315.U1.060", "maps": [], @@ -96831,8 +91297,6 @@ }, "description": "21012, Fu\u00dfballplatz 12 (Vermietet an Landeshauptst", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2321.EG.012", "maps": [], @@ -96865,8 +91329,6 @@ }, "description": "21013, Fu\u00dfballplatz 13 (Vermietet an Landeshauptst", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2321.EG.013", "maps": [], @@ -96899,8 +91361,6 @@ }, "description": "01.2330.101, S1 - Seminarraum 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2330.01.101", "maps": [], @@ -96933,8 +91393,6 @@ }, "description": "01.2330.102, HS2 - H\u00f6rsaal 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2330.01.102", "maps": [], @@ -96967,8 +91425,6 @@ }, "description": "01.2330.103, CIP-Pool", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2330.01.103", "maps": [], @@ -97001,8 +91457,6 @@ }, "description": "01.2330.104, S2 - Seminarraum 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2330.01.104", "maps": [], @@ -97035,8 +91489,6 @@ }, "description": "01.2330.105, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2330.01.105", "maps": [], @@ -97069,8 +91521,6 @@ }, "description": "01.2330.106, Info/Empfang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2330.01.106", "maps": [], @@ -97103,8 +91553,6 @@ }, "description": "01.2330.107, ZHS Markenausgabe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2330.01.107", "maps": [], @@ -97137,8 +91585,6 @@ }, "description": "01.2330.201, HS3 - H\u00f6rsaal 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2330.01.201", "maps": [], @@ -97171,8 +91617,6 @@ }, "description": "01.2330.202, HS4 - H\u00f6rsaal 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2330.01.202", "maps": [], @@ -97205,8 +91649,6 @@ }, "description": "01.2330.203, S3 - Seminarraum 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2330.01.203", "maps": [], @@ -97239,8 +91681,6 @@ }, "description": "01.2330.204, S4 - Seminarraum 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2330.01.204", "maps": [], @@ -97273,8 +91713,6 @@ }, "description": "01.2330.205, S5 - Seminarraum 5", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2330.01.205", "maps": [], @@ -97307,8 +91745,6 @@ }, "description": "01.2330.206, S6 - Seminarraum 6", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2330.01.206", "maps": [], @@ -97341,8 +91777,6 @@ }, "description": "01.2330.207, Automaten", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2330.01.207", "maps": [], @@ -97375,8 +91809,6 @@ }, "description": "01.2330.208, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2330.01.208", "maps": [], @@ -97409,8 +91841,6 @@ }, "description": "01.2330.209, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2330.01.209", "maps": [], @@ -97443,8 +91873,6 @@ }, "description": "01.2330.701, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2330.01.701", "maps": [], @@ -97477,8 +91905,6 @@ }, "description": "01.2330.702, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2330.01.702", "maps": [], @@ -97511,8 +91937,6 @@ }, "description": "01.2330.705, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2330.01.705", "maps": [], @@ -97545,8 +91969,6 @@ }, "description": "01.2330.706, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2330.01.706", "maps": [], @@ -97579,8 +92001,6 @@ }, "description": "01.2330.707, Foyer Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2330.01.707", "maps": [], @@ -97613,8 +92033,6 @@ }, "description": "01.2330.708, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2330.01.708", "maps": [], @@ -97647,8 +92065,6 @@ }, "description": "01.2330.710, Windfang Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2330.01.710", "maps": [], @@ -97681,8 +92097,6 @@ }, "description": "01.2330.711, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2330.01.711", "maps": [], @@ -97715,8 +92129,6 @@ }, "description": "01.2330.750, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2330.01.750", "maps": [], @@ -97749,8 +92161,6 @@ }, "description": "01.2330.751, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2330.01.751", "maps": [], @@ -97783,8 +92193,6 @@ }, "description": "01.2330.756, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2330.01.756", "maps": [], @@ -97817,8 +92225,6 @@ }, "description": "01.2330.757, Foyer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2330.01.757", "maps": [], @@ -97851,8 +92257,6 @@ }, "description": "01.2330.759, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2330.01.759", "maps": [], @@ -97885,8 +92289,6 @@ }, "description": "01.2330.760, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2330.01.760", "maps": [], @@ -97919,8 +92321,6 @@ }, "description": "01.2330.761, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2330.01.761", "maps": [], @@ -97953,8 +92353,6 @@ }, "description": "01.2330.762, Foyer West", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2330.01.762", "maps": [], @@ -97987,8 +92385,6 @@ }, "description": "01.2330.763, Windfang West", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2330.01.763", "maps": [], @@ -98021,8 +92417,6 @@ }, "description": "01.2330.856, Personenaufzugsschacht 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2330.01.856", "maps": [], @@ -98055,8 +92449,6 @@ }, "description": "01.2330.970, Terrasse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2330.01.970", "maps": [], @@ -98089,8 +92481,6 @@ }, "description": "02.2330.581, E2 Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2330.02.581", "maps": [], @@ -98123,8 +92513,6 @@ }, "description": "02.2330.582, E2 Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2330.02.582", "maps": [], @@ -98157,8 +92545,6 @@ }, "description": "00.2330.101, Vorraum Umkleide 14 Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.101", "maps": [], @@ -98191,8 +92577,6 @@ }, "description": "00.2330.102, Vorraum Umkleide 13 Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.102", "maps": [], @@ -98225,8 +92609,6 @@ }, "description": "00.2330.103, Umkleide 14 Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.103", "maps": [], @@ -98259,8 +92641,6 @@ }, "description": "00.2330.104, Umkleide 13 Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.104", "maps": [], @@ -98293,8 +92673,6 @@ }, "description": "00.2330.105, Dusche 14 Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.105", "maps": [], @@ -98327,8 +92705,6 @@ }, "description": "00.2330.106, Dusche 13 Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.106", "maps": [], @@ -98361,8 +92737,6 @@ }, "description": "00.2330.107, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.107", "maps": [], @@ -98395,8 +92769,6 @@ }, "description": "00.2330.109, Umkleide 7 Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.109", "maps": [], @@ -98429,8 +92801,6 @@ }, "description": "00.2330.110, Dusche 7 Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.110", "maps": [], @@ -98463,8 +92833,6 @@ }, "description": "00.2330.111, WC 7 Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.111", "maps": [], @@ -98497,8 +92865,6 @@ }, "description": "00.2330.112, Umkleide 8 Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.112", "maps": [], @@ -98531,8 +92897,6 @@ }, "description": "00.2330.113, Dusche 8 Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.113", "maps": [], @@ -98565,8 +92929,6 @@ }, "description": "00.2330.114, WC 8 Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.114", "maps": [], @@ -98599,8 +92961,6 @@ }, "description": "00.2330.115, Umkleide 9 Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.115", "maps": [], @@ -98633,8 +92993,6 @@ }, "description": "00.2330.116, Dusche 9 Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.116", "maps": [], @@ -98667,8 +93025,6 @@ }, "description": "00.2330.117, WC 9 Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.117", "maps": [], @@ -98701,8 +93057,6 @@ }, "description": "00.2330.118, WC Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.118", "maps": [], @@ -98735,8 +93089,6 @@ }, "description": "00.2330.119, Beh.- WC Barrierefrei", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.119", "maps": [], @@ -98769,8 +93121,6 @@ }, "description": "00.2330.120, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.120", "maps": [], @@ -98803,8 +93153,6 @@ }, "description": "00.2330.121, Umkleide 10 Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.121", "maps": [], @@ -98837,8 +93185,6 @@ }, "description": "00.2330.122, Dusche 10 Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.122", "maps": [], @@ -98871,8 +93217,6 @@ }, "description": "00.2330.123, WC 10 Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.123", "maps": [], @@ -98905,8 +93249,6 @@ }, "description": "00.2330.124, Umkleide 11 Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.124", "maps": [], @@ -98939,8 +93281,6 @@ }, "description": "00.2330.125, Dusche 11 Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.125", "maps": [], @@ -98973,8 +93313,6 @@ }, "description": "00.2330.126, WC 11 Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.126", "maps": [], @@ -99007,8 +93345,6 @@ }, "description": "00.2330.127, Umkleide 12 Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.127", "maps": [], @@ -99041,8 +93377,6 @@ }, "description": "00.2330.128, Dusche 12 Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.128", "maps": [], @@ -99075,8 +93409,6 @@ }, "description": "00.2330.129, WC 12 Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.129", "maps": [], @@ -99109,8 +93441,6 @@ }, "description": "00.2330.130, ALF Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.130", "maps": [], @@ -99143,8 +93473,6 @@ }, "description": "00.2330.201, Wickeltisch/Barrierefreies WC m. Lieg", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.201", "maps": [], @@ -99177,8 +93505,6 @@ }, "description": "00.2330.202, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.202", "maps": [], @@ -99211,8 +93537,6 @@ }, "description": "00.2330.203, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.203", "maps": [], @@ -99245,8 +93569,6 @@ }, "description": "00.2330.204, Lager ZA 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.204", "maps": [], @@ -99279,8 +93601,6 @@ }, "description": "00.2330.206, Umkleide 6 Damen Barrierefrei", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.206", "maps": [], @@ -99313,8 +93633,6 @@ }, "description": "00.2330.207, Dusche 6 Damen Barrierefrei", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.207", "maps": [], @@ -99347,8 +93665,6 @@ }, "description": "00.2330.208, WC 6 Damen Barrierefrei", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.208", "maps": [], @@ -99381,8 +93697,6 @@ }, "description": "00.2330.209, SM Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.209", "maps": [], @@ -99415,8 +93729,6 @@ }, "description": "00.2330.210, Umkleide 5 Herren Barrierefrei", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.210", "maps": [], @@ -99449,8 +93761,6 @@ }, "description": "00.2330.211, Dusche 5 Herren Barrierefrei", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.211", "maps": [], @@ -99483,8 +93793,6 @@ }, "description": "00.2330.212, WC 5 Herren Barrierefrei", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.212", "maps": [], @@ -99517,8 +93825,6 @@ }, "description": "00.2330.213, Umkleide 4 Herren Personal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.213", "maps": [], @@ -99551,8 +93857,6 @@ }, "description": "00.2330.214, Dusche 4 Herren Personal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.214", "maps": [], @@ -99585,8 +93889,6 @@ }, "description": "00.2330.214, WC 4 Herren Personal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.215", "maps": [], @@ -99619,8 +93921,6 @@ }, "description": "00.2330.216, Umkleide 3 Damen Personal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.216", "maps": [], @@ -99653,8 +93953,6 @@ }, "description": "00.2330.217, Dusche 3 Damen Personal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.217", "maps": [], @@ -99687,8 +93985,6 @@ }, "description": "00.2330.218, WC 3 Damen Personal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.218", "maps": [], @@ -99721,8 +94017,6 @@ }, "description": "00.2330.219, Ger\u00e4temeisterei", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.219", "maps": [], @@ -99755,8 +94049,6 @@ }, "description": "00.2330.220, Ger\u00e4teausgabe Nord", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.220", "maps": [], @@ -99789,8 +94081,6 @@ }, "description": "00.2330.221, Ger\u00e4teausgabe S\u00fcd", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.221", "maps": [], @@ -99823,8 +94113,6 @@ }, "description": "00.2330.222, Ger\u00e4temeisterei Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.222", "maps": [], @@ -99857,8 +94145,6 @@ }, "description": "00.2330.701, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.701", "maps": [], @@ -99891,8 +94177,6 @@ }, "description": "00.2330.702, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.702", "maps": [], @@ -99925,8 +94209,6 @@ }, "description": "00.2330.705, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.705", "maps": [], @@ -99959,8 +94241,6 @@ }, "description": "00.2330.706, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.706", "maps": [], @@ -99993,8 +94273,6 @@ }, "description": "00.2330.707, Windfang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.707", "maps": [], @@ -100027,8 +94305,6 @@ }, "description": "00.2330.750, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.750", "maps": [], @@ -100061,8 +94337,6 @@ }, "description": "00.2330.702, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.751", "maps": [], @@ -100095,8 +94369,6 @@ }, "description": "00.2330.755, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.755", "maps": [], @@ -100129,8 +94401,6 @@ }, "description": "00.2330.756, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.756", "maps": [], @@ -100163,8 +94433,6 @@ }, "description": "00.2330.757, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.757", "maps": [], @@ -100197,8 +94465,6 @@ }, "description": "00.2330.758, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.758", "maps": [], @@ -100231,8 +94497,6 @@ }, "description": "00.2330.759, Windfang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.759", "maps": [], @@ -100265,8 +94529,6 @@ }, "description": "00.2330.856, Personenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.856", "maps": [], @@ -100299,8 +94561,6 @@ }, "description": "00.2330.980, Weg Au\u00dfenbereich", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2330.EG.980", "maps": [], @@ -100333,8 +94593,6 @@ }, "description": "-1.2330.101, Kollektor LZ3+Elektro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.101", "maps": [], @@ -100367,8 +94625,6 @@ }, "description": "-1.2330.102, L\u00fcftungs-Zentrale 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.102", "maps": [], @@ -100401,8 +94657,6 @@ }, "description": "-1.2330.107, Zentralarchiv", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.104", "maps": [], @@ -100435,8 +94689,6 @@ }, "description": "-1.2330.105, BMZ", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.105", "maps": [], @@ -100469,8 +94721,6 @@ }, "description": "-1.2330.106, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.106", "maps": [], @@ -100503,8 +94753,6 @@ }, "description": "-1.2330.107, (30.U.227) Zentralarchiv", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.107", "maps": [], @@ -100537,8 +94785,6 @@ }, "description": "-1.2330.225, L\u00fcftungs-Zentrale 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.108", "maps": [], @@ -100571,8 +94817,6 @@ }, "description": "-1.2330.109, SIBE-UV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.109", "maps": [], @@ -100605,8 +94849,6 @@ }, "description": "-1.2330.111, Kollektor Dia", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.111", "maps": [], @@ -100639,8 +94881,6 @@ }, "description": "-1.2330.112, D Zentralarchiv", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.112", "maps": [], @@ -100673,8 +94913,6 @@ }, "description": "-1.2330.113, (30.U.224) Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.113", "maps": [], @@ -100707,8 +94945,6 @@ }, "description": "-1.2330.115, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.115", "maps": [], @@ -100741,8 +94977,6 @@ }, "description": "-1.2330.117, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.117", "maps": [], @@ -100775,8 +95009,6 @@ }, "description": "-1.2330.119, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.119", "maps": [], @@ -100809,8 +95041,6 @@ }, "description": "-1.2330.121, Sportger\u00e4te", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.121", "maps": [], @@ -100843,8 +95073,6 @@ }, "description": "-1.2330.122, Lager Au\u00dfendienst", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.122", "maps": [], @@ -100877,8 +95105,6 @@ }, "description": "-1.2330.123, ZA4 Europapaletten Raum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.123", "maps": [], @@ -100911,8 +95137,6 @@ }, "description": "-1.2330.124, Heizzentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.124", "maps": [], @@ -100945,8 +95169,6 @@ }, "description": "-1.2330.125, Zentr. Putzraum-Waschraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.125", "maps": [], @@ -100979,8 +95201,6 @@ }, "description": "-1.2330.126, FMG Zentralserver", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.126", "maps": [], @@ -101013,8 +95233,6 @@ }, "description": "-1.2330.127, E-UV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.127", "maps": [], @@ -101047,8 +95265,6 @@ }, "description": "-1.2330.128, DV-UV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.128", "maps": [], @@ -101081,8 +95297,6 @@ }, "description": "-1.2330.129, Aufzug Maschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.129", "maps": [], @@ -101115,8 +95329,6 @@ }, "description": "-1.2330.130, (30.U.214) Wassertank 177 m\u00b3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.130", "maps": [], @@ -101149,8 +95361,6 @@ }, "description": "-1.2330.102, (30.U.216) Wasseraufbereitung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.132", "maps": [], @@ -101183,8 +95393,6 @@ }, "description": "-1.2330.136, SWM", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.136", "maps": [], @@ -101217,8 +95425,6 @@ }, "description": "-1.2330.137, Notstromdiesel", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.137", "maps": [], @@ -101251,8 +95457,6 @@ }, "description": "-1.2330.138, TK", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.138", "maps": [], @@ -101285,8 +95489,6 @@ }, "description": "-1.2330.139, EDV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.139", "maps": [], @@ -101319,8 +95521,6 @@ }, "description": "-1.2330.140, SIBE", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.140", "maps": [], @@ -101353,8 +95553,6 @@ }, "description": "-1.2330.141, Sprinklerzentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.141", "maps": [], @@ -101387,8 +95585,6 @@ }, "description": "-1.2330.142, Wassertank 81 m\u00b3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.142", "maps": [], @@ -101421,8 +95617,6 @@ }, "description": "-1.2330.143, Wassertank 47 m\u00b3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.143", "maps": [], @@ -101455,8 +95649,6 @@ }, "description": "-1.2330.144, Wassertank 130 m\u00b3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.144", "maps": [], @@ -101489,8 +95681,6 @@ }, "description": "-1.2330.145, Wasserz\u00e4hler+Wasseraufbereitung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.145", "maps": [], @@ -101523,8 +95713,6 @@ }, "description": "-1.2330.202, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.202", "maps": [], @@ -101557,8 +95745,6 @@ }, "description": "-1.2330.203, Spracharlarmzentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.203", "maps": [], @@ -101591,8 +95777,6 @@ }, "description": "-1.2330.204, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.204", "maps": [], @@ -101625,8 +95809,6 @@ }, "description": "-1.2330.205, K\u00e4lte-Maschinen-Raum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.205", "maps": [], @@ -101659,8 +95841,6 @@ }, "description": "-1.2330.206, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.206", "maps": [], @@ -101693,8 +95873,6 @@ }, "description": "-1.2330.207, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.207", "maps": [], @@ -101727,8 +95905,6 @@ }, "description": "-1.2330.208, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.208", "maps": [], @@ -101761,8 +95937,6 @@ }, "description": "-1.2330.209, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.209", "maps": [], @@ -101795,8 +95969,6 @@ }, "description": "-1.2330.210, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.210", "maps": [], @@ -101829,8 +96001,6 @@ }, "description": "-1.2330.211, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.211", "maps": [], @@ -101863,8 +96033,6 @@ }, "description": "-1.2330.212, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.212", "maps": [], @@ -101897,8 +96065,6 @@ }, "description": "-1.2330.213, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.213", "maps": [], @@ -101931,8 +96097,6 @@ }, "description": "-1.2330.214, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.214", "maps": [], @@ -101965,8 +96129,6 @@ }, "description": "-1.2330.215, L\u00fcftungs-Zentrale 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.215", "maps": [], @@ -101999,8 +96161,6 @@ }, "description": "-1.2330.216, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.216", "maps": [], @@ -102033,8 +96193,6 @@ }, "description": "-1.2330.217, K\u00e4ltezentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.217", "maps": [], @@ -102067,8 +96225,6 @@ }, "description": "-1.2330.218, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.218", "maps": [], @@ -102101,8 +96257,6 @@ }, "description": "-1.2330.224, Aufzug Maschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.224", "maps": [], @@ -102135,8 +96289,6 @@ }, "description": "-1.2330.225, L\u00fcftungs-Zentrale 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.225", "maps": [], @@ -102169,8 +96321,6 @@ }, "description": "-1.2330.226, Brunnenwasser-Zentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.226", "maps": [], @@ -102203,8 +96353,6 @@ }, "description": "-1.2330.226, DV-UV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.228", "maps": [], @@ -102237,8 +96385,6 @@ }, "description": "-1.2330.230, SIBE", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.230", "maps": [], @@ -102271,8 +96417,6 @@ }, "description": "-1.2330.701, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.701", "maps": [], @@ -102305,8 +96449,6 @@ }, "description": "-1.2330.705, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.705", "maps": [], @@ -102339,8 +96481,6 @@ }, "description": "-1.2330.706, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.706", "maps": [], @@ -102373,8 +96513,6 @@ }, "description": "-1.2330.707, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.707", "maps": [], @@ -102407,8 +96545,6 @@ }, "description": "-1.2330.708, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.708", "maps": [], @@ -102441,8 +96577,6 @@ }, "description": "-1.2330.709, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.709", "maps": [], @@ -102475,8 +96609,6 @@ }, "description": "-1.2330.710, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.710", "maps": [], @@ -102509,8 +96641,6 @@ }, "description": "-1.2330.740, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.740", "maps": [], @@ -102543,8 +96673,6 @@ }, "description": "-1.2330.751, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.751", "maps": [], @@ -102577,8 +96705,6 @@ }, "description": "-1.2330.756, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.756", "maps": [], @@ -102611,8 +96737,6 @@ }, "description": "-1.2330.842, Aufzug 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.842", "maps": [], @@ -102645,8 +96769,6 @@ }, "description": "-1.2330.856, Aufzug 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2330.U1.856", "maps": [], @@ -102679,8 +96801,6 @@ }, "description": "01.2331.101, HS1 - H\u00f6rsaal 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2331.01.101", "maps": [], @@ -102713,8 +96833,6 @@ }, "description": "01.2331.102, Lager ZA 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2331.01.102", "maps": [], @@ -102747,8 +96865,6 @@ }, "description": "01.2331.103, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2331.01.103", "maps": [], @@ -102781,8 +96897,6 @@ }, "description": "01.2331.104, EP-Technik unter Audimax", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2331.01.104", "maps": [], @@ -102815,8 +96929,6 @@ }, "description": "01.2331.112, BOG - Bouldergalerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2331.01.112", "maps": [], @@ -102849,8 +96961,6 @@ }, "description": "01.2331.114, Speisesaal 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2331.01.114", "maps": [], @@ -102883,8 +96993,6 @@ }, "description": "01.2331.201, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2331.01.201", "maps": [], @@ -102917,8 +97025,6 @@ }, "description": "01.2331.203, Wickeltisch/Barrierefreies WC Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2331.01.203", "maps": [], @@ -102951,8 +97057,6 @@ }, "description": "01.2331.204, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2331.01.204", "maps": [], @@ -102985,8 +97089,6 @@ }, "description": "01.2331.206, Wickeltisch/Barrierefreies WC Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2331.01.206", "maps": [], @@ -103019,8 +97121,6 @@ }, "description": "01.2331.207, L\u00fcftungszentrale 7", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2331.01.207", "maps": [], @@ -103053,8 +97153,6 @@ }, "description": "01.2331.224, Speisesaal 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2331.01.224", "maps": [], @@ -103087,8 +97185,6 @@ }, "description": "01.2331.301, Cafe Bar Sitzbereich", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2331.01.301", "maps": [], @@ -103121,8 +97217,6 @@ }, "description": "01.2331.302, Cafe Ausgabe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2331.01.302", "maps": [], @@ -103155,8 +97249,6 @@ }, "description": "01.2331.303, Cafe Bar", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2331.01.303", "maps": [], @@ -103189,8 +97281,6 @@ }, "description": "01.2331.305, Speiseausgabe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2331.01.305", "maps": [], @@ -103223,8 +97313,6 @@ }, "description": "01.2331.306, Cafeteria Vorbereitung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2331.01.306", "maps": [], @@ -103257,8 +97345,6 @@ }, "description": "01.2331.307, Cafeteria Sp\u00fclk\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2331.01.307", "maps": [], @@ -103291,8 +97377,6 @@ }, "description": "01.2331.308, Cafeteria Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2331.01.308", "maps": [], @@ -103325,8 +97409,6 @@ }, "description": "01.2331.310, Cafereria Vork\u00fchlraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2331.01.310", "maps": [], @@ -103359,8 +97441,6 @@ }, "description": "01.2331.311, Cafereria Tiefk\u00fchlraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2331.01.311", "maps": [], @@ -103393,8 +97473,6 @@ }, "description": "01.2331.312, Cafereria Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2331.01.312", "maps": [], @@ -103427,8 +97505,6 @@ }, "description": "01.2331.313, Cafeteria-WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2331.01.313", "maps": [], @@ -103461,8 +97537,6 @@ }, "description": "01.2331.314, Cafeteria-Vorraum-WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2331.01.314", "maps": [], @@ -103495,8 +97569,6 @@ }, "description": "01.2331.315, Cafeteria Aufenthaltsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2331.01.315", "maps": [], @@ -103529,8 +97601,6 @@ }, "description": "01.2331.305, Cafeteria-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2331.01.316", "maps": [], @@ -103563,8 +97633,6 @@ }, "description": "01.2331.317, Cafeteria-Personalumkleide", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2331.01.317", "maps": [], @@ -103597,8 +97665,6 @@ }, "description": "01.2331.318, Speisesaal 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2331.01.318", "maps": [], @@ -103631,8 +97697,6 @@ }, "description": "01.2331.319, Speisesaal 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2331.01.319", "maps": [], @@ -103665,8 +97729,6 @@ }, "description": "01.2331.701, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2331.01.701", "maps": [], @@ -103699,8 +97761,6 @@ }, "description": "01.2331.702, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2331.01.702", "maps": [], @@ -103733,8 +97793,6 @@ }, "description": "01.2331.703, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2331.01.703", "maps": [], @@ -103767,8 +97825,6 @@ }, "description": "01.2331.705, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2331.01.705", "maps": [], @@ -103801,8 +97857,6 @@ }, "description": "01.2331.720, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2331.01.720", "maps": [], @@ -103835,8 +97889,6 @@ }, "description": "01.2331.745, Cafereria Flurbereich", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2331.01.745", "maps": [], @@ -103869,8 +97921,6 @@ }, "description": "01.2331.760, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2331.01.760", "maps": [], @@ -103903,8 +97953,6 @@ }, "description": "01.2331.899, Hubplattform", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2331.01.899", "maps": [], @@ -103937,8 +97985,6 @@ }, "description": "01.2331.970, Cafeteria-Terrasse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2331.01.970", "maps": [], @@ -103971,8 +98017,6 @@ }, "description": "01.2331.971, Terrasse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2331.01.971", "maps": [], @@ -104005,8 +98049,6 @@ }, "description": "00.2331.101, HS1 - H\u00f6rsaal 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2331.EG.101", "maps": [], @@ -104039,8 +98081,6 @@ }, "description": "00.2331.102, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2331.EG.102", "maps": [], @@ -104073,8 +98113,6 @@ }, "description": "00.2331.103, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2331.EG.103", "maps": [], @@ -104107,8 +98145,6 @@ }, "description": "00.2331.104, FMG Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2331.EG.104", "maps": [], @@ -104141,8 +98177,6 @@ }, "description": "00.2331.105, Umkleide 2 Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2331.EG.105", "maps": [], @@ -104175,8 +98209,6 @@ }, "description": "00.2331.106, Dusche 2 Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2331.EG.106", "maps": [], @@ -104209,8 +98241,6 @@ }, "description": "00.2331.107, WC 2 Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2331.EG.107", "maps": [], @@ -104243,8 +98273,6 @@ }, "description": "00.2331.108, Umkleide 1 Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2331.EG.108", "maps": [], @@ -104277,8 +98305,6 @@ }, "description": "00.2331.109, Dusche 1 Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2331.EG.109", "maps": [], @@ -104311,8 +98337,6 @@ }, "description": "00.2331.110, WC 1 Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2331.EG.110", "maps": [], @@ -104345,8 +98369,6 @@ }, "description": "00.2331.111, KLH - Kletterhalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2331.EG.111", "maps": [], @@ -104379,8 +98401,6 @@ }, "description": "00.2331.112, KBH - Eingangsbereich", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2331.EG.112", "maps": [], @@ -104413,8 +98433,6 @@ }, "description": "00.2331.113, GTH - Gymnastiktanzhalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2331.EG.113", "maps": [], @@ -104447,8 +98465,6 @@ }, "description": "00.2331.114, Ger\u00e4teraum GTH", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2331.EG.114", "maps": [], @@ -104481,8 +98497,6 @@ }, "description": "00.2331.115, Lehrendenzimmer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2331.EG.115", "maps": [], @@ -104515,8 +98529,6 @@ }, "description": "00.2331.116, BTT - Bouldertraining- und Therapie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2331.EG.116", "maps": [], @@ -104549,8 +98561,6 @@ }, "description": "00.2331.117, KBH - Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2331.EG.117", "maps": [], @@ -104583,8 +98593,6 @@ }, "description": "00.2331.120, EP - Technik unter HS1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2331.EG.120", "maps": [], @@ -104617,8 +98625,6 @@ }, "description": "00.2331.201, Hallenputzmittel", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2331.EG.201", "maps": [], @@ -104651,8 +98657,6 @@ }, "description": "00.2331.203, Lager Rollst\u00fchle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2331.EG.203", "maps": [], @@ -104685,8 +98689,6 @@ }, "description": "00.2331.204, Ger\u00e4teraum VFH 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2331.EG.204", "maps": [], @@ -104719,8 +98721,6 @@ }, "description": "00.2331.205, Erste Hilfe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2331.EG.205", "maps": [], @@ -104753,8 +98753,6 @@ }, "description": "00.2331.206, Ger\u00e4teraum VFH 2+3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2331.EG.206", "maps": [], @@ -104787,8 +98785,6 @@ }, "description": "00.2331.208, Ger\u00e4teraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2331.EG.208", "maps": [], @@ -104821,8 +98817,6 @@ }, "description": "00.2331.209, Ger\u00e4teraum VFH 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2331.EG.209", "maps": [], @@ -104855,8 +98849,6 @@ }, "description": "00.2331.210, Ger\u00e4teraum VFH 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2331.EG.210", "maps": [], @@ -104889,8 +98881,6 @@ }, "description": "00.2331.212, Mess. Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2331.EG.212", "maps": [], @@ -104923,8 +98913,6 @@ }, "description": "00.2331.220, VFH 1 - Vierfachhalle 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2331.EG.220", "maps": [], @@ -104957,8 +98945,6 @@ }, "description": "00.2331.221, VFH 2 - Vierfachhalle 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2331.EG.221", "maps": [], @@ -104991,8 +98977,6 @@ }, "description": "00.2331.222, VFH 3 - Vierfachhalle 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2331.EG.222", "maps": [], @@ -105025,8 +99009,6 @@ }, "description": "00.2331.223, VFH 4 - Vierfachhalle 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2331.EG.223", "maps": [], @@ -105059,8 +99041,6 @@ }, "description": "00.2331.301, SPF - Sprintflur/Weitsprunggrube", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2331.EG.301", "maps": [], @@ -105093,8 +99073,6 @@ }, "description": "00.2331.302, Kraftbereich", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2331.EG.302", "maps": [], @@ -105127,8 +99105,6 @@ }, "description": "00.2331.401, B\u00fcro ZHS Ger\u00e4temeister", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2331.EG.401", "maps": [], @@ -105161,8 +99137,6 @@ }, "description": "00.2331.402, Diagnostik Bewegung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2331.EG.402", "maps": [], @@ -105195,8 +99169,6 @@ }, "description": "00.2331.403, Diagnostik Ger\u00e4teraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2331.EG.403", "maps": [], @@ -105229,8 +99201,6 @@ }, "description": "00.2331.405, Kraft Diagnostik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2331.EG.405", "maps": [], @@ -105263,8 +99233,6 @@ }, "description": "00.2331.406, Neuromus. Diagnostik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2331.EG.406", "maps": [], @@ -105297,8 +99265,6 @@ }, "description": "00.2331.407, Sensomotorische Diagnostik 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2331.EG.407", "maps": [], @@ -105331,8 +99297,6 @@ }, "description": "00.2331.408, Sensomotorische Diagnostik 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2331.EG.408", "maps": [], @@ -105365,8 +99329,6 @@ }, "description": "00.2331.409, BWW Neurophysiologische Diag.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2331.EG.409", "maps": [], @@ -105399,8 +99361,6 @@ }, "description": "00.2331.410, Mess. B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2331.EG.410", "maps": [], @@ -105433,8 +99393,6 @@ }, "description": "00.2331.411, Mess- u. Medientechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2331.EG.411", "maps": [], @@ -105467,8 +99425,6 @@ }, "description": "00.2331.412, Cafetria M\u00fcllraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2331.EG.412", "maps": [], @@ -105501,8 +99457,6 @@ }, "description": "00.2331.413, Cafeteria Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2331.EG.413", "maps": [], @@ -105535,8 +99489,6 @@ }, "description": "00.2331.701, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2331.EG.701", "maps": [], @@ -105569,8 +99521,6 @@ }, "description": "00.2331.702, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2331.EG.702", "maps": [], @@ -105603,8 +99553,6 @@ }, "description": "00.2331.705, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2331.EG.705", "maps": [], @@ -105637,8 +99585,6 @@ }, "description": "00.2331.720, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2331.EG.720", "maps": [], @@ -105671,8 +99617,6 @@ }, "description": "00.2331.726, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2331.EG.726", "maps": [], @@ -105705,8 +99649,6 @@ }, "description": "00.2331.727, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2331.EG.727", "maps": [], @@ -105739,8 +99681,6 @@ }, "description": "00.2331.760, Treppe Terrasse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2331.EG.760", "maps": [], @@ -105773,8 +99713,6 @@ }, "description": "00.2331.765, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2331.EG.765", "maps": [], @@ -105807,8 +99745,6 @@ }, "description": "00.2331.766, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2331.EG.766", "maps": [], @@ -105841,8 +99777,6 @@ }, "description": "00.2331.899, Hubplattform", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2331.EG.899", "maps": [], @@ -105875,8 +99809,6 @@ }, "description": "01.2332.301, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2332.01.301", "maps": [], @@ -105909,8 +99841,6 @@ }, "description": "01.2332.842, Aufzug 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2332.01.842", "maps": [], @@ -105943,8 +99873,6 @@ }, "description": "00.2332.101, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2332.EG.101", "maps": [], @@ -105977,8 +99905,6 @@ }, "description": "00.2332.102, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2332.EG.102", "maps": [], @@ -106011,8 +99937,6 @@ }, "description": "00.2332.201, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2332.EG.201", "maps": [], @@ -106045,8 +99969,6 @@ }, "description": "00.2332.202, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2332.EG.202", "maps": [], @@ -106079,8 +100001,6 @@ }, "description": "00.2332.705, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2332.EG.705", "maps": [], @@ -106113,8 +100033,6 @@ }, "description": "00.2332.725, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2332.EG.725", "maps": [], @@ -106147,8 +100065,6 @@ }, "description": "00.2332.740, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2332.EG.740", "maps": [], @@ -106181,8 +100097,6 @@ }, "description": "00.2332.745, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2332.EG.745", "maps": [], @@ -106215,8 +100129,6 @@ }, "description": "00.2332.842, Aufzug 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2332.EG.842", "maps": [], @@ -106249,8 +100161,6 @@ }, "description": "00.2332.961, Flur Au\u00dfenbereich", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2332.EG.961", "maps": [], @@ -106283,8 +100193,6 @@ }, "description": "00.2332.962, Flur Au\u00dfenbereich", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2332.EG.962", "maps": [], @@ -106317,8 +100225,6 @@ }, "description": "00.2332.963, Flur Au\u00dfenbereich", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2332.EG.963", "maps": [], @@ -106351,8 +100257,6 @@ }, "description": "01.2333.305, Lager H\u00f6rs\u00e4le/Seminarr\u00e4ume", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2333.01.305", "maps": [], @@ -106385,8 +100289,6 @@ }, "description": "01.2333.307, L\u00fcftungszentrale 8", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2333.01.307", "maps": [], @@ -106419,8 +100321,6 @@ }, "description": "01.2333.308, E-ELA", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2333.01.308", "maps": [], @@ -106453,8 +100353,6 @@ }, "description": "01.2333.701, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2333.01.701", "maps": [], @@ -106487,8 +100385,6 @@ }, "description": "01.2333.720, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2333.01.720", "maps": [], @@ -106521,8 +100417,6 @@ }, "description": "01.2333.740, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2333.01.740", "maps": [], @@ -106555,8 +100449,6 @@ }, "description": "01.2333.741, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2333.01.741", "maps": [], @@ -106589,8 +100481,6 @@ }, "description": "01.2333.821, (33.1.270) E-UV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2333.01.821", "maps": [], @@ -106623,8 +100513,6 @@ }, "description": "00.2333.101, Lager/Waschraum/Klettern", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2333.EG.101", "maps": [], @@ -106657,8 +100545,6 @@ }, "description": "00.2333.102, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2333.EG.102", "maps": [], @@ -106691,8 +100577,6 @@ }, "description": "00.2333.105, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2333.EG.105", "maps": [], @@ -106725,8 +100609,6 @@ }, "description": "00.2333.106, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2333.EG.106", "maps": [], @@ -106759,8 +100641,6 @@ }, "description": "00.2333.107, SM-PP Traininsbereich", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2333.EG.107", "maps": [], @@ -106793,8 +100673,6 @@ }, "description": "00.2333.111, Ergometrie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2333.EG.111", "maps": [], @@ -106827,8 +100705,6 @@ }, "description": "00.2333.112, Diagnostik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2333.EG.112", "maps": [], @@ -106861,8 +100737,6 @@ }, "description": "00.2333.113, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2333.EG.113", "maps": [], @@ -106895,8 +100769,6 @@ }, "description": "00.2333.114, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2333.EG.114", "maps": [], @@ -106929,8 +100801,6 @@ }, "description": "00.2333.115, Diagnostik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2333.EG.115", "maps": [], @@ -106963,8 +100833,6 @@ }, "description": "00.2333.201, DFH 1 - Dreifachhalle 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2333.EG.201", "maps": [], @@ -106997,8 +100865,6 @@ }, "description": "00.2333.202, DFH 2 - Dreifachhalle 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2333.EG.202", "maps": [], @@ -107031,8 +100897,6 @@ }, "description": "00.2333.203, DFH 3 - Dreifachhalle 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2333.EG.203", "maps": [], @@ -107065,8 +100929,6 @@ }, "description": "00.2333.204, DIA - Diagnostikhalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2333.EG.204", "maps": [], @@ -107099,8 +100961,6 @@ }, "description": "00.2333.205, GSR 1 - Gesundheitsraum 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2333.EG.205", "maps": [], @@ -107133,8 +100993,6 @@ }, "description": "00.2333.206, GSR 2 - Gesundheitsraum 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2333.EG.206", "maps": [], @@ -107167,8 +101025,6 @@ }, "description": "00.2333.301, Erste Hilfe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2333.EG.301", "maps": [], @@ -107201,8 +101057,6 @@ }, "description": "00.2333.302, Ger\u00e4teraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2333.EG.302", "maps": [], @@ -107235,8 +101089,6 @@ }, "description": "00.2333.303, Ger\u00e4teraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2333.EG.303", "maps": [], @@ -107269,8 +101121,6 @@ }, "description": "00.2333.306, Ger\u00e4teraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2333.EG.306", "maps": [], @@ -107303,8 +101153,6 @@ }, "description": "00.2333.308, Putzmittel", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2333.EG.308", "maps": [], @@ -107337,8 +101185,6 @@ }, "description": "00.2333.310, FIT - Fitnessraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2333.EG.310", "maps": [], @@ -107371,8 +101217,6 @@ }, "description": "00.2333.311, Lager FIT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2333.EG.311", "maps": [], @@ -107405,8 +101249,6 @@ }, "description": "00.2333.205, TUH 1 - Turnhalle 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2333.EG.320", "maps": [], @@ -107439,8 +101281,6 @@ }, "description": "00.2333.321, TUH 2 - Turnhalle 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2333.EG.321", "maps": [], @@ -107473,8 +101313,6 @@ }, "description": "00.2333.322, TUH 3 - Turnhalle 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2333.EG.322", "maps": [], @@ -107507,8 +101345,6 @@ }, "description": "00.2333.323, STH - Schulturnhalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2333.EG.323", "maps": [], @@ -107541,8 +101377,6 @@ }, "description": "00.2333.701, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2333.EG.701", "maps": [], @@ -107575,8 +101409,6 @@ }, "description": "00.2333.705, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2333.EG.705", "maps": [], @@ -107609,8 +101441,6 @@ }, "description": "00.2333.706, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2333.EG.706", "maps": [], @@ -107643,8 +101473,6 @@ }, "description": "00.2333.707, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2333.EG.707", "maps": [], @@ -107677,8 +101505,6 @@ }, "description": "00.2333.708, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2333.EG.708", "maps": [], @@ -107711,8 +101537,6 @@ }, "description": "00.2333.720, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2333.EG.720", "maps": [], @@ -107745,8 +101569,6 @@ }, "description": "00.2333.740, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2333.EG.740", "maps": [], @@ -107779,8 +101601,6 @@ }, "description": "00.2333.741, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2333.EG.741", "maps": [], @@ -107813,8 +101633,6 @@ }, "description": "00.2333.745, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2333.EG.745", "maps": [], @@ -107847,8 +101665,6 @@ }, "description": "01.2334.301, Theke u. EDV-Arbeitspl\u00e4tze", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2334.01.301", "maps": [], @@ -107881,8 +101697,6 @@ }, "description": "01.2334.302, WC-Damen + Barrierefrei", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2334.01.302", "maps": [], @@ -107915,8 +101729,6 @@ }, "description": "01.2334.302, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2334.01.303", "maps": [], @@ -107949,8 +101761,6 @@ }, "description": "01.2334.305, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2334.01.305", "maps": [], @@ -107983,8 +101793,6 @@ }, "description": "01.2334.306, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2334.01.306", "maps": [], @@ -108017,8 +101825,6 @@ }, "description": "01.2334.308, Freihandbereich", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2334.01.308", "maps": [], @@ -108051,8 +101857,6 @@ }, "description": "01.2334.309, Kopierer/Scanner", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2334.01.309", "maps": [], @@ -108085,8 +101889,6 @@ }, "description": "01.2334.310, Carrel 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2334.01.310", "maps": [], @@ -108119,8 +101921,6 @@ }, "description": "01.2334.311, Carrel 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2334.01.311", "maps": [], @@ -108153,8 +101953,6 @@ }, "description": "01.2334.312, Carrel 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2334.01.312", "maps": [], @@ -108187,8 +101985,6 @@ }, "description": "01.2334.313, Carrel 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2334.01.313", "maps": [], @@ -108221,8 +102017,6 @@ }, "description": "01.2334.314, Carrel 5", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2334.01.314", "maps": [], @@ -108255,8 +102049,6 @@ }, "description": "01.2334.315, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2334.01.315", "maps": [], @@ -108289,8 +102081,6 @@ }, "description": "01.2334.316, Carrel 6 - Barrierefrei", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2334.01.316", "maps": [], @@ -108323,8 +102113,6 @@ }, "description": "01.2334.317, Lesebereich", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2334.01.317", "maps": [], @@ -108357,8 +102145,6 @@ }, "description": "01.2334.318, Schulungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2334.01.318", "maps": [], @@ -108391,8 +102177,6 @@ }, "description": "01.2334.319, Gruppenarbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2334.01.319", "maps": [], @@ -108425,8 +102209,6 @@ }, "description": "01.2334.320, Gruppenarbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2334.01.320", "maps": [], @@ -108459,8 +102241,6 @@ }, "description": "01.2334.745, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2334.01.740", "maps": [], @@ -108493,8 +102273,6 @@ }, "description": "01.2334.741, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2334.01.741", "maps": [], @@ -108527,8 +102305,6 @@ }, "description": "01.2334.745, Windfang Bibliothek", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2334.01.745", "maps": [], @@ -108561,8 +102337,6 @@ }, "description": "01.2334.746, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2334.01.746", "maps": [], @@ -108595,8 +102369,6 @@ }, "description": "01.2334.809, Aufzug 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2334.01.809", "maps": [], @@ -108629,8 +102401,6 @@ }, "description": "00.2334.202, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2334.EG.101", "maps": [], @@ -108663,8 +102433,6 @@ }, "description": "00.2334.102, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2334.EG.102", "maps": [], @@ -108697,8 +102465,6 @@ }, "description": "00.2334.201, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2334.EG.201", "maps": [], @@ -108731,8 +102497,6 @@ }, "description": "00.2334.202, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2334.EG.202", "maps": [], @@ -108765,8 +102529,6 @@ }, "description": "00.2334.301, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2334.EG.301", "maps": [], @@ -108799,8 +102561,6 @@ }, "description": "00.2334.302, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2334.EG.302", "maps": [], @@ -108833,8 +102593,6 @@ }, "description": "00.2334.303, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2334.EG.303", "maps": [], @@ -108867,8 +102625,6 @@ }, "description": "00.2334.304, Drucker", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2334.EG.304", "maps": [], @@ -108901,8 +102657,6 @@ }, "description": "00.2334.306, Kompaktmagazin", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2334.EG.306", "maps": [], @@ -108935,8 +102689,6 @@ }, "description": "00.2334.307, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2334.EG.307", "maps": [], @@ -108969,8 +102721,6 @@ }, "description": "00.2334.308, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2334.EG.308", "maps": [], @@ -109003,8 +102753,6 @@ }, "description": "00.2334.309, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2334.EG.309", "maps": [], @@ -109037,8 +102785,6 @@ }, "description": "00.2334.310, Kompaktmagazin", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2334.EG.310", "maps": [], @@ -109071,8 +102817,6 @@ }, "description": "00.2334.311, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2334.EG.311", "maps": [], @@ -109105,8 +102849,6 @@ }, "description": "00.2334.313, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2334.EG.313", "maps": [], @@ -109139,8 +102881,6 @@ }, "description": "00.2334.315, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2334.EG.315", "maps": [], @@ -109173,8 +102913,6 @@ }, "description": "00.2334.317, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2334.EG.317", "maps": [], @@ -109207,8 +102945,6 @@ }, "description": "00.2334.319, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2334.EG.319", "maps": [], @@ -109241,8 +102977,6 @@ }, "description": "00.2334.321, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2334.EG.321", "maps": [], @@ -109275,8 +103009,6 @@ }, "description": "00.2334.323, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2334.EG.323", "maps": [], @@ -109309,8 +103041,6 @@ }, "description": "00.2334.327, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2334.EG.327", "maps": [], @@ -109343,8 +103073,6 @@ }, "description": "00.2334.329, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2334.EG.329", "maps": [], @@ -109377,8 +103105,6 @@ }, "description": "00.2334.331, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2334.EG.331", "maps": [], @@ -109411,8 +103137,6 @@ }, "description": "00.2334.333, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2334.EG.333", "maps": [], @@ -109445,8 +103169,6 @@ }, "description": "00.2334.335, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2334.EG.335", "maps": [], @@ -109479,8 +103201,6 @@ }, "description": "00.2334.337, EDV Raum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2334.EG.337", "maps": [], @@ -109513,8 +103233,6 @@ }, "description": "00.2334.401, WC Barrierefrei", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2334.EG.401", "maps": [], @@ -109547,8 +103265,6 @@ }, "description": "00.2334.402, Umkleide 15", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2334.EG.402", "maps": [], @@ -109581,8 +103297,6 @@ }, "description": "00.2334.403, Dusche 15", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2334.EG.403", "maps": [], @@ -109615,8 +103329,6 @@ }, "description": "00.2334.404, WC 15", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2334.EG.404", "maps": [], @@ -109649,8 +103361,6 @@ }, "description": "00.2334.402, Umkleide 16", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2334.EG.405", "maps": [], @@ -109683,8 +103393,6 @@ }, "description": "00.2334.406, Dusche 16", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2334.EG.406", "maps": [], @@ -109717,8 +103425,6 @@ }, "description": "00.2334.407, WC 16", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2334.EG.407", "maps": [], @@ -109751,8 +103457,6 @@ }, "description": "00.2334.408, Aussenger\u00e4telager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2334.EG.408", "maps": [], @@ -109785,8 +103489,6 @@ }, "description": "00.2334.705, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2334.EG.705", "maps": [], @@ -109819,8 +103521,6 @@ }, "description": "00.2334.725, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2334.EG.725", "maps": [], @@ -109853,8 +103553,6 @@ }, "description": "00.2334.740, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2334.EG.740", "maps": [], @@ -109887,8 +103585,6 @@ }, "description": "00.2334.741, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2334.EG.741", "maps": [], @@ -109921,8 +103617,6 @@ }, "description": "00.2334.745, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2334.EG.745", "maps": [], @@ -109955,8 +103649,6 @@ }, "description": "00.2334.765, Rampe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2334.EG.746", "maps": [], @@ -109989,8 +103681,6 @@ }, "description": "00.2334.747, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2334.EG.747", "maps": [], @@ -110023,8 +103713,6 @@ }, "description": "00.2334.748, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2334.EG.748", "maps": [], @@ -110057,8 +103745,6 @@ }, "description": "00.2334.749, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2334.EG.749", "maps": [], @@ -110091,8 +103777,6 @@ }, "description": "00.2334.750, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2334.EG.750", "maps": [], @@ -110125,8 +103809,6 @@ }, "description": "00.2334.751, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2334.EG.751", "maps": [], @@ -110159,8 +103841,6 @@ }, "description": "00.2334.899, Aufzug 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2334.EG.899", "maps": [], @@ -110193,8 +103873,6 @@ }, "description": "00.2334.961, Flur Aussenbereich", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2334.EG.961", "maps": [], @@ -110227,8 +103905,6 @@ }, "description": "00.2334.962, Flur Aussenbereich", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2334.EG.962", "maps": [], @@ -110261,8 +103937,6 @@ }, "description": "00.2334.963, Flur Aussenbereich", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2334.EG.963", "maps": [], @@ -110295,8 +103969,6 @@ }, "description": "104, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2401.01.104", "maps": [], @@ -110329,8 +104001,6 @@ }, "description": "124, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2401.01.124", "maps": [], @@ -110363,8 +104033,6 @@ }, "description": "125, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2401.01.125", "maps": [], @@ -110397,8 +104065,6 @@ }, "description": "126, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2401.01.126", "maps": [], @@ -110431,8 +104097,6 @@ }, "description": "127, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2401.01.127", "maps": [], @@ -110465,8 +104129,6 @@ }, "description": "128, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2401.01.128", "maps": [], @@ -110499,8 +104161,6 @@ }, "description": "129, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2401.01.129", "maps": [], @@ -110533,8 +104193,6 @@ }, "description": "130, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2401.01.130", "maps": [], @@ -110567,8 +104225,6 @@ }, "description": "222, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2401.02.222", "maps": [], @@ -110601,8 +104257,6 @@ }, "description": "223, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2401.02.223", "maps": [], @@ -110635,8 +104289,6 @@ }, "description": "224, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2401.02.224", "maps": [], @@ -110669,8 +104321,6 @@ }, "description": "225, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2401.02.225", "maps": [], @@ -110703,8 +104353,6 @@ }, "description": "226, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2401.02.226", "maps": [], @@ -110737,8 +104385,6 @@ }, "description": "227, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2401.02.227", "maps": [], @@ -110771,8 +104417,6 @@ }, "description": "228, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2401.02.228", "maps": [], @@ -110805,8 +104449,6 @@ }, "description": "230, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2401.02.230", "maps": [], @@ -110839,8 +104481,6 @@ }, "description": "301, Dachlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2401.03.301", "maps": [], @@ -110873,8 +104513,6 @@ }, "description": "302, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2401.03.302", "maps": [], @@ -110907,8 +104545,6 @@ }, "description": "303, Speicher", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2401.03.303", "maps": [], @@ -110941,8 +104577,6 @@ }, "description": "304, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2401.03.304", "maps": [], @@ -110975,8 +104609,6 @@ }, "description": "016, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2401.EG.016", "maps": [], @@ -111009,8 +104641,6 @@ }, "description": "018, Raumlufttechnische Anlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2401.EG.018", "maps": [], @@ -111043,8 +104673,6 @@ }, "description": "021, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2401.EG.021", "maps": [], @@ -111077,8 +104705,6 @@ }, "description": "027, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2401.EG.027", "maps": [], @@ -111111,8 +104737,6 @@ }, "description": "028, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2401.EG.028", "maps": [], @@ -111145,8 +104769,6 @@ }, "description": "029, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2401.EG.029", "maps": [], @@ -111179,8 +104801,6 @@ }, "description": "0029A, Anlage f\u00fcr Gase und Fl\u00fcssigkeiten", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2401.EG.029A", "maps": [], @@ -111213,8 +104833,6 @@ }, "description": "030, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2401.EG.030", "maps": [], @@ -111247,8 +104865,6 @@ }, "description": "031, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2401.EG.031", "maps": [], @@ -111281,8 +104897,6 @@ }, "description": "032, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2401.EG.032", "maps": [], @@ -111315,8 +104929,6 @@ }, "description": "033, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2401.EG.033", "maps": [], @@ -111349,8 +104961,6 @@ }, "description": "033A, Elektrische Versorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2401.EG.033A", "maps": [], @@ -111383,8 +104993,6 @@ }, "description": "034, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2401.EG.034", "maps": [], @@ -111417,8 +105025,6 @@ }, "description": "0035, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2401.EG.035", "maps": [], @@ -111451,8 +105057,6 @@ }, "description": "K2, Holzchemie, Kompressorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2401.U1.002", "maps": [], @@ -111485,8 +105089,6 @@ }, "description": "K3, Heizung und Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2401.U1.003", "maps": [], @@ -111519,8 +105121,6 @@ }, "description": "K5, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2401.U1.005", "maps": [], @@ -111553,8 +105153,6 @@ }, "description": "K6, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2401.U1.006", "maps": [], @@ -111587,8 +105185,6 @@ }, "description": "K8, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2401.U1.008", "maps": [], @@ -111621,8 +105217,6 @@ }, "description": "K9, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2401.U1.009", "maps": [], @@ -111655,8 +105249,6 @@ }, "description": "115, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2402.01.115", "maps": [], @@ -111689,8 +105281,6 @@ }, "description": "116, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2402.01.116", "maps": [], @@ -111723,8 +105313,6 @@ }, "description": "117, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2402.01.117", "maps": [], @@ -111757,8 +105345,6 @@ }, "description": "118, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2402.01.118", "maps": [], @@ -111791,8 +105377,6 @@ }, "description": "119, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2402.01.119", "maps": [], @@ -111825,8 +105409,6 @@ }, "description": "120, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2402.01.120", "maps": [], @@ -111859,8 +105441,6 @@ }, "description": "121, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2402.01.121", "maps": [], @@ -111893,8 +105473,6 @@ }, "description": "122, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2402.01.122", "maps": [], @@ -111927,8 +105505,6 @@ }, "description": "221, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2402.02.221", "maps": [], @@ -111961,8 +105537,6 @@ }, "description": "222, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2402.02.222", "maps": [], @@ -111995,8 +105569,6 @@ }, "description": "223, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2402.02.223", "maps": [], @@ -112029,8 +105601,6 @@ }, "description": "224, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2402.02.224", "maps": [], @@ -112063,8 +105633,6 @@ }, "description": "225, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2402.02.225", "maps": [], @@ -112097,8 +105665,6 @@ }, "description": "226, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2402.02.226", "maps": [], @@ -112131,8 +105697,6 @@ }, "description": "227, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2402.02.227", "maps": [], @@ -112165,8 +105729,6 @@ }, "description": "D1, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2402.03.301", "maps": [], @@ -112199,8 +105761,6 @@ }, "description": "D2, Aufzugs- und F\u00f6rdermaschinen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2402.03.302", "maps": [], @@ -112233,8 +105793,6 @@ }, "description": "D3, Heizung und Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2402.03.303", "maps": [], @@ -112267,8 +105825,6 @@ }, "description": "D4, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2402.03.304", "maps": [], @@ -112301,8 +105857,6 @@ }, "description": "D5, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2402.03.305", "maps": [], @@ -112335,8 +105889,6 @@ }, "description": "D6, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2402.03.306", "maps": [], @@ -112369,8 +105921,6 @@ }, "description": "021, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2402.EG.021", "maps": [], @@ -112403,8 +105953,6 @@ }, "description": "022, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2402.EG.022", "maps": [], @@ -112437,8 +105985,6 @@ }, "description": "023, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2402.EG.023", "maps": [], @@ -112471,8 +106017,6 @@ }, "description": "024, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2402.EG.024", "maps": [], @@ -112505,8 +106049,6 @@ }, "description": "025, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2402.EG.025", "maps": [], @@ -112539,8 +106081,6 @@ }, "description": "026, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2402.EG.026", "maps": [], @@ -112573,8 +106113,6 @@ }, "description": "027, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2402.EG.027", "maps": [], @@ -112607,8 +106145,6 @@ }, "description": "U1, Elektrische Versorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2402.U1.001", "maps": [], @@ -112641,8 +106177,6 @@ }, "description": "U6, Waschraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2402.U1.006", "maps": [], @@ -112675,8 +106209,6 @@ }, "description": "U6A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2402.U1.006A", "maps": [], @@ -112709,8 +106241,6 @@ }, "description": "U14, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2402.U1.014", "maps": [], @@ -112743,8 +106273,6 @@ }, "description": "U15, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2402.U1.015", "maps": [], @@ -112777,8 +106305,6 @@ }, "description": "U16, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2402.U1.016", "maps": [], @@ -112811,8 +106337,6 @@ }, "description": "U17, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2402.U1.017", "maps": [], @@ -112845,8 +106369,6 @@ }, "description": "U18, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2402.U1.018", "maps": [], @@ -112879,8 +106401,6 @@ }, "description": "U19, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2402.U1.019", "maps": [], @@ -112913,8 +106433,6 @@ }, "description": "U20, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2402.U1.020", "maps": [], @@ -112947,8 +106465,6 @@ }, "description": "K2, Abwasseraufb.-u. Beseitigung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "2402.U2.002", "maps": [], @@ -112981,8 +106497,6 @@ }, "description": "K3, Raumlufttechnische Anlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "2402.U2.003", "maps": [], @@ -113015,8 +106529,6 @@ }, "description": "K4, Wasserversorgung / Druckluft", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "2402.U2.004", "maps": [], @@ -113049,8 +106561,6 @@ }, "description": "K5, Heizung und Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "2402.U2.005", "maps": [], @@ -113083,8 +106593,6 @@ }, "description": "K6, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "2402.U2.006", "maps": [], @@ -113117,8 +106625,6 @@ }, "description": "K7, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "2402.U2.007", "maps": [], @@ -113151,8 +106657,6 @@ }, "description": "K8, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "2402.U2.008", "maps": [], @@ -113185,8 +106689,6 @@ }, "description": "K9, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "2402.U2.009", "maps": [], @@ -113219,8 +106721,6 @@ }, "description": "K10, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "2402.U2.010", "maps": [], @@ -113253,8 +106753,6 @@ }, "description": "01.03, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2410.01.103", "maps": [], @@ -113287,8 +106785,6 @@ }, "description": "01.04, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2410.01.104", "maps": [], @@ -113321,8 +106817,6 @@ }, "description": "01.05, Umkleide-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2410.01.105", "maps": [], @@ -113355,8 +106849,6 @@ }, "description": "01.08, Umkleide-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2410.01.108", "maps": [], @@ -113389,8 +106881,6 @@ }, "description": "01.09, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2410.01.109", "maps": [], @@ -113423,8 +106913,6 @@ }, "description": "01.10, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2410.01.110", "maps": [], @@ -113457,8 +106945,6 @@ }, "description": "01.90, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2410.01.190", "maps": [], @@ -113491,8 +106977,6 @@ }, "description": "01.91, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2410.01.191", "maps": [], @@ -113525,8 +107009,6 @@ }, "description": "01.92, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2410.01.192", "maps": [], @@ -113559,8 +107041,6 @@ }, "description": "01.93, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2410.01.193", "maps": [], @@ -113593,8 +107073,6 @@ }, "description": "01.94, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2410.01.194", "maps": [], @@ -113627,8 +107105,6 @@ }, "description": "01.95, Dachterrasse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2410.01.195", "maps": [], @@ -113661,8 +107137,6 @@ }, "description": "01.96, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2410.01.196", "maps": [], @@ -113695,8 +107169,6 @@ }, "description": "02.01, Besprechung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2410.02.201", "maps": [], @@ -113729,8 +107201,6 @@ }, "description": "02.02, Copy", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2410.02.202", "maps": [], @@ -113763,8 +107233,6 @@ }, "description": "02.03, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2410.02.203", "maps": [], @@ -113797,8 +107265,6 @@ }, "description": "02.04, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2410.02.204", "maps": [], @@ -113831,8 +107297,6 @@ }, "description": "02.05, Umkleide/Dusche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2410.02.205", "maps": [], @@ -113865,8 +107329,6 @@ }, "description": "02.06, Aufenthalt/Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2410.02.206", "maps": [], @@ -113899,8 +107361,6 @@ }, "description": "02.07, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2410.02.207", "maps": [], @@ -113933,8 +107393,6 @@ }, "description": "02.08, Poststelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2410.02.208", "maps": [], @@ -113967,8 +107425,6 @@ }, "description": "02.09, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2410.02.209", "maps": [], @@ -114001,8 +107457,6 @@ }, "description": "02.10, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2410.02.210", "maps": [], @@ -114035,8 +107489,6 @@ }, "description": "02.11, Server-EDV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2410.02.211", "maps": [], @@ -114069,8 +107521,6 @@ }, "description": "02.20, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2410.02.220", "maps": [], @@ -114103,8 +107553,6 @@ }, "description": "02.22, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2410.02.222", "maps": [], @@ -114137,8 +107585,6 @@ }, "description": "02.24, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2410.02.224", "maps": [], @@ -114171,8 +107617,6 @@ }, "description": "02.26, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2410.02.226", "maps": [], @@ -114205,8 +107649,6 @@ }, "description": "02.28, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2410.02.228", "maps": [], @@ -114239,8 +107681,6 @@ }, "description": "02.30, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2410.02.230", "maps": [], @@ -114273,8 +107713,6 @@ }, "description": "02.40, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2410.02.240", "maps": [], @@ -114307,8 +107745,6 @@ }, "description": "02.41, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2410.02.241", "maps": [], @@ -114341,8 +107777,6 @@ }, "description": "02.42, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2410.02.242", "maps": [], @@ -114375,8 +107809,6 @@ }, "description": "02.43, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2410.02.243", "maps": [], @@ -114409,8 +107841,6 @@ }, "description": "02.44, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2410.02.244", "maps": [], @@ -114443,8 +107873,6 @@ }, "description": "02.45, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2410.02.245", "maps": [], @@ -114477,8 +107905,6 @@ }, "description": "02.46, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2410.02.246", "maps": [], @@ -114511,8 +107937,6 @@ }, "description": "02.47, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2410.02.247", "maps": [], @@ -114545,8 +107969,6 @@ }, "description": "02.48, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2410.02.248", "maps": [], @@ -114579,8 +108001,6 @@ }, "description": "02.49, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2410.02.249", "maps": [], @@ -114613,8 +108033,6 @@ }, "description": "02.62, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2410.02.262", "maps": [], @@ -114647,8 +108065,6 @@ }, "description": "02.62A, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2410.02.262A", "maps": [], @@ -114681,8 +108097,6 @@ }, "description": "02.64, K\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2410.02.264", "maps": [], @@ -114715,8 +108129,6 @@ }, "description": "02.65, Sozialraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2410.02.265", "maps": [], @@ -114749,8 +108161,6 @@ }, "description": "02.80, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2410.02.266", "maps": [], @@ -114783,8 +108193,6 @@ }, "description": "02.67, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2410.02.267", "maps": [], @@ -114817,8 +108225,6 @@ }, "description": "02.68, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2410.02.268", "maps": [], @@ -114851,8 +108257,6 @@ }, "description": "02.80, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2410.02.280", "maps": [], @@ -114885,8 +108289,6 @@ }, "description": "02.81, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2410.02.281", "maps": [], @@ -114919,8 +108321,6 @@ }, "description": "02.82, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2410.02.282", "maps": [], @@ -114953,8 +108353,6 @@ }, "description": "02.83, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2410.02.283", "maps": [], @@ -114987,8 +108385,6 @@ }, "description": "02.84, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2410.02.284", "maps": [], @@ -115021,8 +108417,6 @@ }, "description": "02.85, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2410.02.285", "maps": [], @@ -115055,8 +108449,6 @@ }, "description": "02.86, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2410.02.286", "maps": [], @@ -115089,8 +108481,6 @@ }, "description": "02.87, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2410.02.287", "maps": [], @@ -115123,8 +108513,6 @@ }, "description": "02.88, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2410.02.288", "maps": [], @@ -115157,8 +108545,6 @@ }, "description": "02.89, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2410.02.289", "maps": [], @@ -115191,8 +108577,6 @@ }, "description": "02.90, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2410.02.290", "maps": [], @@ -115225,8 +108609,6 @@ }, "description": "02.91, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2410.02.291", "maps": [], @@ -115259,8 +108641,6 @@ }, "description": "02.92, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2410.02.292", "maps": [], @@ -115293,8 +108673,6 @@ }, "description": "02.93, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2410.02.293", "maps": [], @@ -115327,8 +108705,6 @@ }, "description": "02.94, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2410.02.294", "maps": [], @@ -115361,8 +108737,6 @@ }, "description": "02.96, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2410.02.296", "maps": [], @@ -115395,8 +108769,6 @@ }, "description": "02.97B, Install.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2410.02.297B", "maps": [], @@ -115429,8 +108801,6 @@ }, "description": "02.97F, Install.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2410.02.297F", "maps": [], @@ -115463,8 +108833,6 @@ }, "description": "02.97G, Install.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2410.02.297G", "maps": [], @@ -115497,8 +108865,6 @@ }, "description": "03.01, Besprechung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2410.03.301", "maps": [], @@ -115531,8 +108897,6 @@ }, "description": "03.02, Vorraum WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2410.03.302", "maps": [], @@ -115565,8 +108929,6 @@ }, "description": "03.03, K\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2410.03.303", "maps": [], @@ -115599,8 +108961,6 @@ }, "description": "03.04, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2410.03.304", "maps": [], @@ -115633,8 +108993,6 @@ }, "description": "03.05, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2410.03.305", "maps": [], @@ -115667,8 +109025,6 @@ }, "description": "03.06, Vorraum WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2410.03.306", "maps": [], @@ -115701,8 +109057,6 @@ }, "description": "03.07, K\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2410.03.307", "maps": [], @@ -115735,8 +109089,6 @@ }, "description": "03.08, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2410.03.308", "maps": [], @@ -115769,8 +109121,6 @@ }, "description": "03.09, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2410.03.309", "maps": [], @@ -115803,8 +109153,6 @@ }, "description": "03.20, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2410.03.320", "maps": [], @@ -115837,8 +109185,6 @@ }, "description": "03.22, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2410.03.322", "maps": [], @@ -115871,8 +109217,6 @@ }, "description": "03.24, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2410.03.324", "maps": [], @@ -115905,8 +109249,6 @@ }, "description": "03.28, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2410.03.328", "maps": [], @@ -115939,8 +109281,6 @@ }, "description": "03.30, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2410.03.330", "maps": [], @@ -115973,8 +109313,6 @@ }, "description": "03.41, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2410.03.341", "maps": [], @@ -116007,8 +109345,6 @@ }, "description": "03.42, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2410.03.342", "maps": [], @@ -116041,8 +109377,6 @@ }, "description": "03.43, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2410.03.343", "maps": [], @@ -116075,8 +109409,6 @@ }, "description": "03.44, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2410.03.344", "maps": [], @@ -116109,8 +109441,6 @@ }, "description": "03.45, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2410.03.345", "maps": [], @@ -116143,8 +109473,6 @@ }, "description": "03.46, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2410.03.346", "maps": [], @@ -116177,8 +109505,6 @@ }, "description": "03.47, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2410.03.347", "maps": [], @@ -116211,8 +109537,6 @@ }, "description": "03.48, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2410.03.348", "maps": [], @@ -116245,8 +109569,6 @@ }, "description": "03.60, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2410.03.360", "maps": [], @@ -116279,8 +109601,6 @@ }, "description": "03.62, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2410.03.362", "maps": [], @@ -116313,8 +109633,6 @@ }, "description": "03.64, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2410.03.364", "maps": [], @@ -116347,8 +109665,6 @@ }, "description": "03.66, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2410.03.366", "maps": [], @@ -116381,8 +109697,6 @@ }, "description": "03.68, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2410.03.368", "maps": [], @@ -116415,8 +109729,6 @@ }, "description": "03.81, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2410.03.381", "maps": [], @@ -116449,8 +109761,6 @@ }, "description": "03.82, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2410.03.382", "maps": [], @@ -116483,8 +109793,6 @@ }, "description": "03.83, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2410.03.383", "maps": [], @@ -116517,8 +109825,6 @@ }, "description": "03.84, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2410.03.384", "maps": [], @@ -116551,8 +109857,6 @@ }, "description": "03.85, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2410.03.385", "maps": [], @@ -116585,8 +109889,6 @@ }, "description": "03.86, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2410.03.386", "maps": [], @@ -116619,8 +109921,6 @@ }, "description": "03.87, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2410.03.387", "maps": [], @@ -116653,8 +109953,6 @@ }, "description": "03.88, Besprechung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2410.03.388", "maps": [], @@ -116687,8 +109985,6 @@ }, "description": "03.90, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2410.03.390", "maps": [], @@ -116721,8 +110017,6 @@ }, "description": "03.91, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2410.03.391", "maps": [], @@ -116755,8 +110049,6 @@ }, "description": "03.92, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2410.03.392", "maps": [], @@ -116789,8 +110081,6 @@ }, "description": "03.93, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2410.03.393", "maps": [], @@ -116823,8 +110113,6 @@ }, "description": "03.97B, Install.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2410.03.397B", "maps": [], @@ -116857,8 +110145,6 @@ }, "description": "03.97F, Install.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2410.03.397F", "maps": [], @@ -116891,8 +110177,6 @@ }, "description": "D2.01, Vorraum Dachgeschoss", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "2410.DG.201", "maps": [], @@ -116925,8 +110209,6 @@ }, "description": "D2.02, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "2410.DG.202", "maps": [], @@ -116959,8 +110241,6 @@ }, "description": "D2.03, Dachraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "2410.DG.203", "maps": [], @@ -116993,8 +110273,6 @@ }, "description": "D2.04, Aufzugtechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "2410.DG.204", "maps": [], @@ -117027,8 +110305,6 @@ }, "description": "D2.05, Aufzugtechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "2410.DG.205", "maps": [], @@ -117061,8 +110337,6 @@ }, "description": "D2.06, Archiv/Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "2410.DG.206", "maps": [], @@ -117095,8 +110369,6 @@ }, "description": "D2.07, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "2410.DG.207", "maps": [], @@ -117129,8 +110401,6 @@ }, "description": "D3.90, Dachplattform mit K\u00e4ltemaschinen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "2410.DG.390", "maps": [], @@ -117163,8 +110433,6 @@ }, "description": "E.02, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2410.EG.002", "maps": [], @@ -117197,8 +110465,6 @@ }, "description": "E.03, Umkleide", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2410.EG.003", "maps": [], @@ -117231,8 +110497,6 @@ }, "description": "E.04, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2410.EG.004", "maps": [], @@ -117265,8 +110529,6 @@ }, "description": "E.08, Umkleide", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2410.EG.008", "maps": [], @@ -117299,8 +110561,6 @@ }, "description": "E.09, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2410.EG.009", "maps": [], @@ -117333,8 +110593,6 @@ }, "description": "E.10, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2410.EG.010", "maps": [], @@ -117367,8 +110625,6 @@ }, "description": "E.12, BMZ", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2410.EG.012", "maps": [], @@ -117401,8 +110657,6 @@ }, "description": "E.29, Ruheraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2410.EG.029", "maps": [], @@ -117435,8 +110689,6 @@ }, "description": "E.64, Server", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2410.EG.064", "maps": [], @@ -117469,8 +110721,6 @@ }, "description": "E.91, Eingangsbereich", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2410.EG.091", "maps": [], @@ -117503,8 +110753,6 @@ }, "description": "E.90, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2410.EG.092", "maps": [], @@ -117537,8 +110785,6 @@ }, "description": "E.93, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2410.EG.093", "maps": [], @@ -117571,8 +110817,6 @@ }, "description": "E.94, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2410.EG.094", "maps": [], @@ -117605,8 +110849,6 @@ }, "description": "E.95, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2410.EG.095", "maps": [], @@ -117639,8 +110881,6 @@ }, "description": "E.96, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2410.EG.096", "maps": [], @@ -117673,8 +110913,6 @@ }, "description": "E.97, Personenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2410.EG.097A", "maps": [], @@ -117707,8 +110945,6 @@ }, "description": "E.97B, Install.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2410.EG.097B", "maps": [], @@ -117741,8 +110977,6 @@ }, "description": "E.97E, Personenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2410.EG.097E", "maps": [], @@ -117775,8 +111009,6 @@ }, "description": "E.97F, Install.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2410.EG.097F", "maps": [], @@ -117809,8 +111041,6 @@ }, "description": "E.97G, Install.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2410.EG.097G", "maps": [], @@ -117843,8 +111073,6 @@ }, "description": "E.98, Zugangstreppenbereich Aussen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2410.EG.098", "maps": [], @@ -117877,8 +111105,6 @@ }, "description": "E.99, Zugangstreppenbereich Aussen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2410.EG.099", "maps": [], @@ -117911,8 +111137,6 @@ }, "description": "U1.04, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2410.U1.104", "maps": [], @@ -117945,8 +111169,6 @@ }, "description": "U1.05, Vorraum WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2410.U1.105", "maps": [], @@ -117979,8 +111201,6 @@ }, "description": "U1.07, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2410.U1.107A", "maps": [], @@ -118013,8 +111233,6 @@ }, "description": "U1.09, Beh.-WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2410.U1.109", "maps": [], @@ -118047,8 +111265,6 @@ }, "description": "U1.10, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2410.U1.110", "maps": [], @@ -118081,8 +111297,6 @@ }, "description": "U1.11A, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2410.U1.111A", "maps": [], @@ -118115,8 +111329,6 @@ }, "description": "U1.11B, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2410.U1.111B", "maps": [], @@ -118149,8 +111361,6 @@ }, "description": "U1.11C, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2410.U1.111C", "maps": [], @@ -118183,8 +111393,6 @@ }, "description": "U1.11D, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2410.U1.111D", "maps": [], @@ -118217,8 +111425,6 @@ }, "description": "U1.14, Fernmeldetechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2410.U1.114", "maps": [], @@ -118251,8 +111457,6 @@ }, "description": "U1.19, Trafo Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2410.U1.119", "maps": [], @@ -118285,8 +111489,6 @@ }, "description": "U1.21, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2410.U1.121", "maps": [], @@ -118319,8 +111521,6 @@ }, "description": "U1.24, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2410.U1.124", "maps": [], @@ -118353,8 +111553,6 @@ }, "description": "U1.27, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2410.U1.127", "maps": [], @@ -118387,8 +111585,6 @@ }, "description": "U1.34, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2410.U1.134", "maps": [], @@ -118421,8 +111617,6 @@ }, "description": "U1.35, Umkleide/WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2410.U1.135", "maps": [], @@ -118455,8 +111649,6 @@ }, "description": "U1.36, Umkleide", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2410.U1.136", "maps": [], @@ -118489,8 +111681,6 @@ }, "description": "U1.47, Sprinklertank", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2410.U1.147", "maps": [], @@ -118523,8 +111713,6 @@ }, "description": "U1.90, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2410.U1.190", "maps": [], @@ -118557,8 +111745,6 @@ }, "description": "U1.91, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2410.U1.191", "maps": [], @@ -118591,8 +111777,6 @@ }, "description": "U1.92, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2410.U1.192", "maps": [], @@ -118625,8 +111809,6 @@ }, "description": "U1.93, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2410.U1.193", "maps": [], @@ -118659,8 +111841,6 @@ }, "description": "U1.94, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2410.U1.194", "maps": [], @@ -118693,8 +111873,6 @@ }, "description": "U1.95, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2410.U1.195", "maps": [], @@ -118727,8 +111905,6 @@ }, "description": "U1.96, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2410.U1.196", "maps": [], @@ -118761,8 +111937,6 @@ }, "description": "U1.97, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2410.U1.197", "maps": [], @@ -118795,8 +111969,6 @@ }, "description": "U1.97B, Install.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2410.U1.197B", "maps": [], @@ -118829,8 +112001,6 @@ }, "description": "U1.97C, Install.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2410.U1.197C", "maps": [], @@ -118863,8 +112033,6 @@ }, "description": "U1.97F, Install.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2410.U1.197F", "maps": [], @@ -118897,8 +112065,6 @@ }, "description": "U1.97G, Install.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2410.U1.197G", "maps": [], @@ -118931,8 +112097,6 @@ }, "description": "U2.01, L\u00fcftung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "2410.U2.201", "maps": [], @@ -118965,8 +112129,6 @@ }, "description": "U2.03, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "2410.U2.203", "maps": [], @@ -118999,8 +112161,6 @@ }, "description": "U2.04, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "2410.U2.204", "maps": [], @@ -119033,8 +112193,6 @@ }, "description": "U2.05, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "2410.U2.205", "maps": [], @@ -119067,8 +112225,6 @@ }, "description": "U2.06, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "2410.U2.206", "maps": [], @@ -119101,8 +112257,6 @@ }, "description": "U2.07, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "2410.U2.207", "maps": [], @@ -119135,8 +112289,6 @@ }, "description": "U2.08, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "2410.U2.208", "maps": [], @@ -119169,8 +112321,6 @@ }, "description": "U2.09, Hausanschluss", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "2410.U2.209", "maps": [], @@ -119203,8 +112353,6 @@ }, "description": "U2.20, Steuerungsanlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "2410.U2.220", "maps": [], @@ -119237,8 +112385,6 @@ }, "description": "U2.21, Steuerungsanlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "2410.U2.221", "maps": [], @@ -119271,8 +112417,6 @@ }, "description": "U2.22, L\u00fcftungszentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "2410.U2.222", "maps": [], @@ -119305,8 +112449,6 @@ }, "description": "U2.24, Sprinklerzentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "2410.U2.224", "maps": [], @@ -119339,8 +112481,6 @@ }, "description": "U2.29, Tiefgarage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "2410.U2.229", "maps": [], @@ -119373,8 +112513,6 @@ }, "description": "U2.90, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "2410.U2.290", "maps": [], @@ -119407,8 +112545,6 @@ }, "description": "U2.91, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "2410.U2.291", "maps": [], @@ -119441,8 +112577,6 @@ }, "description": "U2.92, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "2410.U2.292", "maps": [], @@ -119475,8 +112609,6 @@ }, "description": "U2.93, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "2410.U2.293", "maps": [], @@ -119509,8 +112641,6 @@ }, "description": "U2.94, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "2410.U2.294", "maps": [], @@ -119543,8 +112673,6 @@ }, "description": "U2.95, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "2410.U2.295", "maps": [], @@ -119577,8 +112705,6 @@ }, "description": "U2.95A, Abluft", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "2410.U2.295A", "maps": [], @@ -119611,8 +112737,6 @@ }, "description": "U2.95B, Abluft", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "2410.U2.295B", "maps": [], @@ -119645,8 +112769,6 @@ }, "description": "U2.95C, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "2410.U2.295C", "maps": [], @@ -119679,8 +112801,6 @@ }, "description": "U2.96, Flur/L\u00fcftung Seminarr.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "2410.U2.296", "maps": [], @@ -119713,8 +112833,6 @@ }, "description": "U2.97, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "2410.U2.297", "maps": [], @@ -119747,8 +112865,6 @@ }, "description": "U2.98, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "2410.U2.298", "maps": [], @@ -119781,8 +112897,6 @@ }, "description": "U2.98A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "2410.U2.298A", "maps": [], @@ -119815,8 +112929,6 @@ }, "description": "U2.98B, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "2410.U2.298B", "maps": [], @@ -119849,8 +112961,6 @@ }, "description": "U3.98C, Schacht f. Lastenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U3", "id": "2410.U3.098C", "maps": [], @@ -119883,8 +112993,6 @@ }, "description": "U3.02, Fernw\u00e4rme", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U3", "id": "2410.U3.302", "maps": [], @@ -119917,8 +113025,6 @@ }, "description": "U3.04, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U3", "id": "2410.U3.304", "maps": [], @@ -119951,8 +113057,6 @@ }, "description": "U3.05, L\u00fcftungszentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U3", "id": "2410.U3.305", "maps": [], @@ -119985,8 +113089,6 @@ }, "description": "U3.12, Dampfkessel", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U3", "id": "2410.U3.312", "maps": [], @@ -120019,8 +113121,6 @@ }, "description": "U3.13, Unteres Technikum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U3", "id": "2410.U3.313", "maps": [], @@ -120053,8 +113153,6 @@ }, "description": "U3.14, Steuerung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U3", "id": "2410.U3.314", "maps": [], @@ -120087,8 +113185,6 @@ }, "description": "U3.15, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U3", "id": "2410.U3.315", "maps": [], @@ -120121,8 +113217,6 @@ }, "description": "U3.15A, Aufzugsmaschinenajum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U3", "id": "2410.U3.315A", "maps": [], @@ -120155,8 +113249,6 @@ }, "description": "U3.18, Falltisch", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U3", "id": "2410.U3.318", "maps": [], @@ -120189,8 +113281,6 @@ }, "description": "U3.90, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U3", "id": "2410.U3.390", "maps": [], @@ -120223,8 +113313,6 @@ }, "description": "U3.92, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U3", "id": "2410.U3.392", "maps": [], @@ -120257,8 +113345,6 @@ }, "description": "U3.93, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U3", "id": "2410.U3.393", "maps": [], @@ -120291,8 +113377,6 @@ }, "description": "U3.94, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U3", "id": "2410.U3.394", "maps": [], @@ -120325,8 +113409,6 @@ }, "description": "U3.95, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U3", "id": "2410.U3.395", "maps": [], @@ -120359,8 +113441,6 @@ }, "description": "U3.96, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U3", "id": "2410.U3.396", "maps": [], @@ -120393,8 +113473,6 @@ }, "description": "U3.97A, Schacht f. Personenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U3", "id": "2410.U3.397A", "maps": [], @@ -120427,8 +113505,6 @@ }, "description": "U3.97B, Install.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U3", "id": "2410.U3.397B", "maps": [], @@ -120461,8 +113537,6 @@ }, "description": "U3.97C, Raumluft", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U3", "id": "2410.U3.397C", "maps": [], @@ -120495,8 +113569,6 @@ }, "description": "U3.97D, Raumluft", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U3", "id": "2410.U3.397D", "maps": [], @@ -120529,8 +113601,6 @@ }, "description": "U3.97E, Schacht f. Personenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U3", "id": "2410.U3.397E", "maps": [], @@ -120563,8 +113633,6 @@ }, "description": "U3.97F, Install.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U3", "id": "2410.U3.397F", "maps": [], @@ -120597,8 +113665,6 @@ }, "description": "G252a, Elektro Verteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2601.01.252A", "maps": [], @@ -120631,8 +113697,6 @@ }, "description": "G253a, Elektro Verteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2601.01.253A", "maps": [], @@ -120665,8 +113729,6 @@ }, "description": "G253b, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2601.01.253B", "maps": [], @@ -120699,8 +113761,6 @@ }, "description": "G344, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2601.02.344", "maps": [], @@ -120733,8 +113793,6 @@ }, "description": "G355, Raumlufttechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2601.02.350", "maps": [], @@ -120767,8 +113825,6 @@ }, "description": "G352, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2601.02.352", "maps": [], @@ -120801,8 +113857,6 @@ }, "description": "G353, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2601.02.353", "maps": [], @@ -120835,8 +113889,6 @@ }, "description": "G107a, Aufzugsmaschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2601.EG.107A", "maps": [], @@ -120869,8 +113921,6 @@ }, "description": "G124, Hausmeisterwerkstatt/Sanit\u00e4r", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2601.EG.124", "maps": [], @@ -120903,8 +113953,6 @@ }, "description": "G126a, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2601.EG.126A", "maps": [], @@ -120937,8 +113985,6 @@ }, "description": "G126b, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2601.EG.126B", "maps": [], @@ -120971,8 +114017,6 @@ }, "description": "G156a, Elektro Verteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2601.EG.156A", "maps": [], @@ -121005,8 +114049,6 @@ }, "description": "G156b, Elektro Verteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2601.EG.156B", "maps": [], @@ -121039,8 +114081,6 @@ }, "description": "G005, Aufzugsmaschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2601.U1.005", "maps": [], @@ -121073,8 +114113,6 @@ }, "description": "G007, Hebeb\u00fchne", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2601.U1.007", "maps": [], @@ -121107,8 +114145,6 @@ }, "description": "G011, Werkstatt/Heizung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2601.U1.011", "maps": [], @@ -121141,8 +114177,6 @@ }, "description": "G012, Lager/Sanit\u00e4r", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2601.U1.012", "maps": [], @@ -121175,8 +114209,6 @@ }, "description": "G026, Wasserhebeanlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2601.U1.026", "maps": [], @@ -121209,8 +114241,6 @@ }, "description": "G042, Wasserversorgung, Aufbereitung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2601.U1.042", "maps": [], @@ -121243,8 +114273,6 @@ }, "description": "G043, Heiztechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2601.U1.043", "maps": [], @@ -121277,8 +114305,6 @@ }, "description": "G043a, Elektroanlagen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2601.U1.043A", "maps": [], @@ -121311,8 +114337,6 @@ }, "description": "G043b, Elektro Verteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2601.U1.043B", "maps": [], @@ -121345,8 +114369,6 @@ }, "description": "G045A, Wasserversorgung, Aufbereitung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2601.U1.045A", "maps": [], @@ -121379,8 +114401,6 @@ }, "description": "G050, Heiztechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2601.U1.050", "maps": [], @@ -121413,8 +114433,6 @@ }, "description": "G050a, Elektro Verteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2601.U1.050A", "maps": [], @@ -121447,8 +114465,6 @@ }, "description": "G050b, Elektro Verteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2601.U1.050B", "maps": [], @@ -121481,8 +114497,6 @@ }, "description": "E210B, Elektro Verteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2602.01.210B", "maps": [], @@ -121515,8 +114529,6 @@ }, "description": "E232A, Elektro Verteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2602.01.232A", "maps": [], @@ -121549,8 +114561,6 @@ }, "description": "E301, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2602.02.301", "maps": [], @@ -121583,8 +114593,6 @@ }, "description": "E302, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2602.02.302", "maps": [], @@ -121617,8 +114625,6 @@ }, "description": "E141, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2602.EG.141", "maps": [], @@ -121651,8 +114657,6 @@ }, "description": "E145A, Elektro Verteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2602.EG.145A", "maps": [], @@ -121685,8 +114689,6 @@ }, "description": "E145B, Elektro Verteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2602.EG.145B", "maps": [], @@ -121719,8 +114721,6 @@ }, "description": "E003, Kaminschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2602.U1.003", "maps": [], @@ -121753,8 +114753,6 @@ }, "description": "E005, Heizungstechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2602.U1.005", "maps": [], @@ -121787,8 +114785,6 @@ }, "description": "E006, Lager/Hebeanlage/Sanit\u00e4r", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2602.U1.006", "maps": [], @@ -121821,8 +114817,6 @@ }, "description": "E030, Versorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2602.U1.030", "maps": [], @@ -121855,8 +114849,6 @@ }, "description": "E039A, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2602.U1.039A", "maps": [], @@ -121889,8 +114881,6 @@ }, "description": "E043, Betriebstechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2602.U1.043", "maps": [], @@ -121923,8 +114913,6 @@ }, "description": "E044, Elektro Verteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2602.U1.044", "maps": [], @@ -121957,8 +114945,6 @@ }, "description": "218A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2604.01.218A", "maps": [], @@ -121991,8 +114977,6 @@ }, "description": "240, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2604.01.240", "maps": [], @@ -122025,8 +115009,6 @@ }, "description": "241, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2604.01.241", "maps": [], @@ -122059,8 +115041,6 @@ }, "description": "243, Elektro Verteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2604.01.243", "maps": [], @@ -122093,8 +115073,6 @@ }, "description": "244, Elektro Verteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2604.01.244", "maps": [], @@ -122127,8 +115105,6 @@ }, "description": "245, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2604.01.245", "maps": [], @@ -122161,8 +115137,6 @@ }, "description": "301, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2604.02.301", "maps": [], @@ -122195,8 +115169,6 @@ }, "description": "302, Raumlufttechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2604.02.302", "maps": [], @@ -122229,8 +115201,6 @@ }, "description": "303, Aufzugsmaschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2604.02.303", "maps": [], @@ -122263,8 +115233,6 @@ }, "description": "305, Raumlufttechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2604.02.305", "maps": [], @@ -122297,8 +115265,6 @@ }, "description": "306, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2604.02.306", "maps": [], @@ -122331,8 +115297,6 @@ }, "description": "307, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2604.02.307", "maps": [], @@ -122365,8 +115329,6 @@ }, "description": "118A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2604.EG.118A", "maps": [], @@ -122399,8 +115361,6 @@ }, "description": "140, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2604.EG.140", "maps": [], @@ -122433,8 +115393,6 @@ }, "description": "141, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2604.EG.141", "maps": [], @@ -122467,8 +115425,6 @@ }, "description": "142, Elektro Verteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2604.EG.142", "maps": [], @@ -122501,8 +115457,6 @@ }, "description": "143, Elektro Verteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2604.EG.143", "maps": [], @@ -122535,8 +115489,6 @@ }, "description": "144, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2604.EG.144", "maps": [], @@ -122569,8 +115521,6 @@ }, "description": "012, Technik f. K\u00fchlr\u00e4ume", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2604.U1.012", "maps": [], @@ -122603,8 +115553,6 @@ }, "description": "036, Technischer Betriebsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2604.U1.036", "maps": [], @@ -122637,8 +115585,6 @@ }, "description": "040, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2604.U1.040", "maps": [], @@ -122671,8 +115617,6 @@ }, "description": "041, Hebeanlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2604.U1.041", "maps": [], @@ -122705,8 +115649,6 @@ }, "description": "042, Elektro Verteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2604.U1.042", "maps": [], @@ -122739,8 +115681,6 @@ }, "description": "043, Elektro Verteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2604.U1.043", "maps": [], @@ -122773,8 +115713,6 @@ }, "description": "044, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2604.U1.044", "maps": [], @@ -122807,8 +115745,6 @@ }, "description": "158, Geb\u00e4udebetrieb", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2605.EG.158", "maps": [], @@ -122841,8 +115777,6 @@ }, "description": "159, Poststelle/Sani.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2605.EG.159", "maps": [], @@ -122875,8 +115809,6 @@ }, "description": "050, Heizungsanlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2605.U1.050", "maps": [], @@ -122909,8 +115841,6 @@ }, "description": "051, Elektro Verteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2605.U1.051", "maps": [], @@ -122943,8 +115873,6 @@ }, "description": "051A, Elektro Verteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2605.U1.051A", "maps": [], @@ -122977,8 +115905,6 @@ }, "description": "053, Raumlufttechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2605.U1.053", "maps": [], @@ -123011,8 +115937,6 @@ }, "description": "055, Wasseraufbereitung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2605.U1.055", "maps": [], @@ -123045,8 +115969,6 @@ }, "description": "056, Wasseraufbereitung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2605.U1.056", "maps": [], @@ -123079,8 +116001,6 @@ }, "description": "101, Lager/Sanit\u00e4r", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2607.01.101", "maps": [], @@ -123113,8 +116033,6 @@ }, "description": "102, Lager/Sanit\u00e4r", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2607.01.102", "maps": [], @@ -123147,8 +116065,6 @@ }, "description": "103, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2607.01.103", "maps": [], @@ -123181,8 +116097,6 @@ }, "description": "003, Werkstatt/Sanit\u00e4r", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2607.EG.003", "maps": [], @@ -123215,8 +116129,6 @@ }, "description": "004, Lager/Sammellager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2607.EG.004", "maps": [], @@ -123249,8 +116161,6 @@ }, "description": "Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2607.U1.001", "maps": [], @@ -123283,8 +116193,6 @@ }, "description": "127, Aerosollabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2801.01.127", "maps": [], @@ -123317,8 +116225,6 @@ }, "description": "009, Chemikalienlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2801.U1.009", "maps": [], @@ -123351,8 +116257,6 @@ }, "description": "010, Klimaraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2801.U1.010", "maps": [], @@ -123385,8 +116289,6 @@ }, "description": "011, Chemielabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2801.U1.011", "maps": [], @@ -123419,8 +116321,6 @@ }, "description": "012, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2801.U1.012", "maps": [], @@ -123453,8 +116353,6 @@ }, "description": "015, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2801.U1.015", "maps": [], @@ -123487,8 +116385,6 @@ }, "description": "015C, LRZ-Verteilerknoten", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2801.U1.015C", "maps": [], @@ -123521,8 +116417,6 @@ }, "description": "017, Lager mit exp. Schutz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2801.U1.017", "maps": [], @@ -123555,8 +116449,6 @@ }, "description": "2.110.1, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2806.02.110A", "maps": [], @@ -123589,8 +116481,6 @@ }, "description": "2.110.6, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2806.02.110E", "maps": [], @@ -123623,8 +116513,6 @@ }, "description": "3.101, Gardarobe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2806.03.101", "maps": [], @@ -123657,8 +116545,6 @@ }, "description": "3.101.2, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2806.03.101B", "maps": [], @@ -123691,8 +116577,6 @@ }, "description": "3.1.1.3, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2806.03.101C", "maps": [], @@ -123725,8 +116609,6 @@ }, "description": "3.101.4, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2806.03.101D", "maps": [], @@ -123759,8 +116641,6 @@ }, "description": "3.200, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2806.03.200", "maps": [], @@ -123793,8 +116673,6 @@ }, "description": "3.300, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2806.03.300", "maps": [], @@ -123827,8 +116705,6 @@ }, "description": "3.1.27, Ger\u00e4telager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2808.02.201", "maps": [], @@ -123861,8 +116737,6 @@ }, "description": "3.1.28, Lager Gasflaschen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2808.02.202", "maps": [], @@ -123895,8 +116769,6 @@ }, "description": "203, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2808.02.203", "maps": [], @@ -123929,8 +116801,6 @@ }, "description": "204, Gardarobe-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2808.02.204", "maps": [], @@ -123963,8 +116833,6 @@ }, "description": "205, Gardarobe-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2808.02.205", "maps": [], @@ -123997,8 +116865,6 @@ }, "description": "206, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2808.02.206", "maps": [], @@ -124031,8 +116897,6 @@ }, "description": "3.1.20, Labor Anwendungstechnik 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2808.02.207", "maps": [], @@ -124065,8 +116929,6 @@ }, "description": "3.1.21, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2808.02.208", "maps": [], @@ -124099,8 +116961,6 @@ }, "description": "3.1.22, Leitung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2808.02.209", "maps": [], @@ -124133,8 +116993,6 @@ }, "description": "3.1.26, Labor Anwendungstechnik 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2808.02.210", "maps": [], @@ -124167,8 +117025,6 @@ }, "description": "3.1.24, B\u00fcro Anwendungstechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2808.02.211", "maps": [], @@ -124201,8 +117057,6 @@ }, "description": "3.1.24, B\u00fcro chemische Syntese", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2808.02.212", "maps": [], @@ -124235,8 +117089,6 @@ }, "description": "3.1.25, Labor chemische Syntese", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2808.02.213", "maps": [], @@ -124269,8 +117121,6 @@ }, "description": "214, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2808.02.214", "maps": [], @@ -124303,8 +117153,6 @@ }, "description": "114, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2903.01.114", "maps": [], @@ -124337,8 +117185,6 @@ }, "description": "130, Fur-1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2903.01.130", "maps": [], @@ -124371,8 +117217,6 @@ }, "description": "132, Flur-2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2903.01.132", "maps": [], @@ -124405,8 +117249,6 @@ }, "description": "133, Flur-3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2903.01.133", "maps": [], @@ -124439,8 +117281,6 @@ }, "description": "134, Eingang-Flur-4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2903.01.134", "maps": [], @@ -124473,8 +117313,6 @@ }, "description": "135, Eingang-Flur-5", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2903.01.135", "maps": [], @@ -124507,8 +117345,6 @@ }, "description": "140, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2903.01.140", "maps": [], @@ -124541,8 +117377,6 @@ }, "description": "141, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2903.01.141", "maps": [], @@ -124575,8 +117409,6 @@ }, "description": "142, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2903.01.142", "maps": [], @@ -124609,8 +117441,6 @@ }, "description": "143, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2903.01.143", "maps": [], @@ -124643,8 +117473,6 @@ }, "description": "150, B\u00fcro 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2903.01.150", "maps": [], @@ -124677,8 +117505,6 @@ }, "description": "151, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2903.01.151", "maps": [], @@ -124711,8 +117537,6 @@ }, "description": "152, B\u00fcro 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2903.01.152", "maps": [], @@ -124745,8 +117569,6 @@ }, "description": "160, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2903.01.160", "maps": [], @@ -124779,8 +117601,6 @@ }, "description": "161, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2903.01.161", "maps": [], @@ -124813,8 +117633,6 @@ }, "description": "164, Server", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2903.01.164", "maps": [], @@ -124847,8 +117665,6 @@ }, "description": "208, B\u00fcro/ab 12.12.2019 im Umbau", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2903.02.208", "maps": [], @@ -124881,8 +117697,6 @@ }, "description": "209, B\u00fcro/ab 12.12.2019 im Umbau", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2903.02.209", "maps": [], @@ -124915,8 +117729,6 @@ }, "description": "230, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2903.02.230", "maps": [], @@ -124949,8 +117761,6 @@ }, "description": "231, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2903.02.231", "maps": [], @@ -124983,8 +117793,6 @@ }, "description": "240, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2903.02.240", "maps": [], @@ -125017,8 +117825,6 @@ }, "description": "241, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2903.02.241", "maps": [], @@ -125051,8 +117857,6 @@ }, "description": "243, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2903.02.243", "maps": [], @@ -125085,8 +117889,6 @@ }, "description": "270, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2903.02.270", "maps": [], @@ -125119,8 +117921,6 @@ }, "description": "311, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2903.03.311", "maps": [], @@ -125153,8 +117953,6 @@ }, "description": "330, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2903.03.330", "maps": [], @@ -125187,8 +117985,6 @@ }, "description": "331, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2903.03.331", "maps": [], @@ -125221,8 +118017,6 @@ }, "description": "332, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2903.03.332", "maps": [], @@ -125255,8 +118049,6 @@ }, "description": "340, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2903.03.340", "maps": [], @@ -125289,8 +118081,6 @@ }, "description": "341, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2903.03.341", "maps": [], @@ -125323,8 +118113,6 @@ }, "description": "370, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2903.03.370", "maps": [], @@ -125357,8 +118145,6 @@ }, "description": "430, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "2903.04.430", "maps": [], @@ -125391,8 +118177,6 @@ }, "description": "440, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "2903.04.440", "maps": [], @@ -125425,8 +118209,6 @@ }, "description": "441, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "2903.04.441", "maps": [], @@ -125459,8 +118241,6 @@ }, "description": "001, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2903.EG.001", "maps": [], @@ -125493,8 +118273,6 @@ }, "description": "002, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2903.EG.002", "maps": [], @@ -125527,8 +118305,6 @@ }, "description": "004, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2903.EG.004", "maps": [], @@ -125561,8 +118337,6 @@ }, "description": "030, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2903.EG.030", "maps": [], @@ -125595,8 +118369,6 @@ }, "description": "040, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2903.EG.040", "maps": [], @@ -125629,8 +118401,6 @@ }, "description": "041, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2903.EG.041", "maps": [], @@ -125663,8 +118433,6 @@ }, "description": "042, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2903.EG.042", "maps": [], @@ -125697,8 +118465,6 @@ }, "description": "043, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2903.EG.043", "maps": [], @@ -125731,8 +118497,6 @@ }, "description": "044, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2903.EG.044", "maps": [], @@ -125765,8 +118529,6 @@ }, "description": "050, B\u00fcro/Vorraum/Foyer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2903.EG.050", "maps": [], @@ -125799,8 +118561,6 @@ }, "description": "051, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2903.EG.051", "maps": [], @@ -125833,8 +118593,6 @@ }, "description": "052, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2903.EG.052", "maps": [], @@ -125867,8 +118625,6 @@ }, "description": "053, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2903.EG.053", "maps": [], @@ -125901,8 +118657,6 @@ }, "description": "054, B\u00fcro 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2903.EG.054", "maps": [], @@ -125935,8 +118689,6 @@ }, "description": "-1050, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2903.U1.050", "maps": [], @@ -125969,8 +118721,6 @@ }, "description": "-1051, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2903.U1.051", "maps": [], @@ -126003,8 +118753,6 @@ }, "description": "-1060, Lager Poststelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2903.U1.060", "maps": [], @@ -126037,8 +118785,6 @@ }, "description": "-1060B, Putzmittellager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2903.U1.060B", "maps": [], @@ -126071,8 +118817,6 @@ }, "description": "1025, Karlstra\u00dfe-Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2906.01.025", "maps": [ @@ -126117,8 +118861,6 @@ }, "description": "1030, Flur 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2906.01.030", "maps": [], @@ -126151,8 +118893,6 @@ }, "description": "1031, Flur 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2906.01.031", "maps": [], @@ -126185,8 +118925,6 @@ }, "description": "1032, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2906.01.032", "maps": [], @@ -126219,8 +118957,6 @@ }, "description": "1040, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2906.01.040", "maps": [], @@ -126253,8 +118989,6 @@ }, "description": "1041, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2906.01.041", "maps": [], @@ -126287,8 +119021,6 @@ }, "description": "1042, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2906.01.042", "maps": [], @@ -126321,8 +119053,6 @@ }, "description": "1043, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2906.01.043", "maps": [], @@ -126355,8 +119085,6 @@ }, "description": "1051, Treppenhaus 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2906.01.051", "maps": [], @@ -126389,8 +119117,6 @@ }, "description": "1052, Treppenhaus 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2906.01.052", "maps": [], @@ -126423,8 +119149,6 @@ }, "description": "2026, Karlstra\u00dfe-Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2906.02.026", "maps": [ @@ -126469,8 +119193,6 @@ }, "description": "2030, Flur 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2906.02.030", "maps": [], @@ -126503,8 +119225,6 @@ }, "description": "2031, Flur 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2906.02.031", "maps": [], @@ -126537,8 +119257,6 @@ }, "description": "2032, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2906.02.032", "maps": [], @@ -126571,8 +119289,6 @@ }, "description": "2040, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2906.02.040", "maps": [], @@ -126605,8 +119321,6 @@ }, "description": "2041, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2906.02.041", "maps": [], @@ -126639,8 +119353,6 @@ }, "description": "2042, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2906.02.042", "maps": [], @@ -126673,8 +119385,6 @@ }, "description": "2043, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2906.02.043", "maps": [], @@ -126707,8 +119417,6 @@ }, "description": "2051, Treppenhaus 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2906.02.051", "maps": [], @@ -126741,8 +119449,6 @@ }, "description": "2052, Treppenhaus 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2906.02.052", "maps": [], @@ -126775,8 +119481,6 @@ }, "description": "3030, Flur 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2906.03.030", "maps": [], @@ -126809,8 +119513,6 @@ }, "description": "3031, Flur 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2906.03.031", "maps": [], @@ -126843,8 +119545,6 @@ }, "description": "3040, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2906.03.040", "maps": [], @@ -126877,8 +119577,6 @@ }, "description": "3041, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2906.03.041", "maps": [], @@ -126911,8 +119609,6 @@ }, "description": "3051, Treppenhaus 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2906.03.051", "maps": [], @@ -126945,8 +119641,6 @@ }, "description": "3052, Treppenhaus 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2906.03.052", "maps": [], @@ -126979,8 +119673,6 @@ }, "description": "4030, Flur 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "2906.04.030", "maps": [], @@ -127013,8 +119705,6 @@ }, "description": "4031, Flur 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "2906.04.031", "maps": [], @@ -127047,8 +119737,6 @@ }, "description": "4032, Flur 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "2906.04.032", "maps": [], @@ -127081,8 +119769,6 @@ }, "description": "4040, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "2906.04.040", "maps": [], @@ -127115,8 +119801,6 @@ }, "description": "4040A, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "2906.04.040A", "maps": [], @@ -127149,8 +119833,6 @@ }, "description": "4041, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "2906.04.041", "maps": [], @@ -127183,8 +119865,6 @@ }, "description": "4042, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "2906.04.042", "maps": [], @@ -127217,8 +119897,6 @@ }, "description": "4043, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "2906.04.043", "maps": [], @@ -127251,8 +119929,6 @@ }, "description": "4051, Treppenhaus 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "2906.04.051", "maps": [], @@ -127285,8 +119961,6 @@ }, "description": "4052, Treppenhaus 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "2906.04.052", "maps": [], @@ -127319,8 +119993,6 @@ }, "description": "5030, Flur 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "2906.05.030", "maps": [], @@ -127353,8 +120025,6 @@ }, "description": "5032, Flur 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "2906.05.032", "maps": [], @@ -127387,8 +120057,6 @@ }, "description": "5040, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "2906.05.040", "maps": [], @@ -127421,8 +120089,6 @@ }, "description": "5040A, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "2906.05.040A", "maps": [], @@ -127455,8 +120121,6 @@ }, "description": "5041, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "2906.05.041", "maps": [], @@ -127489,8 +120153,6 @@ }, "description": "5042, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "2906.05.042", "maps": [], @@ -127523,8 +120185,6 @@ }, "description": "5043, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "2906.05.043", "maps": [], @@ -127557,8 +120217,6 @@ }, "description": "5051, Treppenhaus 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "2906.05.051", "maps": [], @@ -127591,8 +120249,6 @@ }, "description": "5052, Treppenhaus 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "2906.05.052", "maps": [], @@ -127625,8 +120281,6 @@ }, "description": "6030, Flur 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "2906.DG.031", "maps": [], @@ -127659,8 +120313,6 @@ }, "description": "6040, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "2906.DG.040", "maps": [], @@ -127693,8 +120345,6 @@ }, "description": "6041, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "2906.DG.041", "maps": [], @@ -127727,8 +120377,6 @@ }, "description": "6042, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "2906.DG.042", "maps": [], @@ -127761,8 +120409,6 @@ }, "description": "6043, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "2906.DG.043", "maps": [], @@ -127795,8 +120441,6 @@ }, "description": "6044, Bad", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "2906.DG.044", "maps": [], @@ -127829,8 +120473,6 @@ }, "description": "6051, Treppenhaus 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "2906.DG.051", "maps": [], @@ -127863,8 +120505,6 @@ }, "description": "6052, Treppenhaus 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "2906.DG.052", "maps": [], @@ -127897,8 +120537,6 @@ }, "description": "6060, Dachterrasse 1 (Reinigen)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "2906.DG.060", "maps": [], @@ -127931,8 +120569,6 @@ }, "description": "6062, Dachterrasse 2 (Reinigen)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "2906.DG.061", "maps": [], @@ -127965,8 +120601,6 @@ }, "description": "0050, Eingang/Foyer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2906.EG.050", "maps": [], @@ -127999,8 +120633,6 @@ }, "description": "0050A, Windfang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2906.EG.050A", "maps": [], @@ -128033,8 +120665,6 @@ }, "description": "0051, Treppenhaus 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2906.EG.051", "maps": [], @@ -128067,8 +120697,6 @@ }, "description": "0051A, Personenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2906.EG.051A", "maps": [], @@ -128101,8 +120729,6 @@ }, "description": "0051B, Personenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2906.EG.051B", "maps": [], @@ -128135,8 +120761,6 @@ }, "description": "-1007, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2906.U1.007", "maps": [], @@ -128169,8 +120793,6 @@ }, "description": "-1010, Trafostation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2906.U1.010", "maps": [], @@ -128203,8 +120825,6 @@ }, "description": "-1011, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2906.U1.011", "maps": [], @@ -128237,8 +120857,6 @@ }, "description": "-1030, Flur 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2906.U1.030", "maps": [], @@ -128271,8 +120889,6 @@ }, "description": "-1031, Flur 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2906.U1.031", "maps": [], @@ -128305,8 +120921,6 @@ }, "description": "-1051, Treppenhaus 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2906.U1.051", "maps": [], @@ -128339,8 +120953,6 @@ }, "description": "-1052, Treppenhaus 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2906.U1.052", "maps": [], @@ -128373,8 +120985,6 @@ }, "description": "-1054, Aufzugmaschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2906.U1.054", "maps": [], @@ -128407,8 +121017,6 @@ }, "description": "-1054A, Aufzugmaschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2906.U1.054A", "maps": [], @@ -128441,8 +121049,6 @@ }, "description": "-1055, Heizung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2906.U1.055", "maps": [], @@ -128475,8 +121081,6 @@ }, "description": "101, Foyer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2907.01.101", "maps": [], @@ -128509,8 +121113,6 @@ }, "description": "104, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2907.01.104", "maps": [], @@ -128543,8 +121145,6 @@ }, "description": "105, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2907.01.105", "maps": [], @@ -128577,8 +121177,6 @@ }, "description": "107, Beh.-WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2907.01.107", "maps": [], @@ -128611,8 +121209,6 @@ }, "description": "111, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2907.01.111", "maps": [], @@ -128645,8 +121241,6 @@ }, "description": "112, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2907.01.112", "maps": [], @@ -128679,8 +121273,6 @@ }, "description": "117, Rechnerarbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2907.01.117", "maps": [], @@ -128713,8 +121305,6 @@ }, "description": "120, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2907.01.120", "maps": [], @@ -128747,8 +121337,6 @@ }, "description": "129, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2907.01.129", "maps": [], @@ -128781,8 +121369,6 @@ }, "description": "131, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2907.01.131", "maps": [], @@ -128815,8 +121401,6 @@ }, "description": "133, DigiLLab Seminar", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2907.01.133", "maps": [], @@ -128849,8 +121433,6 @@ }, "description": "134, DigiLLab Spaces", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2907.01.134", "maps": [], @@ -128883,8 +121465,6 @@ }, "description": "136, DigiLLab Mobile Learning Lab", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2907.01.136", "maps": [], @@ -128917,8 +121497,6 @@ }, "description": "137, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2907.01.137", "maps": [], @@ -128951,8 +121529,6 @@ }, "description": "139, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2907.01.139", "maps": [], @@ -128985,8 +121561,6 @@ }, "description": "140, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2907.01.140", "maps": [], @@ -129019,8 +121593,6 @@ }, "description": "141, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2907.01.141", "maps": [], @@ -129053,8 +121625,6 @@ }, "description": "142, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2907.01.142", "maps": [], @@ -129087,8 +121657,6 @@ }, "description": "199, Foyer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2907.01.199", "maps": [], @@ -129121,8 +121689,6 @@ }, "description": "Flur OG1 05, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2907.01.199A", "maps": [], @@ -129155,8 +121721,6 @@ }, "description": "Flur OG1 06, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2907.01.199B", "maps": [], @@ -129189,8 +121753,6 @@ }, "description": "Flur OG1 07, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2907.01.199C", "maps": [], @@ -129223,8 +121785,6 @@ }, "description": "Flur OG1 08, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2907.01.199D", "maps": [], @@ -129257,8 +121817,6 @@ }, "description": "Flur OG1 01, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2907.01.199E", "maps": [], @@ -129291,8 +121849,6 @@ }, "description": "Flur OG1 02, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2907.01.199F", "maps": [], @@ -129325,8 +121881,6 @@ }, "description": "Flur OG1 03, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2907.01.199G", "maps": [], @@ -129359,8 +121913,6 @@ }, "description": "Flur OG1 04, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2907.01.199H", "maps": [], @@ -129393,8 +121945,6 @@ }, "description": "201, Foyer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2907.02.201", "maps": [], @@ -129427,8 +121977,6 @@ }, "description": "204, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2907.02.204", "maps": [], @@ -129461,8 +122009,6 @@ }, "description": "205, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2907.02.205", "maps": [], @@ -129495,8 +122041,6 @@ }, "description": "209, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2907.02.209", "maps": [], @@ -129529,8 +122073,6 @@ }, "description": "211, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2907.02.211", "maps": [], @@ -129563,8 +122105,6 @@ }, "description": "212, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2907.02.212", "maps": [], @@ -129597,8 +122137,6 @@ }, "description": "213, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2907.02.213", "maps": [], @@ -129631,8 +122169,6 @@ }, "description": "258, Wickelraum/Erste-Hilfe-Raum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2907.02.258", "maps": [], @@ -129665,8 +122201,6 @@ }, "description": "299, Foyer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2907.02.299", "maps": [], @@ -129699,8 +122233,6 @@ }, "description": "Flur OG2 08, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2907.02.299A", "maps": [], @@ -129733,8 +122265,6 @@ }, "description": "Flur OG2 09, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2907.02.299B", "maps": [], @@ -129767,8 +122297,6 @@ }, "description": "Flur OG2 10, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2907.02.299C", "maps": [], @@ -129801,8 +122329,6 @@ }, "description": "Flur OG2 11, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2907.02.299D", "maps": [], @@ -129835,8 +122361,6 @@ }, "description": "Flur OG2 12, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2907.02.299E", "maps": [], @@ -129869,8 +122393,6 @@ }, "description": "Flur OG2 01, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2907.02.299F", "maps": [], @@ -129903,8 +122425,6 @@ }, "description": "Flur OG2 02, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2907.02.299G", "maps": [], @@ -129937,8 +122457,6 @@ }, "description": "Flur OG2 03, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2907.02.299H", "maps": [], @@ -129971,8 +122489,6 @@ }, "description": "Flur OG2 04, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2907.02.299I", "maps": [], @@ -130005,8 +122521,6 @@ }, "description": "Flur OG2 05, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2907.02.299J", "maps": [], @@ -130039,8 +122553,6 @@ }, "description": "Flur OG2 06, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2907.02.299K", "maps": [], @@ -130073,8 +122585,6 @@ }, "description": "Flur OG2 07, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2907.02.299L", "maps": [], @@ -130107,8 +122617,6 @@ }, "description": "401, Foyer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "2907.04.401", "maps": [], @@ -130141,8 +122649,6 @@ }, "description": "404, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "2907.04.404", "maps": [], @@ -130175,8 +122681,6 @@ }, "description": "405, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "2907.04.405", "maps": [], @@ -130209,8 +122713,6 @@ }, "description": "406, Beh.-WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "2907.04.406", "maps": [], @@ -130243,8 +122745,6 @@ }, "description": "409, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "2907.04.409", "maps": [], @@ -130277,8 +122777,6 @@ }, "description": "411, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "2907.04.411", "maps": [], @@ -130311,8 +122809,6 @@ }, "description": "412, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "2907.04.412", "maps": [], @@ -130345,8 +122841,6 @@ }, "description": "209, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "2907.04.413", "maps": [], @@ -130379,8 +122873,6 @@ }, "description": "414, Etagenverteilerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "2907.04.414", "maps": [], @@ -130413,8 +122905,6 @@ }, "description": "499, Foyer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "2907.04.499", "maps": [], @@ -130447,8 +122937,6 @@ }, "description": "Flur OG4 08, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "2907.04.499A", "maps": [], @@ -130481,8 +122969,6 @@ }, "description": "Flur OG4 09, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "2907.04.499B", "maps": [], @@ -130515,8 +123001,6 @@ }, "description": "Flur OG4 10, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "2907.04.499C", "maps": [], @@ -130549,8 +123033,6 @@ }, "description": "Flur OG4 11, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "2907.04.499D", "maps": [], @@ -130583,8 +123065,6 @@ }, "description": "Flur OG4 01, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "2907.04.499E", "maps": [], @@ -130617,8 +123097,6 @@ }, "description": "Flur OG4 02, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "2907.04.499F", "maps": [], @@ -130651,8 +123129,6 @@ }, "description": "Flur OG4 03, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "2907.04.499G", "maps": [], @@ -130685,8 +123161,6 @@ }, "description": "Flur OG4 04, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "2907.04.499H", "maps": [], @@ -130719,8 +123193,6 @@ }, "description": "Flur OG4 05, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "2907.04.499I", "maps": [], @@ -130753,8 +123225,6 @@ }, "description": "Flur OG4 06, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "2907.04.499J", "maps": [], @@ -130787,8 +123257,6 @@ }, "description": "Flur OG4 07, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "2907.04.499K", "maps": [], @@ -130821,8 +123289,6 @@ }, "description": "601, Foyer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "2907.06.601", "maps": [], @@ -130933,8 +123399,6 @@ }, "description": "607, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "2907.06.607", "maps": [], @@ -130967,8 +123431,6 @@ }, "description": "608, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "2907.06.608", "maps": [], @@ -131001,8 +123463,6 @@ }, "description": "609, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "2907.06.609", "maps": [], @@ -131035,8 +123495,6 @@ }, "description": "610, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "2907.06.610", "maps": [], @@ -131069,8 +123527,6 @@ }, "description": "611, Foyer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "2907.06.611", "maps": [], @@ -131103,8 +123559,6 @@ }, "description": "614, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "2907.06.614", "maps": [], @@ -131137,8 +123591,6 @@ }, "description": "615, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "2907.06.615", "maps": [], @@ -131171,8 +123623,6 @@ }, "description": "616, Putzkammer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "2907.06.616", "maps": [], @@ -131205,8 +123655,6 @@ }, "description": "617, Wickelraum/Erste-Hilfe-Raum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "2907.06.617", "maps": [], @@ -131239,8 +123687,6 @@ }, "description": "618, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "2907.06.618", "maps": [], @@ -131273,8 +123719,6 @@ }, "description": "619, Etagenverteilerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "2907.06.619", "maps": [], @@ -131307,8 +123751,6 @@ }, "description": "621, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "2907.06.621", "maps": [], @@ -131341,8 +123783,6 @@ }, "description": "622, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "2907.06.622", "maps": [], @@ -131375,8 +123815,6 @@ }, "description": "623, Beh.-WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "2907.06.623", "maps": [], @@ -131409,8 +123847,6 @@ }, "description": "671, Dachterrasse 1 (Reinigen)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "2907.06.671", "maps": [], @@ -131443,8 +123879,6 @@ }, "description": "672, Dachterrasse 2 (Reinigen)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "2907.06.672", "maps": [], @@ -131477,8 +123911,6 @@ }, "description": "699, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "2907.06.699", "maps": [], @@ -131511,8 +123943,6 @@ }, "description": "011, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2907.EG.011", "maps": [], @@ -131545,8 +123975,6 @@ }, "description": "012, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2907.EG.012", "maps": [], @@ -131579,8 +124007,6 @@ }, "description": "013, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2907.EG.013", "maps": [], @@ -131613,8 +124039,6 @@ }, "description": "014, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2907.EG.014", "maps": [], @@ -131647,8 +124071,6 @@ }, "description": "099C, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2907.EG.099C", "maps": [], @@ -131681,8 +124103,6 @@ }, "description": "099F, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2907.EG.099F", "maps": [], @@ -131715,8 +124135,6 @@ }, "description": "U03, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2907.U1.003", "maps": [], @@ -131749,8 +124167,6 @@ }, "description": "U20, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2907.U1.020", "maps": [], @@ -131783,8 +124199,6 @@ }, "description": "U21, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2907.U1.021", "maps": [], @@ -131817,8 +124231,6 @@ }, "description": "U22, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2907.U1.022", "maps": [], @@ -131851,8 +124263,6 @@ }, "description": "U30, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2907.U1.030", "maps": [], @@ -131885,8 +124295,6 @@ }, "description": "U31, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2907.U1.031", "maps": [], @@ -131919,8 +124327,6 @@ }, "description": "U32, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2907.U1.032", "maps": [], @@ -131953,8 +124359,6 @@ }, "description": "U50, Technik UG", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2907.U1.050", "maps": [], @@ -131987,8 +124391,6 @@ }, "description": "501, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "2908.05.501", "maps": [], @@ -132020,8 +124422,6 @@ }, "description": "H.103, CIP-Raum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2910.01.103", "maps": [], @@ -132053,8 +124453,6 @@ }, "description": "B.162, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2910.01.162", "maps": [], @@ -132087,8 +124485,6 @@ }, "description": "H.204, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2910.02.204", "maps": [], @@ -132121,8 +124517,6 @@ }, "description": "H.206, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2910.02.206", "maps": [], @@ -132155,8 +124549,6 @@ }, "description": "H.414, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "2910.04.414", "maps": [], @@ -132189,8 +124581,6 @@ }, "description": "H.001, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2910.EG.001", "maps": [], @@ -132223,8 +124613,6 @@ }, "description": "H.003, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2910.EG.003", "maps": [], @@ -132257,8 +124645,6 @@ }, "description": "H.004, CIP-Raum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2910.EG.004", "maps": [], @@ -132290,8 +124676,6 @@ }, "description": "100, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2911.01.100", "maps": [], @@ -132324,8 +124708,6 @@ }, "description": "103, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2911.01.103", "maps": [], @@ -132358,8 +124740,6 @@ }, "description": "199, Anteilige Konstruktionsfl\u00e4che lt. Mietvertrag", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2911.01.199", "maps": [], @@ -132392,8 +124772,6 @@ }, "description": "200, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2911.02.200", "maps": [], @@ -132426,8 +124804,6 @@ }, "description": "203, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2911.02.203", "maps": [], @@ -132460,8 +124836,6 @@ }, "description": "204, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2911.02.204", "maps": [], @@ -132494,8 +124868,6 @@ }, "description": "299, Anteilige Konstruktionsfl\u00e4che lt. Mietvertrag", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2911.02.299", "maps": [], @@ -132528,8 +124900,6 @@ }, "description": "399, Anteilige Konstruktionsfl\u00e4che lt. Mietvertrag", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2911.03.399", "maps": [], @@ -132562,8 +124932,6 @@ }, "description": "499, Anteilige Konstruktionsfl\u00e4che lt. Mietvertrag", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "2911.04.499", "maps": [], @@ -132596,8 +124964,6 @@ }, "description": "500, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "2911.05.500", "maps": [], @@ -132630,8 +124996,6 @@ }, "description": "505, Flur 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "2911.05.505", "maps": [], @@ -132664,8 +125028,6 @@ }, "description": "505B, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "2911.05.505B", "maps": [], @@ -132698,8 +125060,6 @@ }, "description": "505C, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "2911.05.505C", "maps": [], @@ -132732,8 +125092,6 @@ }, "description": "506, Gemeinschafts-Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "2911.05.506", "maps": [], @@ -132766,8 +125124,6 @@ }, "description": "507, Lager/Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "2911.05.507", "maps": [], @@ -132800,8 +125156,6 @@ }, "description": "508, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "2911.05.508", "maps": [], @@ -132834,8 +125188,6 @@ }, "description": "509, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "2911.05.509", "maps": [], @@ -132868,8 +125220,6 @@ }, "description": "510, B\u00fcro/Reserve ZA 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "2911.05.510", "maps": [], @@ -132902,8 +125252,6 @@ }, "description": "511, B\u00fcro/Reserve ZA 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "2911.05.511", "maps": [], @@ -132936,8 +125284,6 @@ }, "description": "514, Flur 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "2911.05.514", "maps": [], @@ -132970,8 +125316,6 @@ }, "description": "514A, Speicherzugang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "2911.05.514A", "maps": [], @@ -133004,8 +125348,6 @@ }, "description": "515, Aufzugsmaschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "2911.05.515", "maps": [], @@ -133038,8 +125380,6 @@ }, "description": "516, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "2911.05.516", "maps": [], @@ -133072,8 +125412,6 @@ }, "description": "517, ET", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "2911.05.517", "maps": [], @@ -133106,8 +125444,6 @@ }, "description": "518, Lager ZA 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "2911.05.518", "maps": [], @@ -133140,8 +125476,6 @@ }, "description": "519, Lager ZA 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "2911.05.519", "maps": [], @@ -133174,8 +125508,6 @@ }, "description": "599, Anteilige Konstruktionsfl\u00e4che lt. Mietvertrag", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "2911.05.599", "maps": [], @@ -133208,8 +125540,6 @@ }, "description": "104B, Balkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2920.01.104B", "maps": [], @@ -133242,8 +125572,6 @@ }, "description": "107, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2920.01.107", "maps": [], @@ -133276,8 +125604,6 @@ }, "description": "110, Diele", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2920.01.110", "maps": [], @@ -133310,8 +125636,6 @@ }, "description": "111, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2920.01.111", "maps": [], @@ -133344,8 +125668,6 @@ }, "description": "204B, Balkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2920.02.204B", "maps": [], @@ -133378,8 +125700,6 @@ }, "description": "205, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2920.02.207", "maps": [], @@ -133412,8 +125732,6 @@ }, "description": "208, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2920.02.208", "maps": [], @@ -133446,8 +125764,6 @@ }, "description": "210, Gang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2920.02.210", "maps": [], @@ -133480,8 +125796,6 @@ }, "description": "211, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2920.02.211", "maps": [], @@ -133514,8 +125828,6 @@ }, "description": "004B, Balkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2920.EG.004B", "maps": [], @@ -133548,8 +125860,6 @@ }, "description": "006, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2920.EG.006", "maps": [], @@ -133582,8 +125892,6 @@ }, "description": "010, Eingangsbereich/Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2920.EG.010", "maps": [], @@ -133616,8 +125924,6 @@ }, "description": "011, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2920.EG.011", "maps": [], @@ -133650,8 +125956,6 @@ }, "description": "-005, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2920.U1.005", "maps": [], @@ -133684,8 +125988,6 @@ }, "description": "-010, Zugangsbereich/Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "2920.U1.010", "maps": [], @@ -133718,8 +126020,6 @@ }, "description": "105A, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2926.01.105A", "maps": [], @@ -133752,8 +126052,6 @@ }, "description": "105B, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2926.01.105B", "maps": [], @@ -133786,8 +126084,6 @@ }, "description": "234, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2926.02.014A", "maps": [], @@ -133820,8 +126116,6 @@ }, "description": "235, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2926.02.014B", "maps": [], @@ -133854,8 +126148,6 @@ }, "description": "236, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2926.02.017A", "maps": [], @@ -133888,8 +126180,6 @@ }, "description": "237, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2926.02.017B", "maps": [], @@ -133922,8 +126212,6 @@ }, "description": "230, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2926.02.017C", "maps": [], @@ -133956,8 +126244,6 @@ }, "description": "231, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2926.02.017D", "maps": [], @@ -133990,8 +126276,6 @@ }, "description": "232, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2926.02.018A", "maps": [], @@ -134024,8 +126308,6 @@ }, "description": "233, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2926.02.018B", "maps": [], @@ -134058,8 +126340,6 @@ }, "description": "280, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2926.02.019B", "maps": [], @@ -134092,8 +126372,6 @@ }, "description": "281, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2926.02.019C", "maps": [], @@ -134126,8 +126404,6 @@ }, "description": "263, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2926.02.063", "maps": [], @@ -134160,8 +126436,6 @@ }, "description": "259, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2926.02.659", "maps": [], @@ -134194,8 +126468,6 @@ }, "description": "260, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2926.02.660", "maps": [], @@ -134228,8 +126500,6 @@ }, "description": "261, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2926.02.661", "maps": [], @@ -134262,8 +126532,6 @@ }, "description": "262, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2926.02.662", "maps": [], @@ -134296,8 +126564,6 @@ }, "description": "263, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2926.02.663", "maps": [], @@ -134330,8 +126596,6 @@ }, "description": "264, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2926.02.664", "maps": [], @@ -134364,8 +126628,6 @@ }, "description": "265, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2926.02.665", "maps": [], @@ -134398,8 +126660,6 @@ }, "description": "280, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2926.02.680", "maps": [], @@ -134432,8 +126692,6 @@ }, "description": "281, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2926.02.681", "maps": [], @@ -134466,8 +126724,6 @@ }, "description": "282, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2926.02.682", "maps": [], @@ -134500,8 +126756,6 @@ }, "description": "371, Elektro Verteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2926.03.602A", "maps": [], @@ -134534,8 +126788,6 @@ }, "description": "315, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2926.03.615", "maps": [], @@ -134568,8 +126820,6 @@ }, "description": "316, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2926.03.616", "maps": [], @@ -134602,8 +126852,6 @@ }, "description": "354, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2926.03.621", "maps": [], @@ -134636,8 +126884,6 @@ }, "description": "355, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2926.03.622", "maps": [], @@ -134670,8 +126916,6 @@ }, "description": "356, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2926.03.623", "maps": [], @@ -134704,8 +126948,6 @@ }, "description": "357, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2926.03.624", "maps": [], @@ -134738,8 +126980,6 @@ }, "description": "380, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "2926.03.625", "maps": [], @@ -134772,8 +127012,6 @@ }, "description": "01.008, Seminarraum C2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "2927.01.008", "maps": [], @@ -134806,8 +127044,6 @@ }, "description": "00.015, H\u00f6rsaal Refektorium C1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2927.EG.015", "maps": [], @@ -134840,8 +127076,6 @@ }, "description": "2.208, H\u00f6rsaal B1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "2929.02.101", "maps": [], @@ -134874,8 +127108,6 @@ }, "description": "-1001, H\u00f6rsaal Schiffsmeistersaal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2930.EG.001", "maps": [], @@ -134908,8 +127140,6 @@ }, "description": "M001, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2940.EG.001M", "maps": [], @@ -134942,8 +127172,6 @@ }, "description": "L502, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "2941.05.502L", "maps": [], @@ -134976,8 +127204,6 @@ }, "description": "R001, Poststelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2941.EG.001R", "maps": [], @@ -135010,8 +127236,6 @@ }, "description": "R005, Campus D, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2941.EG.005R", "maps": [], @@ -135044,8 +127268,6 @@ }, "description": "L006, Campus D, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2941.EG.006L", "maps": [], @@ -135078,8 +127300,6 @@ }, "description": "L022, Campus D, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "2941.EG.022L", "maps": [], @@ -135112,8 +127332,6 @@ }, "description": "Windfang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "3102.EG.020", "maps": [], @@ -135146,8 +127364,6 @@ }, "description": "2.A01/2.A02, Seminarraum A2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "3501.02.201A", "maps": [], @@ -135180,8 +127396,6 @@ }, "description": "0.A01, Seminarraum A0", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "3501.EG.001A", "maps": [], @@ -135214,8 +127428,6 @@ }, "description": "01.029, Seminarraum D3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "3502.01.101", "maps": [], @@ -135248,8 +127460,6 @@ }, "description": "01.027, Seminarraum D2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "3502.01.103", "maps": [], @@ -135282,8 +127492,6 @@ }, "description": "01.026, Seminarraum D1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "3502.01.104", "maps": [], @@ -135316,8 +127524,6 @@ }, "description": "01.031, Seminarraum D5", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "3502.01.105", "maps": [], @@ -135350,8 +127556,6 @@ }, "description": "02.001, H\u00f6rsaal P1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "3503.02.001", "maps": [], @@ -135384,8 +127588,6 @@ }, "description": "00.010, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "3503.EG.010", "maps": [], @@ -135418,8 +127620,6 @@ }, "description": "00.160, Seminarraum U10", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "3505.EG.016", "maps": [], @@ -135452,8 +127652,6 @@ }, "description": "00.520, H\u00f6rsaal U7-a", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "3505.EG.017", "maps": [], @@ -135486,8 +127684,6 @@ }, "description": "00.510, H\u00f6rsaal U7-b", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "3505.EG.021", "maps": [], @@ -135520,8 +127716,6 @@ }, "description": "00.410, Ausbildungslabor, chemisch", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "3505.EG.023", "maps": [], @@ -135554,8 +127748,6 @@ }, "description": "00.430, Ausbildungslabor, chemisch-biologisch", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "3505.EG.025", "maps": [], @@ -135588,8 +127780,6 @@ }, "description": "00.450, Ausbildungslabor, biologisch-pysikalisch", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "3505.EG.027", "maps": [], @@ -135622,8 +127812,6 @@ }, "description": "00.280, PC-Pool U5", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "3505.EG.060", "maps": [], @@ -135656,8 +127844,6 @@ }, "description": "00.250, Seminarraum U3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "3505.EG.062", "maps": [], @@ -135690,8 +127876,6 @@ }, "description": "00.230, Seminarraum U2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "3505.EG.063", "maps": [], @@ -135724,8 +127908,6 @@ }, "description": "00.220, H\u00f6rsaal U1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "3505.EG.064", "maps": [], @@ -135758,8 +127940,6 @@ }, "description": "-1001, Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "3904.U1.001", "maps": [], @@ -135792,8 +127972,6 @@ }, "description": "-1002, Lager/Reparatur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "3904.U1.002", "maps": [], @@ -135826,8 +128004,6 @@ }, "description": "001, Kapellenruine", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4001.EG.001", "maps": [], @@ -135860,8 +128036,6 @@ }, "description": "002, Korbiniansquelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4001.U1.002", "maps": [], @@ -135894,8 +128068,6 @@ }, "description": "101, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4101.01.101", "maps": [], @@ -135928,8 +128100,6 @@ }, "description": "101A, Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4101.01.101A", "maps": [], @@ -135962,8 +128132,6 @@ }, "description": "102, Archiv", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4101.01.102", "maps": [], @@ -135996,8 +128164,6 @@ }, "description": "102a, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4101.01.102A", "maps": [], @@ -136030,8 +128196,6 @@ }, "description": "103, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4101.01.103", "maps": [], @@ -136064,8 +128228,6 @@ }, "description": "104, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4101.01.104", "maps": [], @@ -136098,8 +128260,6 @@ }, "description": "105, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4101.01.105", "maps": [], @@ -136132,8 +128292,6 @@ }, "description": "106, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4101.01.106", "maps": [], @@ -136166,8 +128324,6 @@ }, "description": "107, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4101.01.107", "maps": [], @@ -136200,8 +128356,6 @@ }, "description": "108, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4101.01.108", "maps": [], @@ -136234,8 +128388,6 @@ }, "description": "109, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4101.01.109", "maps": [], @@ -136268,8 +128420,6 @@ }, "description": "110, Arbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4101.01.110", "maps": [], @@ -136302,8 +128452,6 @@ }, "description": "111, Schalterraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4101.01.111", "maps": [], @@ -136336,8 +128484,6 @@ }, "description": "112, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4101.01.112", "maps": [], @@ -136370,8 +128516,6 @@ }, "description": "113, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4101.01.113", "maps": [], @@ -136404,8 +128548,6 @@ }, "description": "113A, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4101.01.113A", "maps": [], @@ -136438,8 +128580,6 @@ }, "description": "114, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4101.01.114", "maps": [], @@ -136472,8 +128612,6 @@ }, "description": "114A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4101.01.114A", "maps": [], @@ -136506,8 +128644,6 @@ }, "description": "125, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4101.01.125", "maps": [], @@ -136540,8 +128676,6 @@ }, "description": "125A, WC-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4101.01.125A", "maps": [], @@ -136574,8 +128708,6 @@ }, "description": "126A, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4101.01.125B", "maps": [], @@ -136608,8 +128740,6 @@ }, "description": "126, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4101.01.126", "maps": [], @@ -136642,8 +128772,6 @@ }, "description": "127, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4101.01.127", "maps": [], @@ -136676,8 +128804,6 @@ }, "description": "128, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4101.01.128", "maps": [], @@ -136790,8 +128916,6 @@ }, "description": "130, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4101.01.130", "maps": [], @@ -136824,8 +128948,6 @@ }, "description": "130a, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4101.01.130A", "maps": [], @@ -136858,8 +128980,6 @@ }, "description": "130b, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4101.01.130B", "maps": [], @@ -136892,8 +129012,6 @@ }, "description": "201, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4101.02.201", "maps": [], @@ -136926,8 +129044,6 @@ }, "description": "202, Flur mit Kopierer (abschlie\u00dfbar)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4101.02.202", "maps": [], @@ -136960,8 +129076,6 @@ }, "description": "213, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4101.02.213", "maps": [], @@ -136994,8 +129108,6 @@ }, "description": "218, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4101.02.218", "maps": [], @@ -137028,8 +129140,6 @@ }, "description": "219, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4101.02.219", "maps": [], @@ -137062,8 +129172,6 @@ }, "description": "220, Flur mit Kopierer (abschlie\u00dfbar)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4101.02.220", "maps": [], @@ -137096,8 +129204,6 @@ }, "description": "225, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4101.02.225", "maps": [], @@ -137130,8 +129236,6 @@ }, "description": "225A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4101.02.225A", "maps": [], @@ -137164,8 +129268,6 @@ }, "description": "228, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4101.02.228", "maps": [], @@ -137198,8 +129300,6 @@ }, "description": "229, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4101.02.229", "maps": [], @@ -137232,8 +129332,6 @@ }, "description": "230, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4101.02.230", "maps": [], @@ -137266,8 +129364,6 @@ }, "description": "231, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4101.02.231", "maps": [], @@ -137300,8 +129396,6 @@ }, "description": "301, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4101.03.301", "maps": [], @@ -137334,8 +129428,6 @@ }, "description": "311, Aktenlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4101.03.311", "maps": [], @@ -137367,8 +129459,6 @@ }, "description": "312, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4101.03.312", "maps": [], @@ -137401,8 +129491,6 @@ }, "description": "313, Aufenthaltsraum mit K\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4101.03.313", "maps": [], @@ -137434,8 +129522,6 @@ }, "description": "316, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4101.03.316", "maps": [], @@ -137468,8 +129554,6 @@ }, "description": "318, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4101.03.318", "maps": [], @@ -137502,8 +129586,6 @@ }, "description": "320, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4101.03.320", "maps": [], @@ -137536,8 +129618,6 @@ }, "description": "328, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4101.03.328", "maps": [], @@ -137570,8 +129650,6 @@ }, "description": "329, Abstellraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4101.03.329", "maps": [], @@ -137604,8 +129682,6 @@ }, "description": "335a, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4101.03.335A", "maps": [], @@ -137638,8 +129714,6 @@ }, "description": "011, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4101.EG.011", "maps": [], @@ -137672,8 +129746,6 @@ }, "description": "002, Trafostation IX", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4101.EG.022", "maps": [], @@ -137706,8 +129778,6 @@ }, "description": "001, Trafostation IX", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4101.EG.023", "maps": [], @@ -137740,8 +129810,6 @@ }, "description": "024, Registratur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4101.EG.024", "maps": [], @@ -137774,8 +129842,6 @@ }, "description": "025, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4101.EG.025", "maps": [], @@ -137808,8 +129874,6 @@ }, "description": "027, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4101.EG.027", "maps": [], @@ -137842,8 +129906,6 @@ }, "description": "028, Poststelle Verwaltungsstelle Weihenstephan", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4101.EG.028", "maps": [], @@ -137876,8 +129938,6 @@ }, "description": "029, Lager Post", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4101.EG.029", "maps": [], @@ -137910,8 +129970,6 @@ }, "description": "029A, B\u00fcro Post", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4101.EG.030", "maps": [], @@ -137944,8 +130002,6 @@ }, "description": "033, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4101.EG.031", "maps": [], @@ -137978,8 +130034,6 @@ }, "description": "032, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4101.EG.032", "maps": [], @@ -138012,8 +130066,6 @@ }, "description": "032A, WC-Damen Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4101.EG.032A", "maps": [], @@ -138046,8 +130098,6 @@ }, "description": "031, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4101.EG.033", "maps": [], @@ -138080,8 +130130,6 @@ }, "description": "031A, WC-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4101.EG.033A", "maps": [], @@ -138114,8 +130162,6 @@ }, "description": "033B, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4101.EG.033B", "maps": [], @@ -138148,8 +130194,6 @@ }, "description": "038, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4101.EG.038", "maps": [], @@ -138182,8 +130226,6 @@ }, "description": "039, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4101.EG.039", "maps": [], @@ -138216,8 +130258,6 @@ }, "description": "051, B\u00fcro Studentenwerk", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4101.EG.051", "maps": [], @@ -138250,8 +130290,6 @@ }, "description": "052, B\u00fcro Studentenwerk", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4101.EG.052", "maps": [], @@ -138284,8 +130322,6 @@ }, "description": "075A, Gasversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4101.EG.075", "maps": [], @@ -138318,8 +130354,6 @@ }, "description": "079A, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4101.EG.091A", "maps": [], @@ -138352,8 +130386,6 @@ }, "description": "079B, WC-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4101.EG.091B", "maps": [], @@ -138386,8 +130418,6 @@ }, "description": "-001A, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4101.U1.001", "maps": [], @@ -138420,8 +130450,6 @@ }, "description": "-001B, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4101.U1.001B", "maps": [], @@ -138454,8 +130482,6 @@ }, "description": "-001C, Trafostation IX", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4101.U1.001C", "maps": [], @@ -138488,8 +130514,6 @@ }, "description": "-001D, Trafostation IX", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4101.U1.001D", "maps": [], @@ -138522,8 +130546,6 @@ }, "description": "-002, Heizungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4101.U1.002", "maps": [], @@ -138556,8 +130578,6 @@ }, "description": "-005, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4101.U1.005", "maps": [], @@ -138590,8 +130610,6 @@ }, "description": "-006, Abstellraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4101.U1.006", "maps": [], @@ -138624,8 +130642,6 @@ }, "description": "-007, Abluftraum/Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4101.U1.007", "maps": [], @@ -138658,8 +130674,6 @@ }, "description": "-008, Abstellraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4101.U1.008", "maps": [], @@ -138692,8 +130706,6 @@ }, "description": "-008A, Archiv", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4101.U1.008A", "maps": [], @@ -138726,8 +130738,6 @@ }, "description": "-008B, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4101.U1.008B", "maps": [], @@ -138760,8 +130770,6 @@ }, "description": "-011, K\u00fchlraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4101.U1.011", "maps": [], @@ -138794,8 +130802,6 @@ }, "description": "-012, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4101.U1.012", "maps": [], @@ -138828,8 +130834,6 @@ }, "description": "-013, Heizungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4101.U1.013", "maps": [], @@ -138862,8 +130866,6 @@ }, "description": "-013A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4101.U1.013A", "maps": [], @@ -138896,8 +130898,6 @@ }, "description": "-014, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4101.U1.014", "maps": [], @@ -138983,8 +130983,6 @@ }, "description": "1-39, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4102.01.039", "maps": [], @@ -139070,8 +131068,6 @@ }, "description": "1-33, Halle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4102.01.042", "maps": [], @@ -139157,8 +131153,6 @@ }, "description": "1-52, WC-Damen/Wickeltisch", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4102.01.055", "maps": [], @@ -139191,8 +131185,6 @@ }, "description": "1-51, WC-Damen (Personal)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4102.01.056", "maps": [], @@ -139225,8 +131217,6 @@ }, "description": "1-70, Fluchttreppe/Podest", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4102.01.070", "maps": [], @@ -139259,8 +131249,6 @@ }, "description": "2-56, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4102.02.056", "maps": [], @@ -139293,8 +131281,6 @@ }, "description": "2-34, Halle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4102.02.060", "maps": [], @@ -139327,8 +131313,6 @@ }, "description": "2-63, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4102.02.064", "maps": [], @@ -139361,8 +131345,6 @@ }, "description": "2-63A, WC-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4102.02.064A", "maps": [], @@ -139395,8 +131377,6 @@ }, "description": "2-71, Fluchttreppe/Podest", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4102.02.071", "maps": [], @@ -139429,8 +131409,6 @@ }, "description": "E-28, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4102.EG.028", "maps": [], @@ -139463,8 +131441,6 @@ }, "description": "E-29, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4102.EG.029", "maps": [], @@ -139497,8 +131473,6 @@ }, "description": "E-33, Halle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4102.EG.031", "maps": [], @@ -139531,8 +131505,6 @@ }, "description": "E-32, WC-Behinderte", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4102.EG.032", "maps": [], @@ -139565,8 +131537,6 @@ }, "description": "E-32A, WC/Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4102.EG.032A", "maps": [], @@ -139599,8 +131569,6 @@ }, "description": "E-32B, WC-Behinderte Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4102.EG.032C", "maps": [], @@ -139633,8 +131601,6 @@ }, "description": "E-36, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4102.EG.033", "maps": [], @@ -139827,8 +131793,6 @@ }, "description": "E-37, Technik H\u00f6rsaal 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4102.EG.037", "maps": [], @@ -139861,8 +131825,6 @@ }, "description": "E-38, Technik H\u00f6rsaal 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4102.EG.038", "maps": [], @@ -139895,8 +131857,6 @@ }, "description": "E-69, Fluchttreppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4102.EG.069", "maps": [], @@ -139929,8 +131889,6 @@ }, "description": "U-01, Technik/Heizung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4102.U1.001", "maps": [], @@ -139963,8 +131921,6 @@ }, "description": "U-01A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4102.U1.001A", "maps": [], @@ -139997,8 +131953,6 @@ }, "description": "U-04, Abstellraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4102.U1.004", "maps": [], @@ -140031,8 +131985,6 @@ }, "description": "U-05, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4102.U1.005", "maps": [], @@ -140065,8 +132017,6 @@ }, "description": "U-07, Abstellraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4102.U1.007", "maps": [], @@ -140099,8 +132049,6 @@ }, "description": "U-07A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4102.U1.007A", "maps": [], @@ -140133,8 +132081,6 @@ }, "description": "U-12, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4102.U1.012", "maps": [], @@ -140167,8 +132113,6 @@ }, "description": "U-19, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4102.U1.019", "maps": [], @@ -140201,8 +132145,6 @@ }, "description": "U-20, Reinigungsmittel/Hygenie/Aufenthalt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4102.U1.020", "maps": [], @@ -140235,8 +132177,6 @@ }, "description": "U-20a, Vorraum H\u00f6rsaal 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4102.U1.020A", "maps": [], @@ -140269,8 +132209,6 @@ }, "description": "U-21, Vorraum H\u00f6rsaal 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4102.U1.021", "maps": [], @@ -140303,8 +132241,6 @@ }, "description": "U-22, Wertstoffe/M\u00fcll", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4102.U1.022", "maps": [], @@ -140337,8 +132273,6 @@ }, "description": "U-22a, Lagerraum H\u00f6rsaal 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4102.U1.022A", "maps": [], @@ -140371,8 +132305,6 @@ }, "description": "U-22b, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4102.U1.022B", "maps": [], @@ -140405,8 +132337,6 @@ }, "description": "U-23, Lagerraum H\u00f6rsaal 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4102.U1.023", "maps": [], @@ -140439,8 +132369,6 @@ }, "description": "U-24, Lagerraum H\u00f6rsaal 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4102.U1.024", "maps": [], @@ -140473,8 +132401,6 @@ }, "description": "U2-01, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4102.U2.001", "maps": [], @@ -140507,8 +132433,6 @@ }, "description": "U2-02, Heizung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4102.U2.002", "maps": [], @@ -140541,8 +132465,6 @@ }, "description": "U2-03, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4102.U2.003", "maps": [], @@ -140575,8 +132497,6 @@ }, "description": "U2-02A, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4102.U2.005", "maps": [], @@ -140609,8 +132529,6 @@ }, "description": "O-02, Seminarraum 1 GZW", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4103.01.002", "maps": [], @@ -140643,8 +132561,6 @@ }, "description": "O-04, Seminarraum 2 GZW", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4103.01.004", "maps": [], @@ -140677,8 +132593,6 @@ }, "description": "O-05, Schreibst\u00fcberl", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4103.01.005", "maps": [], @@ -140711,8 +132625,6 @@ }, "description": "O-06, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4103.01.006", "maps": [], @@ -140745,8 +132657,6 @@ }, "description": "O-07, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4103.01.008", "maps": [], @@ -140779,8 +132689,6 @@ }, "description": "O-08, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4103.01.009", "maps": [], @@ -140813,8 +132721,6 @@ }, "description": "E-01, Vorzimmer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4103.EG.001", "maps": [], @@ -140847,8 +132753,6 @@ }, "description": "E-02, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4103.EG.002", "maps": [], @@ -140881,8 +132785,6 @@ }, "description": "E-03, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4103.EG.003", "maps": [], @@ -140915,8 +132817,6 @@ }, "description": "E-04, Lounge", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4103.EG.004", "maps": [], @@ -140949,8 +132849,6 @@ }, "description": "E-05, Gasometer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4103.EG.005", "maps": [], @@ -140983,8 +132881,6 @@ }, "description": "E-06, Trafostation II", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4103.EG.006", "maps": [], @@ -141017,8 +132913,6 @@ }, "description": "E-07, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4103.EG.007", "maps": [], @@ -141051,8 +132945,6 @@ }, "description": "E-08, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4103.EG.008", "maps": [], @@ -141085,8 +132977,6 @@ }, "description": "E-09, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4103.EG.009", "maps": [], @@ -141119,8 +133009,6 @@ }, "description": "E-10, Durgang zum Geb\u00e4ude 4102", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4103.EG.010", "maps": [], @@ -141153,8 +133041,6 @@ }, "description": "U-01, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4103.U1.001", "maps": [], @@ -141187,8 +133073,6 @@ }, "description": "U-02, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4103.U1.002", "maps": [], @@ -141221,8 +133105,6 @@ }, "description": "U-03, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4103.U1.003", "maps": [], @@ -141255,8 +133137,6 @@ }, "description": "U-04, Gasverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4103.U1.004", "maps": [], @@ -141289,8 +133169,6 @@ }, "description": "U-04A, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4103.U1.004A", "maps": [], @@ -141323,8 +133201,6 @@ }, "description": "U-04B, WC-Dusche Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4103.U1.004B", "maps": [], @@ -141357,8 +133233,6 @@ }, "description": "U-04C, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4103.U1.004C", "maps": [], @@ -141391,8 +133265,6 @@ }, "description": "U-04D, Dusche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4103.U1.004D", "maps": [], @@ -141425,8 +133297,6 @@ }, "description": "U-04E, Trafostation II", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4103.U1.004E", "maps": [], @@ -141459,8 +133329,6 @@ }, "description": "U-05A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4103.U1.005A", "maps": [], @@ -141493,8 +133361,6 @@ }, "description": "U-05B, Flur 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4103.U1.005B", "maps": [], @@ -141527,8 +133393,6 @@ }, "description": "U-06, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4103.U1.006", "maps": [], @@ -141561,8 +133425,6 @@ }, "description": "U-07, Archiv/ Verkabelung der Trafostation II", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4103.U1.007", "maps": [], @@ -141595,8 +133457,6 @@ }, "description": "U-08, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4103.U1.008", "maps": [], @@ -141629,8 +133489,6 @@ }, "description": "U-09, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4103.U1.009", "maps": [], @@ -141663,8 +133521,6 @@ }, "description": "O 05C, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4105.01.005C", "maps": [], @@ -141697,8 +133553,6 @@ }, "description": "O 14, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4105.01.071", "maps": [], @@ -141731,8 +133585,6 @@ }, "description": "O 13, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4105.01.072", "maps": [], @@ -141765,8 +133617,6 @@ }, "description": "O 11, WC-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4105.01.073", "maps": [], @@ -141799,8 +133649,6 @@ }, "description": "O 11A, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4105.01.074", "maps": [], @@ -141833,8 +133681,6 @@ }, "description": "O 11B, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4105.01.075", "maps": [], @@ -141867,8 +133713,6 @@ }, "description": "O 12, WC-Damen Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4105.01.076", "maps": [], @@ -141901,8 +133745,6 @@ }, "description": "O 12A, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4105.01.077", "maps": [], @@ -141935,8 +133777,6 @@ }, "description": "E 09, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4105.EG.009", "maps": [], @@ -141969,8 +133809,6 @@ }, "description": "E 12, WC-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4105.EG.012A", "maps": [], @@ -142003,8 +133841,6 @@ }, "description": "E 12, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4105.EG.012B", "maps": [], @@ -142037,8 +133873,6 @@ }, "description": "E 12, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4105.EG.012C", "maps": [], @@ -142071,8 +133905,6 @@ }, "description": "E 13, WC-Damen Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4105.EG.013A", "maps": [], @@ -142105,8 +133937,6 @@ }, "description": "E 13, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4105.EG.013B", "maps": [], @@ -142139,8 +133969,6 @@ }, "description": "E 14, Foyer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4105.EG.014", "maps": [], @@ -142173,8 +134001,6 @@ }, "description": "E 15, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4105.EG.015", "maps": [], @@ -142207,8 +134033,6 @@ }, "description": "S 01, Brandmeldeanlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4105.U1.001", "maps": [], @@ -142241,8 +134065,6 @@ }, "description": "S 02, Absaugung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4105.U1.002", "maps": [], @@ -142275,8 +134097,6 @@ }, "description": "S 13A, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4105.U1.013A", "maps": [], @@ -142309,8 +134129,6 @@ }, "description": "S 13B, Dusche-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4105.U1.013B", "maps": [], @@ -142343,8 +134161,6 @@ }, "description": "S 13C, Dusche-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4105.U1.013C", "maps": [], @@ -142377,8 +134193,6 @@ }, "description": "S 13D, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4105.U1.013D", "maps": [], @@ -142411,8 +134225,6 @@ }, "description": "S 13E, WC-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4105.U1.013E", "maps": [], @@ -142445,8 +134257,6 @@ }, "description": "S 13F, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4105.U1.013F", "maps": [], @@ -142479,8 +134289,6 @@ }, "description": "S 14, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4105.U1.014", "maps": [], @@ -142513,8 +134321,6 @@ }, "description": "S 16, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4105.U1.016", "maps": [], @@ -142547,8 +134353,6 @@ }, "description": "S 17, S1-Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4105.U1.017", "maps": [], @@ -142581,8 +134385,6 @@ }, "description": "S 18, S1-Trepppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4105.U1.018", "maps": [], @@ -142615,8 +134417,6 @@ }, "description": "K 16, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4105.U2.016", "maps": [], @@ -142649,8 +134449,6 @@ }, "description": "K 17, Fernw\u00e4rme", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4105.U2.017", "maps": [], @@ -142683,8 +134481,6 @@ }, "description": "K 20, S1-Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4105.U2.020", "maps": [], @@ -142717,8 +134513,6 @@ }, "description": "K 19, S1-Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4105.U2.022", "maps": [], @@ -142751,8 +134545,6 @@ }, "description": "K 23, Elektroverteilung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4105.U2.023", "maps": [], @@ -142785,8 +134577,6 @@ }, "description": "K 18, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4105.U2.024", "maps": [], @@ -142819,8 +134609,6 @@ }, "description": "O 13, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4106.01.063", "maps": [], @@ -142853,8 +134641,6 @@ }, "description": "O 69 B, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4106.01.063A", "maps": [], @@ -142887,8 +134673,6 @@ }, "description": "O 62, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4106.01.063B", "maps": [], @@ -142921,8 +134705,6 @@ }, "description": "O 14, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4106.01.075", "maps": [], @@ -142955,8 +134737,6 @@ }, "description": "O 16, WC-Herren Vorraum/Putzkammer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4106.01.076", "maps": [], @@ -142989,8 +134769,6 @@ }, "description": "O 17, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4106.01.077", "maps": [], @@ -143023,8 +134801,6 @@ }, "description": "O 18, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4106.01.078", "maps": [], @@ -143057,8 +134833,6 @@ }, "description": "O 19, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4106.01.079", "maps": [], @@ -143091,8 +134865,6 @@ }, "description": "O 20, WC-Damen Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4106.01.080", "maps": [], @@ -143125,8 +134897,6 @@ }, "description": "E 14, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4106.EG.044", "maps": [], @@ -143159,8 +134929,6 @@ }, "description": "E 13, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4106.EG.046", "maps": [], @@ -143193,8 +134961,6 @@ }, "description": "E 11A, WC-Herren Vorraum/Putzkammer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4106.EG.055", "maps": [], @@ -143227,8 +134993,6 @@ }, "description": "E 11B, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4106.EG.056", "maps": [], @@ -143261,8 +135025,6 @@ }, "description": "E 11C, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4106.EG.057", "maps": [], @@ -143295,8 +135057,6 @@ }, "description": "E 12A, WC-Damen Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4106.EG.058", "maps": [], @@ -143329,8 +135089,6 @@ }, "description": "E 12B, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4106.EG.059", "maps": [], @@ -143363,8 +135121,6 @@ }, "description": "S 17, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4106.U1.034", "maps": [], @@ -143397,8 +135153,6 @@ }, "description": "S 16, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4106.U1.035", "maps": [], @@ -143431,8 +135185,6 @@ }, "description": "S 13, WC-Herren Vorraum/Putzkammer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4106.U1.036", "maps": [], @@ -143465,8 +135217,6 @@ }, "description": "S 13B, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4106.U1.037", "maps": [], @@ -143499,8 +135249,6 @@ }, "description": "S 13C, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4106.U1.038", "maps": [], @@ -143533,8 +135281,6 @@ }, "description": "S 14A, WC-Damen Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4106.U1.039", "maps": [], @@ -143567,8 +135313,6 @@ }, "description": "S 14B, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4106.U1.040", "maps": [], @@ -143601,8 +135345,6 @@ }, "description": "S 15, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4106.U1.041", "maps": [], @@ -143635,8 +135377,6 @@ }, "description": "K 02, Archiv", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4106.U2.002", "maps": [], @@ -143669,8 +135409,6 @@ }, "description": "K 03, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4106.U2.003A", "maps": [], @@ -143703,8 +135441,6 @@ }, "description": "K 04, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4106.U2.004", "maps": [], @@ -143737,8 +135473,6 @@ }, "description": "K 05, Archiv", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4106.U2.005", "maps": [], @@ -143771,8 +135505,6 @@ }, "description": "K 06, Archiv", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4106.U2.006", "maps": [], @@ -143805,8 +135537,6 @@ }, "description": "K 11, Abstellraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4106.U2.011", "maps": [], @@ -143839,8 +135569,6 @@ }, "description": "K 12, Server", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4106.U2.012", "maps": [], @@ -143873,8 +135601,6 @@ }, "description": "K 13, Server", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4106.U2.013", "maps": [], @@ -143907,8 +135633,6 @@ }, "description": "K 16 A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4106.U2.022", "maps": [], @@ -143941,8 +135665,6 @@ }, "description": "K 18, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4106.U2.023", "maps": [], @@ -143975,8 +135697,6 @@ }, "description": "K 17, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4106.U2.024", "maps": [], @@ -144009,8 +135729,6 @@ }, "description": "K 14, Heizung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4106.U2.025", "maps": [], @@ -144043,8 +135761,6 @@ }, "description": "O 13, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4107.01.113", "maps": [], @@ -144077,8 +135793,6 @@ }, "description": "O 14, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4107.01.114", "maps": [], @@ -144111,8 +135825,6 @@ }, "description": "O 14a, Dusche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4107.01.114A", "maps": [], @@ -144145,8 +135857,6 @@ }, "description": "O 14b, WC-Damen Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4107.01.114B", "maps": [], @@ -144179,8 +135889,6 @@ }, "description": "O 14d, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4107.01.114D", "maps": [], @@ -144213,8 +135921,6 @@ }, "description": "O 15, WC-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4107.01.115", "maps": [], @@ -144247,8 +135953,6 @@ }, "description": "O 15a, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4107.01.115A", "maps": [], @@ -144281,8 +135985,6 @@ }, "description": "O 16, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4107.01.116", "maps": [], @@ -144315,8 +136017,6 @@ }, "description": "O 11, Treppe (Dachausstieg)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4107.01.117", "maps": [], @@ -144349,8 +136049,6 @@ }, "description": "E01, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4107.EG.001", "maps": [], @@ -144383,8 +136081,6 @@ }, "description": "E02, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4107.EG.002", "maps": [], @@ -144417,8 +136113,6 @@ }, "description": "E03, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4107.EG.003", "maps": [], @@ -144451,8 +136145,6 @@ }, "description": "E04, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4107.EG.004", "maps": [], @@ -144485,8 +136177,6 @@ }, "description": "E05, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4107.EG.005", "maps": [], @@ -144519,8 +136209,6 @@ }, "description": "E06A, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4107.EG.006A", "maps": [], @@ -144553,8 +136241,6 @@ }, "description": "E06B, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4107.EG.006B", "maps": [], @@ -144587,8 +136273,6 @@ }, "description": "E07, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4107.EG.007", "maps": [], @@ -144621,8 +136305,6 @@ }, "description": "E08A, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4107.EG.008A", "maps": [], @@ -144655,8 +136337,6 @@ }, "description": "E08B, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4107.EG.008B", "maps": [], @@ -144689,8 +136369,6 @@ }, "description": "E09A, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4107.EG.009A", "maps": [], @@ -144723,8 +136401,6 @@ }, "description": "E09B, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4107.EG.009B", "maps": [], @@ -144757,8 +136433,6 @@ }, "description": "E 11, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4107.EG.011", "maps": [], @@ -144791,8 +136465,6 @@ }, "description": "E11A, WC-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4107.EG.011A", "maps": [], @@ -144825,8 +136497,6 @@ }, "description": "E11B, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4107.EG.011B", "maps": [], @@ -144859,8 +136529,6 @@ }, "description": "E11C, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4107.EG.011C", "maps": [], @@ -144893,8 +136561,6 @@ }, "description": "E12A, WC-Damen Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4107.EG.012A", "maps": [], @@ -144927,8 +136593,6 @@ }, "description": "E12B, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4107.EG.012B", "maps": [], @@ -144961,8 +136625,6 @@ }, "description": "E13, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4107.EG.013", "maps": [], @@ -144995,8 +136657,6 @@ }, "description": "E14, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4107.EG.014", "maps": [], @@ -145029,8 +136689,6 @@ }, "description": "S 01, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4107.U1.001", "maps": [], @@ -145063,8 +136721,6 @@ }, "description": "S 07a, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4107.U1.007A", "maps": [], @@ -145097,8 +136753,6 @@ }, "description": "S 12, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4107.U1.012A", "maps": [], @@ -145131,8 +136785,6 @@ }, "description": "S 14, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4107.U1.014", "maps": [], @@ -145165,8 +136817,6 @@ }, "description": "S 14A, WC-Damen Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4107.U1.014A", "maps": [], @@ -145199,8 +136849,6 @@ }, "description": "S 14B, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4107.U1.014B", "maps": [], @@ -145233,8 +136881,6 @@ }, "description": "S 14C, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4107.U1.014C", "maps": [], @@ -145267,8 +136913,6 @@ }, "description": "S 15, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4107.U1.015", "maps": [], @@ -145301,8 +136945,6 @@ }, "description": "S 15A, WC-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4107.U1.015A", "maps": [], @@ -145335,8 +136977,6 @@ }, "description": "S 15B, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4107.U1.015B", "maps": [], @@ -145369,8 +137009,6 @@ }, "description": "S 15C, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4107.U1.015C", "maps": [], @@ -145403,8 +137041,6 @@ }, "description": "S 16, Server", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4107.U1.016", "maps": [], @@ -145437,8 +137073,6 @@ }, "description": "S 17, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4107.U1.017", "maps": [], @@ -145471,8 +137105,6 @@ }, "description": "S 18, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4107.U1.018", "maps": [], @@ -145505,8 +137137,6 @@ }, "description": "K04, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4107.U2.004", "maps": [], @@ -145539,8 +137169,6 @@ }, "description": "K05A, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4107.U2.005", "maps": [], @@ -145573,8 +137201,6 @@ }, "description": "K05B, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4107.U2.005A", "maps": [], @@ -145607,8 +137233,6 @@ }, "description": "K06, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4107.U2.006", "maps": [], @@ -145641,8 +137265,6 @@ }, "description": "K07, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4107.U2.007", "maps": [], @@ -145675,8 +137297,6 @@ }, "description": "K08, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4107.U2.008", "maps": [], @@ -145709,8 +137329,6 @@ }, "description": "K09, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4107.U2.009", "maps": [], @@ -145743,8 +137361,6 @@ }, "description": "K18, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4107.U2.018", "maps": [], @@ -145777,8 +137393,6 @@ }, "description": "K19A, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4107.U2.019A", "maps": [], @@ -145811,8 +137425,6 @@ }, "description": "K19B, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4107.U2.019B", "maps": [], @@ -145845,8 +137457,6 @@ }, "description": "K20, Heizung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4107.U2.020", "maps": [], @@ -145879,8 +137489,6 @@ }, "description": "K15, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4107.U2.021", "maps": [], @@ -145913,8 +137521,6 @@ }, "description": "K22, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4107.U2.022", "maps": [], @@ -145947,8 +137553,6 @@ }, "description": "K21, HA-Raum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4107.U2.023", "maps": [], @@ -145981,8 +137585,6 @@ }, "description": "302A, keine Nutzung (wird zur\u00fcckgebaut)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4108.02.302A", "maps": [], @@ -146015,8 +137617,6 @@ }, "description": "302B, keine Nutzung (wird zur\u00fcckgebaut)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4108.02.302B", "maps": [], @@ -146049,8 +137649,6 @@ }, "description": "302C, keine Nutzung (wird zur\u00fcckgebaut)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4108.02.302C", "maps": [], @@ -146083,8 +137681,6 @@ }, "description": "311A, keine Nutzung (wird zur\u00fcckgebaut)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4108.02.311A", "maps": [], @@ -146117,8 +137713,6 @@ }, "description": "312, Be- und Entl\u00fcftung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4108.02.312", "maps": [], @@ -146151,8 +137745,6 @@ }, "description": "314, keine Nutzung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4108.02.314", "maps": [], @@ -146185,8 +137777,6 @@ }, "description": "317B, keine Nutzung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4108.02.317B", "maps": [], @@ -146219,8 +137809,6 @@ }, "description": "318A, keine Nutzung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4108.02.318A", "maps": [], @@ -146253,8 +137841,6 @@ }, "description": "318B, keine Nutzung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4108.02.318B", "maps": [], @@ -146287,8 +137873,6 @@ }, "description": "319, keine Nutzung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4108.02.319", "maps": [], @@ -146321,8 +137905,6 @@ }, "description": "320, Aufzugs- und F\u00f6rdermaschinen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4108.02.320", "maps": [], @@ -146355,8 +137937,6 @@ }, "description": "105, H\u00f6rsaal 9 (WZWH09)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4108.EG.105", "maps": [], @@ -146389,8 +137969,6 @@ }, "description": "106, H\u00f6rsaal 8 (WZWH08)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4108.EG.106", "maps": [], @@ -146423,8 +138001,6 @@ }, "description": "001, Wasseraufbereitung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4108.U1.001", "maps": [], @@ -146457,8 +138033,6 @@ }, "description": "004, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4108.U1.004", "maps": [], @@ -146491,8 +138065,6 @@ }, "description": "004A, WC-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4108.U1.004A", "maps": [], @@ -146525,8 +138097,6 @@ }, "description": "005, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4108.U1.005", "maps": [], @@ -146559,8 +138129,6 @@ }, "description": "007, Elektroverteilung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4108.U1.007", "maps": [], @@ -146593,8 +138161,6 @@ }, "description": "008, Garage TU", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4108.U1.008", "maps": [], @@ -146627,8 +138193,6 @@ }, "description": "012, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4108.U1.012", "maps": [], @@ -146661,8 +138225,6 @@ }, "description": "013, Hausanschluss", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4108.U1.013", "maps": [], @@ -146695,8 +138257,6 @@ }, "description": "013A, Gasversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4108.U1.013A", "maps": [], @@ -146729,8 +138289,6 @@ }, "description": "013B, Gasflaschen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4108.U1.013B", "maps": [], @@ -146763,8 +138321,6 @@ }, "description": "021, Heizungsverteilerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4108.U1.021", "maps": [], @@ -146797,8 +138353,6 @@ }, "description": "1.OG01, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4109.01.101", "maps": [], @@ -146831,8 +138385,6 @@ }, "description": "1.OG17, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4109.01.102", "maps": [], @@ -146865,8 +138417,6 @@ }, "description": "1.OG18, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4109.01.103", "maps": [], @@ -146899,8 +138449,6 @@ }, "description": "1.OG02, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4109.01.105", "maps": [], @@ -146933,8 +138481,6 @@ }, "description": "1.OG19, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4109.01.117", "maps": [], @@ -146967,8 +138513,6 @@ }, "description": "2.OG17, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4109.02.004", "maps": [], @@ -147001,8 +138545,6 @@ }, "description": "2.OG16, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4109.02.005", "maps": [], @@ -147035,8 +138577,6 @@ }, "description": "2.OG02, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4109.02.014", "maps": [], @@ -147069,8 +138609,6 @@ }, "description": "2.OG01, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4109.02.015", "maps": [], @@ -147103,8 +138641,6 @@ }, "description": "2.OG03, Lager/Speicheraufgang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4109.02.017", "maps": [], @@ -147137,8 +138673,6 @@ }, "description": "EG01a, Flur (Eingang)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4109.EG.041", "maps": [], @@ -147171,8 +138705,6 @@ }, "description": "EG01b, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4109.EG.042", "maps": [], @@ -147205,8 +138737,6 @@ }, "description": "EG15, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4109.EG.043", "maps": [], @@ -147239,8 +138769,6 @@ }, "description": "EG04, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4109.EG.050", "maps": [], @@ -147273,8 +138801,6 @@ }, "description": "EG05, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4109.EG.051", "maps": [], @@ -147307,8 +138833,6 @@ }, "description": "EG14, WC-Barrierefrei/Wickeltisch", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4109.EG.059", "maps": [], @@ -147341,8 +138865,6 @@ }, "description": "UG01, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4109.U1.011", "maps": [], @@ -147375,8 +138897,6 @@ }, "description": "UG02, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4109.U1.012", "maps": [], @@ -147409,8 +138929,6 @@ }, "description": "UG03, Haustechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4109.U1.013", "maps": [], @@ -147443,8 +138961,6 @@ }, "description": "UG05, Lager (gem. Nutzung 70/30)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4109.U1.015", "maps": [], @@ -147477,8 +138993,6 @@ }, "description": "UG05b, E-Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4109.U1.016", "maps": [], @@ -147511,8 +139025,6 @@ }, "description": "UG06a, Flurzone", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4109.U1.017", "maps": [], @@ -147545,8 +139057,6 @@ }, "description": "UG06c, Flurzone", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4109.U1.019", "maps": [], @@ -147579,8 +139089,6 @@ }, "description": "1. OG 01, Treppenhaus West", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4110.01.001", "maps": [], @@ -147613,8 +139121,6 @@ }, "description": "1. OG 01A, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4110.01.001A", "maps": [], @@ -147647,8 +139153,6 @@ }, "description": "1. OG 05, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4110.01.002", "maps": [], @@ -147681,8 +139185,6 @@ }, "description": "1. OG 04, Treppenhaus Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4110.01.003", "maps": [], @@ -147715,8 +139217,6 @@ }, "description": "2. OG 01, Treppenhaus West", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4110.02.001", "maps": [], @@ -147749,8 +139249,6 @@ }, "description": "2. OG 01A, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4110.02.001A", "maps": [], @@ -147783,8 +139281,6 @@ }, "description": "2. OG 04, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4110.02.004", "maps": [], @@ -147817,8 +139313,6 @@ }, "description": "2. OG 03, Treppenhaus Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4110.02.025", "maps": [], @@ -147851,8 +139345,6 @@ }, "description": "2. OG 02A, Praktikumsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4110.02.027", "maps": [], @@ -147885,8 +139377,6 @@ }, "description": "DG 01, Treppenhaus West", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4110.03.001", "maps": [], @@ -147919,8 +139409,6 @@ }, "description": "DG 02, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4110.03.035", "maps": [], @@ -147953,8 +139441,6 @@ }, "description": "EG 01, Treppenraum West", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4110.EG.001", "maps": [], @@ -147987,8 +139473,6 @@ }, "description": "EG 01A, Eingangstreppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4110.EG.001A", "maps": [], @@ -148021,8 +139505,6 @@ }, "description": "EG 04, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4110.EG.002", "maps": [], @@ -148055,8 +139537,6 @@ }, "description": "EG 01A, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4110.EG.002A", "maps": [], @@ -148089,8 +139569,6 @@ }, "description": "EG 03, Treppenraum Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4110.EG.005", "maps": [], @@ -148123,8 +139601,6 @@ }, "description": "UG 09, E-Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4110.U1.001", "maps": [], @@ -148157,8 +139633,6 @@ }, "description": "UG 06A, WC-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4110.U1.002", "maps": [], @@ -148191,8 +139665,6 @@ }, "description": "UG 06B, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4110.U1.002A", "maps": [], @@ -148225,8 +139697,6 @@ }, "description": "UG 07, WC-Barrierefrei", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4110.U1.002B", "maps": [], @@ -148259,8 +139729,6 @@ }, "description": "UG 08, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4110.U1.002C", "maps": [], @@ -148293,8 +139761,6 @@ }, "description": "UG 05A, WC-Damen Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4110.U1.003", "maps": [], @@ -148327,8 +139793,6 @@ }, "description": "UG 05B, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4110.U1.003A", "maps": [], @@ -148361,8 +139825,6 @@ }, "description": "UG 03, Fernw\u00e4rme und Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4110.U1.004", "maps": [], @@ -148395,8 +139857,6 @@ }, "description": "UG 01A, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4110.U1.004A", "maps": [], @@ -148429,8 +139889,6 @@ }, "description": "UG 02, Lager Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4110.U1.005", "maps": [], @@ -148463,8 +139921,6 @@ }, "description": "UG 04, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4110.U1.006", "maps": [], @@ -148497,8 +139953,6 @@ }, "description": "UG 01, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4110.U1.008", "maps": [], @@ -148531,8 +139985,6 @@ }, "description": "1.01, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4111.01.001", "maps": [], @@ -148565,8 +140017,6 @@ }, "description": "1.02, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4111.01.002", "maps": [], @@ -148599,8 +140049,6 @@ }, "description": "1.03, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4111.01.003", "maps": [], @@ -148633,8 +140081,6 @@ }, "description": "1.04, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4111.01.004", "maps": [], @@ -148667,8 +140113,6 @@ }, "description": "1.17, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4111.01.011", "maps": [], @@ -148701,8 +140145,6 @@ }, "description": "1.20, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4111.01.014", "maps": [], @@ -148735,8 +140177,6 @@ }, "description": "1.21, Serverraum/ ELT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4111.01.015", "maps": [], @@ -148769,8 +140209,6 @@ }, "description": "1.25, WC-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4111.01.019", "maps": [], @@ -148803,8 +140241,6 @@ }, "description": "1.26, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4111.01.020", "maps": [], @@ -148837,8 +140273,6 @@ }, "description": "1.27, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4111.01.021", "maps": [], @@ -148871,8 +140305,6 @@ }, "description": "2.01, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4111.02.101", "maps": [], @@ -148905,8 +140337,6 @@ }, "description": "2.02, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4111.02.102", "maps": [], @@ -148939,8 +140369,6 @@ }, "description": "2.03, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4111.02.103", "maps": [], @@ -148973,8 +140401,6 @@ }, "description": "2.04, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4111.02.104", "maps": [], @@ -149007,8 +140433,6 @@ }, "description": "2.07, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4111.02.105", "maps": [], @@ -149041,8 +140465,6 @@ }, "description": "2.20, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4111.02.115", "maps": [], @@ -149075,8 +140497,6 @@ }, "description": "2.23, ELT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4111.02.118", "maps": [], @@ -149109,8 +140529,6 @@ }, "description": "2.25, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4111.02.120", "maps": [], @@ -149143,8 +140561,6 @@ }, "description": "2.31, WC-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4111.02.126", "maps": [], @@ -149177,8 +140593,6 @@ }, "description": "2.32, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4111.02.127", "maps": [], @@ -149211,8 +140625,6 @@ }, "description": "2.33, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4111.02.128", "maps": [], @@ -149245,8 +140657,6 @@ }, "description": "3.01, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4111.03.101", "maps": [], @@ -149279,8 +140689,6 @@ }, "description": "3.02, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4111.03.102", "maps": [], @@ -149313,8 +140721,6 @@ }, "description": "3.04, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4111.03.103", "maps": [], @@ -149347,8 +140753,6 @@ }, "description": "3.07, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4111.03.104", "maps": [], @@ -149381,8 +140785,6 @@ }, "description": "3.16, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4111.03.110", "maps": [], @@ -149415,8 +140817,6 @@ }, "description": "3.17, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4111.03.111", "maps": [], @@ -149449,8 +140849,6 @@ }, "description": "4.01, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "4111.04.101", "maps": [], @@ -149483,8 +140881,6 @@ }, "description": "4.02, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "4111.04.102", "maps": [], @@ -149517,8 +140913,6 @@ }, "description": "E01, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4111.EG.101", "maps": [], @@ -149551,8 +140945,6 @@ }, "description": "E02, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4111.EG.102", "maps": [], @@ -149585,8 +140977,6 @@ }, "description": "E03, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4111.EG.103", "maps": [], @@ -149619,8 +141009,6 @@ }, "description": "E04, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4111.EG.104", "maps": [], @@ -149653,8 +141041,6 @@ }, "description": "E04A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4111.EG.104A", "maps": [], @@ -149687,8 +141073,6 @@ }, "description": "E05, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4111.EG.105", "maps": [], @@ -149721,8 +141105,6 @@ }, "description": "E13, ELT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4111.EG.108", "maps": [], @@ -149755,8 +141137,6 @@ }, "description": "E22, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4111.EG.117", "maps": [], @@ -149789,8 +141169,6 @@ }, "description": "E23, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4111.EG.118", "maps": [], @@ -149823,8 +141201,6 @@ }, "description": "E24, WC-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4111.EG.119", "maps": [], @@ -149857,8 +141233,6 @@ }, "description": "E25, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4111.EG.120", "maps": [], @@ -149891,8 +141265,6 @@ }, "description": "E26, Dusche-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4111.EG.121", "maps": [], @@ -149925,8 +141297,6 @@ }, "description": "E27, Umkleide-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4111.EG.122", "maps": [], @@ -149959,8 +141329,6 @@ }, "description": "K14A/1, ELT Betriebstechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "TP", "id": "4111.TP.107B", "maps": [], @@ -149993,8 +141361,6 @@ }, "description": "K14B/1, ehem. Keimstra\u00dfe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "TP", "id": "4111.TP.107C", "maps": [], @@ -150027,8 +141393,6 @@ }, "description": "K01, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4111.U1.101", "maps": [], @@ -150061,8 +141425,6 @@ }, "description": "K02, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4111.U1.102", "maps": [], @@ -150095,8 +141457,6 @@ }, "description": "K05, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4111.U1.103", "maps": [], @@ -150129,8 +141489,6 @@ }, "description": "K13, Aufzugsraum/ELT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4111.U1.106", "maps": [], @@ -150163,8 +141521,6 @@ }, "description": "K14A, Trafostation III", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4111.U1.107A", "maps": [], @@ -150197,8 +141553,6 @@ }, "description": "K14B, Trafostation III", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4111.U1.107B", "maps": [], @@ -150231,8 +141585,6 @@ }, "description": "K14C, Trafostation III", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4111.U1.107C", "maps": [], @@ -150265,8 +141617,6 @@ }, "description": "K14D, Trafostation III", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4111.U1.107D", "maps": [], @@ -150299,8 +141649,6 @@ }, "description": "K17, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4111.U1.110", "maps": [], @@ -150333,8 +141681,6 @@ }, "description": "K18, Elektroraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4111.U1.111", "maps": [], @@ -150367,8 +141713,6 @@ }, "description": "K20, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4111.U1.113", "maps": [], @@ -150401,8 +141745,6 @@ }, "description": "K22, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4111.U1.115", "maps": [], @@ -150435,8 +141777,6 @@ }, "description": "K23, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4111.U1.116", "maps": [], @@ -150469,8 +141809,6 @@ }, "description": "K26, \u00dcbergabe Fernw\u00e4rme", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4111.U1.119", "maps": [], @@ -150503,8 +141841,6 @@ }, "description": "K27, Wasser\u00fcbergabe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4111.U1.120", "maps": [], @@ -150537,8 +141873,6 @@ }, "description": "O1 1.1, Treppenraum 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4113.01.101A", "maps": [], @@ -150571,8 +141905,6 @@ }, "description": "O1 1.2, Flur 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4113.01.101B", "maps": [], @@ -150605,8 +141937,6 @@ }, "description": "O1 1.3, historischer Steg", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4113.01.101C", "maps": [], @@ -150639,8 +141969,6 @@ }, "description": "O1 4, Treppenraum 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4113.01.104", "maps": [], @@ -150753,8 +142081,6 @@ }, "description": "O1 6, Flur 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4113.01.106", "maps": [], @@ -150787,8 +142113,6 @@ }, "description": "O1 8, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4113.01.108", "maps": [], @@ -150821,8 +142145,6 @@ }, "description": "O1 8.1, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4113.01.108A", "maps": [], @@ -150855,8 +142177,6 @@ }, "description": "O1 8.2, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4113.01.108B", "maps": [], @@ -150889,8 +142209,6 @@ }, "description": "O2 1.1, Treppenraum 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4113.02.201A", "maps": [], @@ -150923,8 +142241,6 @@ }, "description": "O2 1.2, Flur 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4113.02.201B", "maps": [], @@ -150957,8 +142273,6 @@ }, "description": "O2 7, Treppenraum 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4113.02.207", "maps": [], @@ -150991,8 +142305,6 @@ }, "description": "O2 9, Flur 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4113.02.209", "maps": [], @@ -151025,8 +142337,6 @@ }, "description": "O2 11, Flur TK", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4113.02.211", "maps": [], @@ -151059,8 +142369,6 @@ }, "description": "O2 12, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4113.02.212", "maps": [], @@ -151093,8 +142401,6 @@ }, "description": "O2 12.1, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4113.02.212A", "maps": [], @@ -151127,8 +142433,6 @@ }, "description": "O2 12.2, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4113.02.212B", "maps": [], @@ -151161,8 +142465,6 @@ }, "description": "O2 13, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4113.02.213", "maps": [], @@ -151195,8 +142497,6 @@ }, "description": "D 1, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4113.03.301", "maps": [], @@ -151229,8 +142529,6 @@ }, "description": "D 4, Zugang zum Speicher/Reinigung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4113.03.304", "maps": [], @@ -151263,8 +142561,6 @@ }, "description": "D 8, Flur 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4113.03.308", "maps": [], @@ -151297,8 +142593,6 @@ }, "description": "D 9, Flur 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4113.03.309", "maps": [], @@ -151331,8 +142625,6 @@ }, "description": "D 10, Flur 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4113.03.310", "maps": [], @@ -151365,8 +142657,6 @@ }, "description": "D 13, WC Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4113.03.313", "maps": [], @@ -151399,8 +142689,6 @@ }, "description": "D 13.1, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4113.03.313A", "maps": [], @@ -151433,8 +142721,6 @@ }, "description": "D 13.2, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4113.03.313B", "maps": [], @@ -151467,8 +142753,6 @@ }, "description": "SP 01, Speicher", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "4113.04.401", "maps": [], @@ -151501,8 +142785,6 @@ }, "description": "SP 02, Technikraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "4113.04.402", "maps": [], @@ -151535,8 +142817,6 @@ }, "description": "EG 1, Windfang Treppenhaus NW", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4113.EG.001", "maps": [], @@ -151569,8 +142849,6 @@ }, "description": "EG 1.1, Treppenhaus NW", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4113.EG.001A", "maps": [], @@ -151603,8 +142881,6 @@ }, "description": "EG 1.2, Flur Treppenraum NW", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4113.EG.001B", "maps": [], @@ -151637,8 +142913,6 @@ }, "description": "EG 0.1, Flur Treppenraum SW", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4113.EG.001C", "maps": [], @@ -151671,8 +142945,6 @@ }, "description": "EG 0, Treppenhaus SW", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4113.EG.001D", "maps": [], @@ -151705,8 +142977,6 @@ }, "description": "EG 5, Treppenhaus Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4113.EG.005", "maps": [], @@ -151739,8 +143009,6 @@ }, "description": "EG 6.1, Fernw\u00e4rme", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4113.EG.006A", "maps": [], @@ -151773,8 +143041,6 @@ }, "description": "EG 6.2, L\u00fcftungszentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4113.EG.006B", "maps": [], @@ -151807,8 +143073,6 @@ }, "description": "EG 6.3, Treppe + Podest", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4113.EG.006C", "maps": [], @@ -151841,8 +143105,6 @@ }, "description": "EG 8, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4113.EG.008", "maps": [], @@ -151875,8 +143137,6 @@ }, "description": "EG 8.1, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4113.EG.008A", "maps": [], @@ -151909,8 +143169,6 @@ }, "description": "EG 8.2, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4113.EG.008B", "maps": [], @@ -151943,8 +143201,6 @@ }, "description": "EG 10A, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4113.EG.010A", "maps": [], @@ -151977,8 +143233,6 @@ }, "description": "K 1.1, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4113.U1.001A", "maps": [], @@ -152011,8 +143265,6 @@ }, "description": "K 1.3, Maschinenraum Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4113.U1.001C", "maps": [], @@ -152045,8 +143297,6 @@ }, "description": "K 5, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4113.U1.005", "maps": [], @@ -152079,8 +143329,6 @@ }, "description": "K 7, WC-Herren/Vorraum/Barrierefrei", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4113.U1.007", "maps": [], @@ -152113,8 +143361,6 @@ }, "description": "K 7.1, WC-Herren/Barrierefrei", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4113.U1.007A", "maps": [], @@ -152147,8 +143393,6 @@ }, "description": "K 7.2, Dusche-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4113.U1.007B", "maps": [], @@ -152181,8 +143425,6 @@ }, "description": "K 8, WC-Damen/Vorraum/Barrierefrei", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4113.U1.008", "maps": [], @@ -152215,8 +143457,6 @@ }, "description": "K 8.1, WC-Damen/Barrierefrei", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4113.U1.008A", "maps": [], @@ -152249,8 +143489,6 @@ }, "description": "K 8.2, Dusche-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4113.U1.008B", "maps": [], @@ -152283,8 +143521,6 @@ }, "description": "K 9, WC-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4113.U1.009", "maps": [], @@ -152317,8 +143553,6 @@ }, "description": "K 9.1, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4113.U1.009A", "maps": [], @@ -152351,8 +143585,6 @@ }, "description": "K 10, WC-Damen Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4113.U1.010", "maps": [], @@ -152385,8 +143617,6 @@ }, "description": "K 10.1, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4113.U1.010A", "maps": [], @@ -152419,8 +143649,6 @@ }, "description": "001, Arbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4114.EG.001", "maps": [], @@ -152453,8 +143681,6 @@ }, "description": "001A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4114.EG.001A", "maps": [], @@ -152487,8 +143713,6 @@ }, "description": "002, Aufenthaltsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4114.EG.002", "maps": [], @@ -152521,8 +143745,6 @@ }, "description": "002A, Gruppenumkleide allgemein", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4114.EG.002A", "maps": [], @@ -152555,8 +143777,6 @@ }, "description": "003, Grobmechanische Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4114.EG.003", "maps": [], @@ -152589,8 +143809,6 @@ }, "description": "004, Grobmechanische Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4114.EG.004", "maps": [], @@ -152623,8 +143841,6 @@ }, "description": "005, Abstellraum/Grossger\u00e4te", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4114.EG.005", "maps": [], @@ -152657,8 +143873,6 @@ }, "description": "005A, Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4114.EG.005A", "maps": [], @@ -152691,8 +143905,6 @@ }, "description": "006, Waschhalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4114.EG.006", "maps": [], @@ -152725,8 +143937,6 @@ }, "description": "007, Metallwerkst\u00e4tten Grob", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4114.EG.007", "maps": [], @@ -152759,8 +143969,6 @@ }, "description": "008, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4114.U1.008", "maps": [], @@ -152793,8 +144001,6 @@ }, "description": "009, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4114.U1.009", "maps": [], @@ -152827,8 +144033,6 @@ }, "description": "015, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4116.01.015", "maps": [], @@ -152861,8 +144065,6 @@ }, "description": "016, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4116.01.016", "maps": [], @@ -152895,8 +144097,6 @@ }, "description": "017, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4116.01.017", "maps": [], @@ -152929,8 +144129,6 @@ }, "description": "027, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4116.02.027", "maps": [], @@ -152963,8 +144161,6 @@ }, "description": "028, Vorplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4116.02.028", "maps": [], @@ -152997,8 +144193,6 @@ }, "description": "011, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4116.EG.011", "maps": [], @@ -153031,8 +144225,6 @@ }, "description": "002, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4116.U1.002", "maps": [], @@ -153065,8 +144257,6 @@ }, "description": "003, Heizungskeller", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4116.U1.003", "maps": [], @@ -153099,8 +144289,6 @@ }, "description": "016, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4119.01.016", "maps": [], @@ -153133,8 +144321,6 @@ }, "description": "017, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4119.01.017", "maps": [], @@ -153167,8 +144353,6 @@ }, "description": "018, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4119.01.018", "maps": [], @@ -153201,8 +144385,6 @@ }, "description": "024, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4119.02.024", "maps": [], @@ -153235,8 +144417,6 @@ }, "description": "008, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4119.EG.008", "maps": [], @@ -153269,8 +144449,6 @@ }, "description": "009, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4119.EG.009", "maps": [], @@ -153303,8 +144481,6 @@ }, "description": "010, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4119.EG.010", "maps": [], @@ -153337,8 +144513,6 @@ }, "description": "001, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4119.U1.001", "maps": [], @@ -153371,8 +144545,6 @@ }, "description": "002, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4119.U1.002", "maps": [], @@ -153405,8 +144577,6 @@ }, "description": "016, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4120.01.013", "maps": [], @@ -153439,8 +144609,6 @@ }, "description": "018, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4120.01.014", "maps": [], @@ -153473,8 +144641,6 @@ }, "description": "024, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4120.02.017", "maps": [], @@ -153507,8 +144673,6 @@ }, "description": "010, HE9, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4120.EG.008", "maps": [], @@ -153541,8 +144705,6 @@ }, "description": "008, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4120.EG.009", "maps": [], @@ -153575,8 +144737,6 @@ }, "description": "001, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4120.U1.001", "maps": [], @@ -153609,8 +144769,6 @@ }, "description": "\u00d6llager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4120.U1.003", "maps": [], @@ -153643,8 +144801,6 @@ }, "description": "006, HU9, Heizungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4120.U1.004", "maps": [], @@ -153677,8 +144833,6 @@ }, "description": "01/1.09, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4124.01.109", "maps": [], @@ -153711,8 +144865,6 @@ }, "description": "01/1.10, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4124.01.110", "maps": [], @@ -153745,8 +144897,6 @@ }, "description": "01/1.11, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4124.01.111", "maps": [], @@ -153779,8 +144929,6 @@ }, "description": "01/1.12, Elektroverteilung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4124.01.112", "maps": [], @@ -153813,8 +144961,6 @@ }, "description": "01/1.18, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4124.01.118", "maps": [], @@ -153847,8 +144993,6 @@ }, "description": "01/1.20, Flur L1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4124.01.120", "maps": [], @@ -153881,8 +145025,6 @@ }, "description": "01/1.30, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4124.01.130", "maps": [], @@ -153915,8 +145057,6 @@ }, "description": "01/1.30.1, Podest 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4124.01.130A", "maps": [], @@ -153949,8 +145089,6 @@ }, "description": "01/1.30.2, Podest 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4124.01.130B", "maps": [], @@ -153983,8 +145121,6 @@ }, "description": "01/1.40, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4124.01.140", "maps": [], @@ -154017,8 +145153,6 @@ }, "description": "01/1.50, Flur B1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4124.01.150", "maps": [], @@ -154051,8 +145185,6 @@ }, "description": "01/1.60, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4124.01.160", "maps": [], @@ -154085,8 +145217,6 @@ }, "description": "01/1.70, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4124.01.170", "maps": [], @@ -154119,8 +145249,6 @@ }, "description": "01/1.80, Treppenhaus 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4124.01.180", "maps": [], @@ -154153,8 +145281,6 @@ }, "description": "01/2.04, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4124.01.204", "maps": [], @@ -154187,8 +145313,6 @@ }, "description": "01/2.09, Elektroverteilung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4124.01.209", "maps": [], @@ -154221,8 +145345,6 @@ }, "description": "01/2.14, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4124.01.214", "maps": [], @@ -154255,8 +145377,6 @@ }, "description": "01/2.20, Flur L2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4124.01.220", "maps": [], @@ -154289,8 +145409,6 @@ }, "description": "01/2.30, Treppenhaus 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4124.01.230", "maps": [], @@ -154323,8 +145441,6 @@ }, "description": "01/2.40, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4124.01.240", "maps": [], @@ -154357,8 +145473,6 @@ }, "description": "01/2.50, Treppenhaus 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4124.01.250", "maps": [], @@ -154391,8 +145505,6 @@ }, "description": "01/2.60, Flur B2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4124.01.260", "maps": [], @@ -154425,8 +145537,6 @@ }, "description": "01/3.04, Elektroverteilung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4124.01.304", "maps": [], @@ -154459,8 +145569,6 @@ }, "description": "01/3.05, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4124.01.305", "maps": [], @@ -154493,8 +145601,6 @@ }, "description": "01/3.06, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4124.01.306", "maps": [], @@ -154527,8 +145633,6 @@ }, "description": "01/3.08, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4124.01.308", "maps": [], @@ -154561,8 +145665,6 @@ }, "description": "01/3.09, Fluoressenzmikroskopie (gem. Nutzung)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4124.01.309", "maps": [], @@ -154595,8 +145697,6 @@ }, "description": "01/3.10, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4124.01.310", "maps": [], @@ -154629,8 +145729,6 @@ }, "description": "01/3.11, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4124.01.311", "maps": [], @@ -154663,8 +145761,6 @@ }, "description": "01/3.20, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4124.01.320", "maps": [], @@ -154697,8 +145793,6 @@ }, "description": "01/3.30, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4124.01.330", "maps": [], @@ -154731,8 +145825,6 @@ }, "description": "01/3.30.1, Podest 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4124.01.330A", "maps": [], @@ -154765,8 +145857,6 @@ }, "description": "01/3.30.2, Podest 5", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4124.01.330B", "maps": [], @@ -154799,8 +145889,6 @@ }, "description": "01/3.40, Flur L 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4124.01.340", "maps": [], @@ -154833,8 +145921,6 @@ }, "description": "01/3.50, Flur B 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4124.01.350", "maps": [], @@ -154867,8 +145953,6 @@ }, "description": "02/1.07, Elektroverteilung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4124.02.107", "maps": [], @@ -154901,8 +145985,6 @@ }, "description": "02/1.08, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4124.02.108", "maps": [], @@ -154935,8 +146017,6 @@ }, "description": "02/1.20, Flur B1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4124.02.120", "maps": [], @@ -154969,8 +146049,6 @@ }, "description": "02/1.30, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4124.02.130", "maps": [], @@ -155003,8 +146081,6 @@ }, "description": "02/1.30.1, Podest 6", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4124.02.130A", "maps": [], @@ -155037,8 +146113,6 @@ }, "description": "02/2.05, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4124.02.205", "maps": [], @@ -155071,8 +146145,6 @@ }, "description": "02/2.06.1, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4124.02.206A", "maps": [], @@ -155105,8 +146177,6 @@ }, "description": "02/2.06.2, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4124.02.206B", "maps": [], @@ -155139,8 +146209,6 @@ }, "description": "02/2.20, Flur B 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4124.02.220", "maps": [], @@ -155173,8 +146241,6 @@ }, "description": "02/2.30, Treppenhaus 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4124.02.230", "maps": [], @@ -155207,8 +146273,6 @@ }, "description": "02/2.40, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4124.02.240", "maps": [], @@ -155241,8 +146305,6 @@ }, "description": "02/2.50, Treppenhaus 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4124.02.250", "maps": [], @@ -155275,8 +146337,6 @@ }, "description": "02/3.08, Elektroverteilung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4124.02.308", "maps": [], @@ -155309,8 +146369,6 @@ }, "description": "02/3.09, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4124.02.309", "maps": [], @@ -155343,8 +146401,6 @@ }, "description": "02/3.10, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4124.02.310", "maps": [], @@ -155377,8 +146433,6 @@ }, "description": "02/3.12, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4124.02.312", "maps": [], @@ -155411,8 +146465,6 @@ }, "description": "02/3.13, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4124.02.313", "maps": [], @@ -155445,8 +146497,6 @@ }, "description": "02/3.30, Flur L3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4124.02.330", "maps": [], @@ -155479,8 +146529,6 @@ }, "description": "02/3.40, Flur B3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4124.02.340", "maps": [], @@ -155513,8 +146561,6 @@ }, "description": "02/3.50, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4124.02.350", "maps": [], @@ -155547,8 +146593,6 @@ }, "description": "02/3.60, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4124.02.360", "maps": [], @@ -155581,8 +146625,6 @@ }, "description": "02/3.70, Podest 7", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4124.02.370", "maps": [], @@ -155615,8 +146657,6 @@ }, "description": "E/1.08, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4124.EG.108", "maps": [], @@ -155649,8 +146689,6 @@ }, "description": "E/1.09, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4124.EG.109", "maps": [], @@ -155683,8 +146721,6 @@ }, "description": "E/1.10, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4124.EG.110", "maps": [], @@ -155717,8 +146753,6 @@ }, "description": "E/1.11, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4124.EG.111", "maps": [], @@ -155751,8 +146785,6 @@ }, "description": "E/1.12, Elektroverteilung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4124.EG.112", "maps": [], @@ -155785,8 +146817,6 @@ }, "description": "E/1.21, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4124.EG.121", "maps": [], @@ -155819,8 +146849,6 @@ }, "description": "E/1.30, Flur L 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4124.EG.130", "maps": [], @@ -155853,8 +146881,6 @@ }, "description": "E/1.40, Flur B 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4124.EG.140", "maps": [], @@ -155887,8 +146913,6 @@ }, "description": "E/1.50, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4124.EG.150", "maps": [], @@ -155921,8 +146945,6 @@ }, "description": "E/1.60, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4124.EG.160", "maps": [], @@ -155955,8 +146977,6 @@ }, "description": "E/1.60a, Podest 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4124.EG.160A", "maps": [], @@ -155989,8 +147009,6 @@ }, "description": "E/1.60b, Podest 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4124.EG.160B", "maps": [], @@ -156023,8 +147041,6 @@ }, "description": "E/1.70, Treppenhaus 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4124.EG.170", "maps": [], @@ -156057,8 +147073,6 @@ }, "description": "E/1.80, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4124.EG.180", "maps": [], @@ -156091,8 +147105,6 @@ }, "description": "E/1.90, Treppenhaus 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4124.EG.190", "maps": [], @@ -156125,8 +147137,6 @@ }, "description": "E/2.04, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4124.EG.204", "maps": [], @@ -156159,8 +147169,6 @@ }, "description": "E/2.06, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4124.EG.206", "maps": [], @@ -156193,8 +147201,6 @@ }, "description": "E/2.11, Elektroverteilung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4124.EG.211", "maps": [], @@ -156227,8 +147233,6 @@ }, "description": "E/2.19, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4124.EG.219", "maps": [], @@ -156261,8 +147265,6 @@ }, "description": "E/2.20, Flur L2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4124.EG.220", "maps": [], @@ -156295,8 +147297,6 @@ }, "description": "E/2.30, Treppenhaus 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4124.EG.230", "maps": [], @@ -156329,8 +147329,6 @@ }, "description": "E/2.40, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4124.EG.240", "maps": [], @@ -156363,8 +147361,6 @@ }, "description": "E/2.50, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4124.EG.250", "maps": [], @@ -156397,8 +147393,6 @@ }, "description": "E/2.60, Flur B 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4124.EG.260", "maps": [], @@ -156431,8 +147425,6 @@ }, "description": "E/3.06, Elektroverteilung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4124.EG.306", "maps": [], @@ -156465,8 +147457,6 @@ }, "description": "E/3.07, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4124.EG.307", "maps": [], @@ -156499,8 +147489,6 @@ }, "description": "E/3.08, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4124.EG.308", "maps": [], @@ -156533,8 +147521,6 @@ }, "description": "E/3.09, WC-Behinderte", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4124.EG.309", "maps": [], @@ -156567,8 +147553,6 @@ }, "description": "E/3.10, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4124.EG.310", "maps": [], @@ -156601,8 +147585,6 @@ }, "description": "E/3.13, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4124.EG.313", "maps": [], @@ -156635,8 +147617,6 @@ }, "description": "E/3.14, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4124.EG.314", "maps": [], @@ -156669,8 +147649,6 @@ }, "description": "E/3.30, Flur L3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4124.EG.330", "maps": [], @@ -156703,8 +147681,6 @@ }, "description": "E/3.40, Flur B3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4124.EG.340", "maps": [], @@ -156737,8 +147713,6 @@ }, "description": "E/3.50, Foyer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4124.EG.350", "maps": [], @@ -156771,8 +147745,6 @@ }, "description": "P/1.01 V, Praktikum (Vorderer Raumteil)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4124.U1.001", "maps": [], @@ -156805,8 +147777,6 @@ }, "description": "P/1.01 H, Praktikum (Hinterer Raumteil)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4124.U1.001A", "maps": [], @@ -156839,8 +147809,6 @@ }, "description": "P/1.02, Labor/Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4124.U1.002", "maps": [], @@ -156873,8 +147841,6 @@ }, "description": "P/, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4124.U1.003", "maps": [], @@ -156907,8 +147873,6 @@ }, "description": "P/1.03, Postraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4124.U1.004", "maps": [], @@ -156941,8 +147905,6 @@ }, "description": "P/1.05, Lager (gem. Nutzung)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4124.U1.005", "maps": [], @@ -156975,8 +147937,6 @@ }, "description": "P/1.06, Garage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4124.U1.006", "maps": [], @@ -157009,8 +147969,6 @@ }, "description": "P/1.04, Chemikalienraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4124.U1.007", "maps": [], @@ -157043,8 +148001,6 @@ }, "description": "P/1.07, Wertstoffe/M\u00fcll", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4124.U1.008", "maps": [], @@ -157077,8 +148033,6 @@ }, "description": "P/1.08, Wertstoffe/M\u00fcll (Container)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4124.U1.009", "maps": [], @@ -157111,8 +148065,6 @@ }, "description": "P/1.09, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4124.U1.010", "maps": [], @@ -157145,8 +148097,6 @@ }, "description": "P/1.10, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4124.U1.011", "maps": [], @@ -157179,8 +148129,6 @@ }, "description": "P/1.05, Glasiglu / Gasflaschen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4124.U1.012", "maps": [], @@ -157213,8 +148161,6 @@ }, "description": "U/1.04, Seminarraum 23 /\u00dcbungsraum (WZWS23)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4124.U1.104", "maps": [], @@ -157247,8 +148193,6 @@ }, "description": "U/1.04a, Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4124.U1.104A", "maps": [], @@ -157281,8 +148225,6 @@ }, "description": "U/1.09, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4124.U1.109", "maps": [], @@ -157315,8 +148257,6 @@ }, "description": "U/1.10, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4124.U1.110", "maps": [], @@ -157349,8 +148289,6 @@ }, "description": "U/1.11, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4124.U1.111", "maps": [], @@ -157383,8 +148321,6 @@ }, "description": "U/1.12, Elektrische Versorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4124.U1.112", "maps": [], @@ -157417,8 +148353,6 @@ }, "description": "U/1.17, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4124.U1.117", "maps": [], @@ -157451,8 +148385,6 @@ }, "description": "U/1.18, Gasflaschenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4124.U1.118", "maps": [], @@ -157485,8 +148417,6 @@ }, "description": "U/1.19, Gasflaschenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4124.U1.119", "maps": [], @@ -157519,8 +148449,6 @@ }, "description": "U/1.20, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4124.U1.120", "maps": [], @@ -157553,8 +148481,6 @@ }, "description": "U/1.30, Foyer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4124.U1.130", "maps": [], @@ -157587,8 +148513,6 @@ }, "description": "U/1.40, Garderobe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4124.U1.140", "maps": [], @@ -157621,8 +148545,6 @@ }, "description": "U/1.50, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4124.U1.150", "maps": [], @@ -157655,8 +148577,6 @@ }, "description": "U/1.60, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4124.U1.160", "maps": [], @@ -157689,8 +148609,6 @@ }, "description": "U/1.70, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4124.U1.170", "maps": [], @@ -157723,8 +148641,6 @@ }, "description": "U/2.01, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4124.U1.201", "maps": [], @@ -157757,8 +148673,6 @@ }, "description": "U/2.02, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4124.U1.202", "maps": [], @@ -157791,8 +148705,6 @@ }, "description": "U/2.08, Elektrische Versorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4124.U1.208", "maps": [], @@ -157825,8 +148737,6 @@ }, "description": "U/2.14, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4124.U1.214", "maps": [], @@ -157859,8 +148769,6 @@ }, "description": "U/2.20, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4124.U1.220", "maps": [], @@ -157893,8 +148801,6 @@ }, "description": "U/2.30, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4124.U1.230", "maps": [], @@ -157927,8 +148833,6 @@ }, "description": "U/2.30a, Maschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4124.U1.230A", "maps": [], @@ -157961,8 +148865,6 @@ }, "description": "U/2.40, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4124.U1.240", "maps": [], @@ -157995,8 +148897,6 @@ }, "description": "U/2.50, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4124.U1.250", "maps": [], @@ -158029,8 +148929,6 @@ }, "description": "U/2.60, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4124.U1.260", "maps": [], @@ -158063,8 +148961,6 @@ }, "description": "U/3.01, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4124.U1.301", "maps": [], @@ -158097,8 +148993,6 @@ }, "description": "U/3.02, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4124.U1.302", "maps": [], @@ -158131,8 +149025,6 @@ }, "description": "U/3.08, Lager / Abstellraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4124.U1.308", "maps": [], @@ -158165,8 +149057,6 @@ }, "description": "U/3.20, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4124.U1.320", "maps": [], @@ -158199,8 +149089,6 @@ }, "description": "U/3.30, Unterfahrt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4124.U1.330", "maps": [], @@ -158233,8 +149121,6 @@ }, "description": "U/3.40, Machinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4124.U1.340", "maps": [], @@ -158267,8 +149153,6 @@ }, "description": "U/3.50, Schacht Luftansaugung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4124.U1.350", "maps": [], @@ -158301,8 +149185,6 @@ }, "description": "U/3.60, Ansaugschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4124.U1.360", "maps": [], @@ -158335,8 +149217,6 @@ }, "description": "IG/2.01, Installationsgang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4124.U2.201", "maps": [], @@ -158369,8 +149249,6 @@ }, "description": "IG/2.02, Neutraanlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4124.U2.202", "maps": [], @@ -158403,8 +149281,6 @@ }, "description": "IG/2.03, Installationsgang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4124.U2.203", "maps": [], @@ -158437,8 +149313,6 @@ }, "description": "O.01, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4126.01.601", "maps": [], @@ -158471,8 +149345,6 @@ }, "description": "O.05/1, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4126.01.601A", "maps": [], @@ -158505,8 +149377,6 @@ }, "description": "O.02, Garderobe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4126.01.602", "maps": [], @@ -158539,8 +149409,6 @@ }, "description": "O.03, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4126.01.603", "maps": [], @@ -158573,8 +149441,6 @@ }, "description": "O.04, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4126.01.604", "maps": [], @@ -158607,8 +149473,6 @@ }, "description": "O.09 a/b, Seminarraum 14 (WZWS14)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4126.01.609B", "maps": [], @@ -158641,8 +149505,6 @@ }, "description": "O.23/2, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4126.01.623A", "maps": [], @@ -158675,8 +149537,6 @@ }, "description": "O.23/1, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4126.01.623B", "maps": [], @@ -158709,8 +149569,6 @@ }, "description": "O.23/3, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4126.01.623C", "maps": [], @@ -158743,8 +149601,6 @@ }, "description": "E 03/1, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4126.EG.603A", "maps": [], @@ -158777,8 +149633,6 @@ }, "description": "E 04, WC-Behinderte", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4126.EG.604", "maps": [], @@ -158811,8 +149665,6 @@ }, "description": "E 05, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4126.EG.605", "maps": [], @@ -158845,8 +149697,6 @@ }, "description": "E 06, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4126.EG.606", "maps": [], @@ -158879,8 +149729,6 @@ }, "description": "E 26/1, Eingangshalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4126.EG.626A", "maps": [], @@ -158913,8 +149761,6 @@ }, "description": "E 26/2, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4126.EG.626B", "maps": [], @@ -158947,8 +149793,6 @@ }, "description": "E 26/3, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4126.EG.626C", "maps": [], @@ -158981,8 +149825,6 @@ }, "description": "E26/4, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4126.EG.626D", "maps": [], @@ -159015,8 +149857,6 @@ }, "description": "E 27, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4126.EG.627", "maps": [], @@ -159049,8 +149889,6 @@ }, "description": "U 05, Maschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4126.U1.605", "maps": [], @@ -159083,8 +149921,6 @@ }, "description": "U 08/1, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4126.U1.608A", "maps": [], @@ -159117,8 +149953,6 @@ }, "description": "U 08/2, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4126.U1.608B", "maps": [], @@ -159151,8 +149985,6 @@ }, "description": "U 14, Haustechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4126.U1.614", "maps": [], @@ -159185,8 +150017,6 @@ }, "description": "U 15, Elektroverteilung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4126.U1.615", "maps": [], @@ -159219,8 +150049,6 @@ }, "description": "U 20/2, Gas\u00fcbergabestation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4126.U1.620B", "maps": [], @@ -159253,8 +150081,6 @@ }, "description": "U 21, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4126.U1.621", "maps": [], @@ -159287,8 +150113,6 @@ }, "description": "U 21/1, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4126.U1.621A", "maps": [], @@ -159321,8 +150145,6 @@ }, "description": "U 21/2, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4126.U1.621B", "maps": [], @@ -159355,8 +150177,6 @@ }, "description": "U 21/3, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4126.U1.621C", "maps": [], @@ -159389,8 +150209,6 @@ }, "description": "U 27, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4126.U1.622", "maps": [], @@ -159423,8 +150241,6 @@ }, "description": "U2.01, Neutralisationsanlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4126.U2.601", "maps": [], @@ -159457,8 +150273,6 @@ }, "description": "U2.02, VE-Wasser", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4126.U2.602", "maps": [], @@ -159491,8 +150305,6 @@ }, "description": "U2.03, Dampferzeuger", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4126.U2.603", "maps": [], @@ -159525,8 +150337,6 @@ }, "description": "U2.04, Verbindungsgang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4126.U2.604", "maps": [], @@ -159559,8 +150369,6 @@ }, "description": "001, Trafostation I", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4128.EG.001", "maps": [], @@ -159593,8 +150401,6 @@ }, "description": "002, Trafostation I", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4128.EG.002", "maps": [], @@ -159627,8 +150433,6 @@ }, "description": "003, Trafostation I", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4128.EG.003", "maps": [], @@ -159661,8 +150465,6 @@ }, "description": "004, Trafostation I", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4128.EG.004", "maps": [], @@ -159695,8 +150497,6 @@ }, "description": "001, Trafostation IV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4130.EG.001", "maps": [], @@ -159729,8 +150529,6 @@ }, "description": "002, Trafostation IV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4130.EG.002", "maps": [], @@ -159763,8 +150561,6 @@ }, "description": "003, Trafostation IV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4130.EG.003", "maps": [], @@ -159797,8 +150593,6 @@ }, "description": "004, Trafostation IV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4130.EG.004", "maps": [], @@ -159831,8 +150625,6 @@ }, "description": "005, Trafostation IV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4130.EG.005", "maps": [], @@ -159865,8 +150657,6 @@ }, "description": "EG04, Wehranlage mit Holzrad", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4131.EG.004", "maps": [], @@ -159899,8 +150689,6 @@ }, "description": "2.01, Speicher-Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4132.02.101", "maps": [], @@ -159933,8 +150721,6 @@ }, "description": "2.02, Speicherkammer 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4132.02.102", "maps": [], @@ -159967,8 +150753,6 @@ }, "description": "2.03, Speicherkammer 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4132.02.103", "maps": [], @@ -160001,8 +150785,6 @@ }, "description": "3.01, Speicher", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4132.03.101", "maps": [], @@ -160035,8 +150817,6 @@ }, "description": "EG 02, Heizung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4132.EG.102", "maps": [], @@ -160069,8 +150849,6 @@ }, "description": "2.01.1, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4153.01.103", "maps": [], @@ -160103,8 +150881,6 @@ }, "description": "2.01.1a, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4153.01.103A", "maps": [], @@ -160137,8 +150913,6 @@ }, "description": "1.04, Sprachlabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4153.EG.001", "maps": [], @@ -160171,8 +150945,6 @@ }, "description": "1.10, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4153.EG.006", "maps": [], @@ -160205,8 +150977,6 @@ }, "description": "1.01, Flur (Eingang)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4153.EG.007", "maps": [], @@ -160239,8 +151009,6 @@ }, "description": "1.02.1, Flur (Sprachenlabor)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4153.EG.007A", "maps": [], @@ -160273,8 +151041,6 @@ }, "description": "1.03.1, Flur (Tanzraum, Umkleiden)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4153.EG.007B", "maps": [], @@ -160307,8 +151073,6 @@ }, "description": "1.22, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4153.EG.010", "maps": [], @@ -160341,8 +151105,6 @@ }, "description": "1.17, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4153.EG.011", "maps": [], @@ -160375,8 +151137,6 @@ }, "description": "1.15, WC-Damen Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4153.EG.011A", "maps": [], @@ -160409,8 +151169,6 @@ }, "description": "1.20, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4153.EG.012", "maps": [], @@ -160443,8 +151201,6 @@ }, "description": "1.18, WC-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4153.EG.012A", "maps": [], @@ -160477,8 +151233,6 @@ }, "description": "1.21, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4153.EG.015", "maps": [], @@ -160511,8 +151265,6 @@ }, "description": "001, Trafostation XXVII", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4155.EG.001", "maps": [], @@ -160545,8 +151297,6 @@ }, "description": "002, Trafostation XXVII", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4155.EG.002", "maps": [], @@ -160579,8 +151329,6 @@ }, "description": "003, Trafostation XXVII", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4155.EG.003", "maps": [], @@ -160613,8 +151361,6 @@ }, "description": "004, Trafostation XXVII", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4155.EG.004", "maps": [], @@ -160647,8 +151393,6 @@ }, "description": "001, Trafostation X", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4156.EG.001", "maps": [], @@ -160681,8 +151425,6 @@ }, "description": "001, Trafostation X", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4156.EG.002", "maps": [], @@ -160715,8 +151457,6 @@ }, "description": "003, Trafostation X", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4156.EG.003", "maps": [], @@ -160749,8 +151489,6 @@ }, "description": "004, Trafostation X", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4156.EG.004", "maps": [], @@ -160783,8 +151521,6 @@ }, "description": "1.10, Dachlagerraum (Veitshof)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4180.01.010", "maps": [], @@ -160817,8 +151553,6 @@ }, "description": "001, Trafostation V", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4202.EG.001", "maps": [], @@ -160851,8 +151585,6 @@ }, "description": "002, Trafostation V", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4202.EG.002", "maps": [], @@ -160885,8 +151617,6 @@ }, "description": "003, Trafostation V", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4202.EG.003", "maps": [], @@ -160919,8 +151649,6 @@ }, "description": "004, Trafostation V", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4202.EG.004", "maps": [], @@ -160953,8 +151681,6 @@ }, "description": "005, Trafostation V", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4202.EG.005", "maps": [], @@ -160987,8 +151713,6 @@ }, "description": "105A, Abstellraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4210.01.105A", "maps": [], @@ -161021,8 +151745,6 @@ }, "description": "105B, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4210.01.105B", "maps": [], @@ -161055,8 +151777,6 @@ }, "description": "106, Arbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4210.01.106", "maps": [], @@ -161089,8 +151809,6 @@ }, "description": "120, Diele", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4210.01.120", "maps": [], @@ -161123,8 +151841,6 @@ }, "description": "120A, Diele", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4210.01.120A", "maps": [], @@ -161157,8 +151873,6 @@ }, "description": "120B, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4210.01.120B", "maps": [], @@ -161191,8 +151905,6 @@ }, "description": "011A, Flur S\u00fcd (11-16)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4210.EG.011A", "maps": [], @@ -161225,8 +151937,6 @@ }, "description": "011B, Treppe S\u00fcd (EG-1.OG)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4210.EG.011B", "maps": [], @@ -161259,8 +151969,6 @@ }, "description": "016A, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4210.EG.016A", "maps": [], @@ -161293,8 +152001,6 @@ }, "description": "020A, Treppe Nord", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4210.EG.020A", "maps": [], @@ -161327,8 +152033,6 @@ }, "description": "027A, Treppe mit Podest (\u00dcbergang B\u00fcro/Werkst\u00e4tten", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4210.EG.027A", "maps": [], @@ -161361,8 +152065,6 @@ }, "description": "027B, Treppe mit Lift (EG-KG)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4210.EG.027B", "maps": [], @@ -161395,8 +152097,6 @@ }, "description": "001A, Heizung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4210.U1.001A", "maps": [], @@ -161429,8 +152129,6 @@ }, "description": "004, EDV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4210.U1.004", "maps": [], @@ -161463,8 +152161,6 @@ }, "description": "004, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4210.U1.006", "maps": [], @@ -161497,8 +152193,6 @@ }, "description": "101, Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4212.01.201", "maps": [], @@ -161531,8 +152225,6 @@ }, "description": "101A, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4212.01.201A", "maps": [], @@ -161565,8 +152257,6 @@ }, "description": "101B, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4212.01.201B", "maps": [], @@ -161599,8 +152289,6 @@ }, "description": "101C, Dusche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4212.01.201C", "maps": [], @@ -161633,8 +152321,6 @@ }, "description": "111/112, Installation / Elektro-Verteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4212.01.211", "maps": [], @@ -161667,8 +152353,6 @@ }, "description": "114, Installation / Elektro-Verteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4212.01.214", "maps": [], @@ -161701,8 +152385,6 @@ }, "description": "127, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4212.01.227", "maps": [], @@ -161735,8 +152417,6 @@ }, "description": "128, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4212.01.228", "maps": [], @@ -161769,8 +152449,6 @@ }, "description": "129, Installation 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4212.01.229", "maps": [], @@ -161803,8 +152481,6 @@ }, "description": "131, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4212.01.231", "maps": [], @@ -161837,8 +152513,6 @@ }, "description": "151, Installationsschacht 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4212.01.251", "maps": [], @@ -161871,8 +152545,6 @@ }, "description": "168, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4212.01.268", "maps": [], @@ -161905,8 +152577,6 @@ }, "description": "169, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4212.01.269", "maps": [], @@ -161939,8 +152609,6 @@ }, "description": "170, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4212.01.270", "maps": [], @@ -161973,8 +152641,6 @@ }, "description": "171/172, Installation 6", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4212.01.272", "maps": [], @@ -162007,8 +152673,6 @@ }, "description": "173/174, Installation 5", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4212.01.273", "maps": [], @@ -162041,8 +152705,6 @@ }, "description": "184, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4212.01.284", "maps": [], @@ -162075,8 +152737,6 @@ }, "description": "184A, Warteflur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4212.01.284A", "maps": [], @@ -162109,8 +152769,6 @@ }, "description": "185, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4212.01.285", "maps": [], @@ -162143,8 +152801,6 @@ }, "description": "186, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4212.01.286", "maps": [], @@ -162177,8 +152833,6 @@ }, "description": "187, Halle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4212.01.287", "maps": [], @@ -162211,8 +152865,6 @@ }, "description": "187A, Warteflur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4212.01.287A", "maps": [], @@ -162245,8 +152897,6 @@ }, "description": "187B, Windfang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4212.01.287B", "maps": [], @@ -162279,8 +152929,6 @@ }, "description": "188, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4212.01.288", "maps": [], @@ -162313,8 +152961,6 @@ }, "description": "190, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4212.01.290", "maps": [], @@ -162347,8 +152993,6 @@ }, "description": "191, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4212.01.291", "maps": [], @@ -162381,8 +153025,6 @@ }, "description": "193A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4212.01.293A", "maps": [], @@ -162415,8 +153057,6 @@ }, "description": "194, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4212.01.294", "maps": [], @@ -162449,8 +153089,6 @@ }, "description": "195, Treppenraum Chemie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4212.01.295", "maps": [], @@ -162483,8 +153121,6 @@ }, "description": "196, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4212.01.296", "maps": [], @@ -162517,8 +153153,6 @@ }, "description": "201, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4212.02.201", "maps": [], @@ -162551,8 +153185,6 @@ }, "description": "201A, Installationsschacht 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4212.02.201A", "maps": [], @@ -162585,8 +153217,6 @@ }, "description": "202, Installationsschacht 4-6", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4212.02.202", "maps": [], @@ -162619,8 +153249,6 @@ }, "description": "203, L\u00fcftungskammer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4212.02.203", "maps": [], @@ -162653,8 +153281,6 @@ }, "description": "204, L\u00fcftungskammer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4212.02.204", "maps": [], @@ -162687,8 +153313,6 @@ }, "description": "205, Abluftschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4212.02.205", "maps": [], @@ -162721,8 +153345,6 @@ }, "description": "206, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4212.02.206", "maps": [], @@ -162755,8 +153377,6 @@ }, "description": "206A, Installationsschacht 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4212.02.206A", "maps": [], @@ -162789,8 +153409,6 @@ }, "description": "206B, Installationsschacht 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4212.02.206B", "maps": [], @@ -162823,8 +153441,6 @@ }, "description": "207, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4212.02.207", "maps": [], @@ -162857,8 +153473,6 @@ }, "description": "207A, Installationsschacht 6", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4212.02.207A", "maps": [], @@ -162891,8 +153505,6 @@ }, "description": "208, L\u00fcftungskammer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4212.02.208", "maps": [], @@ -162925,8 +153537,6 @@ }, "description": "209, L\u00fcftungskammer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4212.02.209", "maps": [], @@ -162959,8 +153569,6 @@ }, "description": "210, Abluftschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4212.02.210", "maps": [], @@ -162993,8 +153601,6 @@ }, "description": "211, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4212.02.211", "maps": [], @@ -163027,8 +153633,6 @@ }, "description": "211A, Installationsschacht 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4212.02.211A", "maps": [], @@ -163061,8 +153665,6 @@ }, "description": "211B, Installationsschacht 5", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4212.02.211B", "maps": [], @@ -163095,8 +153697,6 @@ }, "description": "212, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4212.02.212", "maps": [], @@ -163129,8 +153729,6 @@ }, "description": "084, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4212.EG.084", "maps": [], @@ -163163,8 +153761,6 @@ }, "description": "085, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4212.EG.085", "maps": [], @@ -163197,8 +153793,6 @@ }, "description": "086, Gang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4212.EG.086", "maps": [], @@ -163231,8 +153825,6 @@ }, "description": "087, Halle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4212.EG.087", "maps": [], @@ -163265,8 +153857,6 @@ }, "description": "088, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4212.EG.088", "maps": [], @@ -163299,8 +153889,6 @@ }, "description": "090, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4212.EG.090", "maps": [], @@ -163333,8 +153921,6 @@ }, "description": "091, Lastenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4212.EG.091", "maps": [], @@ -163367,8 +153953,6 @@ }, "description": "092, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4212.EG.092", "maps": [], @@ -163401,8 +153985,6 @@ }, "description": "001, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4212.EG.201", "maps": [], @@ -163435,8 +154017,6 @@ }, "description": "001A, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4212.EG.201A", "maps": [], @@ -163469,8 +154049,6 @@ }, "description": "001B, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4212.EG.201B", "maps": [], @@ -163503,8 +154081,6 @@ }, "description": "001C, Dusche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4212.EG.201C", "maps": [], @@ -163537,8 +154113,6 @@ }, "description": "008, Installation / Elektro-Verteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4212.EG.208", "maps": [], @@ -163571,8 +154145,6 @@ }, "description": "011, Installation / Elektro-Verteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4212.EG.210", "maps": [], @@ -163605,8 +154177,6 @@ }, "description": "024A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4212.EG.224A", "maps": [], @@ -163639,8 +154209,6 @@ }, "description": "027, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4212.EG.227", "maps": [], @@ -163673,8 +154241,6 @@ }, "description": "028, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4212.EG.228", "maps": [], @@ -163707,8 +154273,6 @@ }, "description": "029, Installation 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4212.EG.229", "maps": [], @@ -163741,8 +154305,6 @@ }, "description": "031, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4212.EG.231", "maps": [], @@ -163775,8 +154337,6 @@ }, "description": "052, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4212.EG.252", "maps": [], @@ -163809,8 +154369,6 @@ }, "description": "059, Seminarraum 36 /Bibliothek (WZWS36)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4212.EG.259", "maps": [], @@ -163843,8 +154401,6 @@ }, "description": "173, Technikraum und Kopierer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4212.EG.268", "maps": [], @@ -163877,8 +154433,6 @@ }, "description": "069, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4212.EG.269", "maps": [], @@ -163911,8 +154465,6 @@ }, "description": "070, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4212.EG.270", "maps": [], @@ -163945,8 +154497,6 @@ }, "description": "071, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4212.EG.271", "maps": [], @@ -163979,8 +154529,6 @@ }, "description": "072, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4212.EG.272", "maps": [], @@ -164013,8 +154561,6 @@ }, "description": "073, Elektroverteilungsraum 6", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4212.EG.273", "maps": [], @@ -164047,8 +154593,6 @@ }, "description": "074, Elektroverteilung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4212.EG.274", "maps": [], @@ -164081,8 +154625,6 @@ }, "description": "076, Elektroverteilungsraum 5", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4212.EG.275", "maps": [], @@ -164115,8 +154657,6 @@ }, "description": "075, Elektroverteilung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4212.EG.276", "maps": [], @@ -164149,8 +154689,6 @@ }, "description": "089, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4212.EG.289", "maps": [], @@ -164183,8 +154721,6 @@ }, "description": "093, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4212.EG.293", "maps": [], @@ -164217,8 +154753,6 @@ }, "description": "U01, Z\u00e4hlerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4212.U1.201", "maps": [], @@ -164251,8 +154785,6 @@ }, "description": "Niederspannungshauptverteilung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4212.U1.202", "maps": [], @@ -164285,8 +154817,6 @@ }, "description": "U03, Aufzugs- und F\u00f6rdermaschinen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4212.U1.203", "maps": [], @@ -164319,8 +154849,6 @@ }, "description": "U04, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4212.U1.204", "maps": [], @@ -164353,8 +154881,6 @@ }, "description": "U05, VE-Wasser", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4212.U1.205", "maps": [], @@ -164387,8 +154913,6 @@ }, "description": "U06, Druckluftanlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4212.U1.206", "maps": [], @@ -164421,8 +154945,6 @@ }, "description": "HE-R\u00fcckverdichtung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4212.U1.207", "maps": [], @@ -164455,8 +154977,6 @@ }, "description": "U08, Installationsgang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4212.U1.208", "maps": [], @@ -164489,8 +155009,6 @@ }, "description": "U09, Neutralisationsanlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4212.U1.209", "maps": [], @@ -164523,8 +155041,6 @@ }, "description": "U10, Technik-Zentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4212.U1.210", "maps": [], @@ -164557,8 +155073,6 @@ }, "description": "U11, Installationsgang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4212.U1.211", "maps": [], @@ -164591,8 +155105,6 @@ }, "description": "U12, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4212.U1.212", "maps": [], @@ -164625,8 +155137,6 @@ }, "description": "Einbringflur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4212.U1.213", "maps": [], @@ -164659,8 +155169,6 @@ }, "description": "U12B, Garderobe Treppenturm", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4212.U1.220", "maps": [], @@ -164693,8 +155201,6 @@ }, "description": "U08A, Installationsschacht 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4212.U1.221", "maps": [], @@ -164727,8 +155233,6 @@ }, "description": "U08B, Installationsschacht 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4212.U1.222", "maps": [], @@ -164761,8 +155265,6 @@ }, "description": "U08C, Installationsschacht 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4212.U1.223", "maps": [], @@ -164795,8 +155297,6 @@ }, "description": "U11A, Installationsschacht 5", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4212.U1.225", "maps": [], @@ -164829,8 +155329,6 @@ }, "description": "U11B, Installationsschacht 6", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4212.U1.226", "maps": [], @@ -164863,8 +155361,6 @@ }, "description": "O58, Flur Steg \u00dcbergang Labor- B\u00fcrogeb\u00e4ude", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4213.01.001", "maps": [], @@ -164897,8 +155393,6 @@ }, "description": "O57, Br\u00fccke Technikum - Geb\u00e4ude", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4213.01.002", "maps": [], @@ -164931,8 +155425,6 @@ }, "description": "O5a, Galerie Eingang Nord Flur O1-O5", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4213.01.003", "maps": [], @@ -164965,8 +155457,6 @@ }, "description": "O5b, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4213.01.004", "maps": [], @@ -164999,8 +155489,6 @@ }, "description": "O6a, Flur O6-O10/O37-O43", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4213.01.005", "maps": [], @@ -165033,8 +155521,6 @@ }, "description": "O55, Fluchtbalkon O37-O54", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4213.01.006", "maps": [], @@ -165067,8 +155553,6 @@ }, "description": "O56, Fluchtbalkon O7-O16", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4213.01.007", "maps": [], @@ -165101,8 +155585,6 @@ }, "description": "O11a, Flur O11-O12/O44-O46", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4213.01.008", "maps": [], @@ -165135,8 +155617,6 @@ }, "description": "O47a, Flur O47-O49", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4213.01.009", "maps": [], @@ -165169,8 +155649,6 @@ }, "description": "O13a, Flur O13-O16", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4213.01.010", "maps": [], @@ -165203,8 +155681,6 @@ }, "description": "O17a, Flur O17-O18/O50-O54", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4213.01.012", "maps": [], @@ -165237,8 +155713,6 @@ }, "description": "O50a, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4213.01.014", "maps": [], @@ -165271,8 +155745,6 @@ }, "description": "O1, Seminarraum 42 (gem. Nutzung)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4213.01.301", "maps": [], @@ -165305,8 +155777,6 @@ }, "description": "O17, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4213.01.317", "maps": [], @@ -165339,8 +155809,6 @@ }, "description": "O18, Gro\u00dfraumb\u00fcro (FACIT)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4213.01.318", "maps": [ @@ -165394,8 +155862,6 @@ }, "description": "O19, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4213.01.319", "maps": [], @@ -165428,8 +155894,6 @@ }, "description": "O20, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4213.01.320", "maps": [], @@ -165462,8 +155926,6 @@ }, "description": "O26, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4213.01.326", "maps": [], @@ -165496,8 +155958,6 @@ }, "description": "O27, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4213.01.327", "maps": [], @@ -165530,8 +155990,6 @@ }, "description": "O28, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4213.01.328", "maps": [], @@ -165564,8 +156022,6 @@ }, "description": "O30, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4213.01.330", "maps": [], @@ -165598,8 +156054,6 @@ }, "description": "O31, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4213.01.331", "maps": [], @@ -165632,8 +156086,6 @@ }, "description": "O32, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4213.01.332", "maps": [], @@ -165666,8 +156118,6 @@ }, "description": "O34, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4213.01.334", "maps": [], @@ -165700,8 +156150,6 @@ }, "description": "O35, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4213.01.335", "maps": [], @@ -165734,8 +156182,6 @@ }, "description": "O37, Ruheraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4213.01.337", "maps": [], @@ -165768,8 +156214,6 @@ }, "description": "O38, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4213.01.338", "maps": [], @@ -165802,8 +156246,6 @@ }, "description": "O50, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4213.01.350", "maps": [], @@ -165836,8 +156278,6 @@ }, "description": "D1, Zu- Abluftzentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4213.02.001", "maps": [], @@ -165870,8 +156310,6 @@ }, "description": "D2, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4213.02.002", "maps": [], @@ -165904,8 +156342,6 @@ }, "description": "D3, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4213.02.003", "maps": [], @@ -165938,8 +156374,6 @@ }, "description": "D4, Dampferzeugung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4213.02.004", "maps": [], @@ -165972,8 +156406,6 @@ }, "description": "D5, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4213.02.005", "maps": [], @@ -166006,8 +156438,6 @@ }, "description": "Zu- Abluftzentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4213.02.006", "maps": [], @@ -166040,8 +156470,6 @@ }, "description": "Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4213.02.007", "maps": [], @@ -166074,8 +156502,6 @@ }, "description": "D6, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4213.02.008", "maps": [], @@ -166108,8 +156534,6 @@ }, "description": "D4, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4213.02.009", "maps": [], @@ -166142,8 +156566,6 @@ }, "description": "Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4213.02.010", "maps": [], @@ -166176,8 +156598,6 @@ }, "description": "Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4213.02.011", "maps": [], @@ -166210,8 +156630,6 @@ }, "description": "Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4213.02.012", "maps": [], @@ -166244,8 +156662,6 @@ }, "description": "H11a, Flur Steg H11-H16", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4213.EG.001", "maps": [], @@ -166278,8 +156694,6 @@ }, "description": "H17a, Flur Steg Arbeitsb\u00fchne Verpuffungsturm", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4213.EG.002", "maps": [], @@ -166312,8 +156726,6 @@ }, "description": "E31a, Flur Eingang Nord", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4213.EG.003", "maps": [], @@ -166346,8 +156758,6 @@ }, "description": "E31c, Windfang Eingang Nord", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4213.EG.004", "maps": [], @@ -166380,8 +156790,6 @@ }, "description": "E31b, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4213.EG.005", "maps": [], @@ -166414,8 +156822,6 @@ }, "description": "E1a, Flur E1-E4/E32-E37", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4213.EG.006", "maps": [], @@ -166448,8 +156854,6 @@ }, "description": "E5a, Flur E5-E8/E38-E43", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4213.EG.007", "maps": [], @@ -166482,8 +156886,6 @@ }, "description": "E9b, Flur Eingang S\u00fcd", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4213.EG.008", "maps": [], @@ -166516,8 +156918,6 @@ }, "description": "E9a, Windfang Eingang Nord", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4213.EG.009", "maps": [], @@ -166550,8 +156950,6 @@ }, "description": "E9c, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4213.EG.010", "maps": [], @@ -166584,8 +156982,6 @@ }, "description": "Fluchtbalkon E34-E46", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4213.EG.020", "maps": [], @@ -166618,8 +157014,6 @@ }, "description": "E9, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4213.EG.309", "maps": [], @@ -166652,8 +157046,6 @@ }, "description": "E11, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4213.EG.311", "maps": [], @@ -166686,8 +157078,6 @@ }, "description": "E12, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4213.EG.312", "maps": [], @@ -166720,8 +157110,6 @@ }, "description": "E16, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4213.EG.316", "maps": [], @@ -166754,8 +157142,6 @@ }, "description": "E17, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4213.EG.317", "maps": [], @@ -166788,8 +157174,6 @@ }, "description": "E18, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4213.EG.318", "maps": [], @@ -166822,8 +157206,6 @@ }, "description": "E23, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4213.EG.323", "maps": [], @@ -166856,8 +157238,6 @@ }, "description": "E24, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4213.EG.324", "maps": [], @@ -166890,8 +157270,6 @@ }, "description": "E25, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4213.EG.325", "maps": [], @@ -166924,8 +157302,6 @@ }, "description": "E27, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4213.EG.327", "maps": [], @@ -166958,8 +157334,6 @@ }, "description": "E28, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4213.EG.328", "maps": [], @@ -166992,8 +157366,6 @@ }, "description": "E29, Gasflaschenlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4213.EG.329", "maps": [], @@ -167026,8 +157398,6 @@ }, "description": "E30, Gasflaschenlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4213.EG.330", "maps": [], @@ -167060,8 +157430,6 @@ }, "description": "E31, Wertstoffe/M\u00fcll", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4213.EG.331", "maps": [], @@ -167094,8 +157462,6 @@ }, "description": "E33, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4213.EG.333", "maps": [], @@ -167128,8 +157494,6 @@ }, "description": "E44, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4213.EG.344", "maps": [], @@ -167162,8 +157526,6 @@ }, "description": "TR-01, Technik (Trafostation XXVI)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4213.EG.501", "maps": [], @@ -167196,8 +157558,6 @@ }, "description": "TR-02, Lager TUM Shop (Trafo. XXVI)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4213.EG.502", "maps": [], @@ -167230,8 +157590,6 @@ }, "description": "TR-08, Flur (Trafost. XXVI)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4213.EG.508", "maps": [], @@ -167264,8 +157622,6 @@ }, "description": "U1a, Flur U1 - U6", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4213.U1.001", "maps": [], @@ -167298,8 +157654,6 @@ }, "description": "U7a, Flur U7 - U15", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4213.U1.002", "maps": [], @@ -167332,8 +157686,6 @@ }, "description": "U16a, Flur U16 - U18", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4213.U1.003", "maps": [], @@ -167366,8 +157718,6 @@ }, "description": "U19a, Flur U19 - U22/U64-U69", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4213.U1.004", "maps": [], @@ -167400,8 +157750,6 @@ }, "description": "U41a, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4213.U1.005", "maps": [], @@ -167434,8 +157782,6 @@ }, "description": "U70a, Flur U70 - U71", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4213.U1.006", "maps": [], @@ -167468,8 +157814,6 @@ }, "description": "U23a, Flur U23 - U33", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4213.U1.007", "maps": [], @@ -167502,8 +157846,6 @@ }, "description": "U72a, Flur U72 - U73", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4213.U1.008", "maps": [], @@ -167536,8 +157878,6 @@ }, "description": "U51a, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4213.U1.009", "maps": [], @@ -167570,8 +157910,6 @@ }, "description": "U34a, Flur U34 - U36/U74", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4213.U1.010", "maps": [], @@ -167604,8 +157942,6 @@ }, "description": "U74a, Flur / Garderobe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4213.U1.011", "maps": [], @@ -167638,8 +157974,6 @@ }, "description": "U37a, Flur U37 - U40", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4213.U1.012", "maps": [], @@ -167672,8 +158006,6 @@ }, "description": "U75a, Flur U75 - U76", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4213.U1.013", "maps": [], @@ -167706,8 +158038,6 @@ }, "description": "H1a, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4213.U1.210", "maps": [], @@ -167740,8 +158070,6 @@ }, "description": "H1b, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4213.U1.211", "maps": [], @@ -167774,8 +158102,6 @@ }, "description": "H1c, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4213.U1.212", "maps": [], @@ -167808,8 +158134,6 @@ }, "description": "U6, Druckluftanlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4213.U1.306", "maps": [], @@ -167842,8 +158166,6 @@ }, "description": "U7, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4213.U1.307", "maps": [], @@ -167876,8 +158198,6 @@ }, "description": "U18, Umkleide-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4213.U1.318", "maps": [], @@ -167910,8 +158230,6 @@ }, "description": "U19, Umkleide-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4213.U1.319", "maps": [], @@ -167944,8 +158262,6 @@ }, "description": "U20, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4213.U1.320", "maps": [], @@ -167978,8 +158294,6 @@ }, "description": "U21, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4213.U1.321", "maps": [], @@ -168012,8 +158326,6 @@ }, "description": "U22a, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4213.U1.322", "maps": [], @@ -168046,8 +158358,6 @@ }, "description": "U22b, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4213.U1.322B", "maps": [], @@ -168080,8 +158390,6 @@ }, "description": "U22c, Heizungsraum Haustechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4213.U1.322C", "maps": [], @@ -168114,8 +158422,6 @@ }, "description": "U23, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4213.U1.323", "maps": [], @@ -168148,8 +158454,6 @@ }, "description": "U34, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4213.U1.334", "maps": [], @@ -168182,8 +158486,6 @@ }, "description": "U42, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4213.U1.342", "maps": [], @@ -168216,8 +158518,6 @@ }, "description": "U43, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4213.U1.343", "maps": [], @@ -168250,8 +158550,6 @@ }, "description": "U50, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4213.U1.350", "maps": [], @@ -168284,8 +158582,6 @@ }, "description": "U51, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4213.U1.351", "maps": [], @@ -168318,8 +158614,6 @@ }, "description": "U52, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4213.U1.352", "maps": [], @@ -168352,8 +158646,6 @@ }, "description": "U57, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4213.U1.357", "maps": [], @@ -168386,8 +158678,6 @@ }, "description": "U58, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4213.U1.358", "maps": [], @@ -168420,8 +158710,6 @@ }, "description": "U59, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4213.U1.359", "maps": [], @@ -168454,8 +158742,6 @@ }, "description": "U60, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4213.U1.360", "maps": [], @@ -168488,8 +158774,6 @@ }, "description": "U64, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4213.U1.364", "maps": [], @@ -168522,8 +158806,6 @@ }, "description": "U65, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4213.U1.365", "maps": [], @@ -168556,8 +158838,6 @@ }, "description": "U74, Installation.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4213.U1.374", "maps": [], @@ -168590,8 +158870,6 @@ }, "description": "Installations Gang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4213.U2.001", "maps": [], @@ -168624,8 +158902,6 @@ }, "description": "Installations Gang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4213.U2.002", "maps": [], @@ -168658,8 +158934,6 @@ }, "description": "Installations Gang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4213.U2.003", "maps": [], @@ -168692,8 +158966,6 @@ }, "description": "Installations Gang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4213.U2.004", "maps": [], @@ -168726,8 +158998,6 @@ }, "description": "Installations Gang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4213.U2.005", "maps": [], @@ -168760,8 +159030,6 @@ }, "description": "Installations Gang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4213.U2.006", "maps": [], @@ -168794,8 +159062,6 @@ }, "description": "2, Neutralisationsanlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4213.U2.007", "maps": [], @@ -168828,8 +159094,6 @@ }, "description": "1, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4213.U2.008", "maps": [], @@ -168862,8 +159126,6 @@ }, "description": "Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4213.U2.009", "maps": [], @@ -168896,8 +159158,6 @@ }, "description": "Installations Gang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4213.U2.010", "maps": [], @@ -168930,8 +159190,6 @@ }, "description": "Druckluft", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4213.U2.011", "maps": [], @@ -168964,8 +159222,6 @@ }, "description": "Installations Gang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4213.U2.012", "maps": [], @@ -168998,8 +159254,6 @@ }, "description": "Installations Gang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4213.U2.013", "maps": [], @@ -169032,8 +159286,6 @@ }, "description": "Installations Gang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4213.U2.014", "maps": [], @@ -169066,8 +159318,6 @@ }, "description": "Installations Gang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4213.U2.015", "maps": [], @@ -169100,8 +159350,6 @@ }, "description": "Installations Gang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4213.U2.016", "maps": [], @@ -169134,8 +159382,6 @@ }, "description": "HO01, Foyer (Steinboden)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4214.EG.001", "maps": [], @@ -169168,8 +159414,6 @@ }, "description": "HO02, Windfang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4214.EG.002", "maps": [], @@ -169202,8 +159446,6 @@ }, "description": "HO03, Foyer (Teppich)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4214.EG.003", "maps": [], @@ -169236,8 +159478,6 @@ }, "description": "HO04, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4214.EG.004", "maps": [], @@ -169270,8 +159510,6 @@ }, "description": "HO05, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4214.EG.005", "maps": [], @@ -169304,8 +159542,6 @@ }, "description": "HO06, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4214.EG.006", "maps": [], @@ -169418,8 +159654,6 @@ }, "description": "HO11, Projektionsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4214.EG.011", "maps": [], @@ -169452,8 +159686,6 @@ }, "description": "HO12, Be- und Entl\u00fcftung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4214.EG.012", "maps": [], @@ -169566,8 +159798,6 @@ }, "description": "HO21, Projektionsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4214.EG.021", "maps": [], @@ -169600,8 +159830,6 @@ }, "description": "HO22, Be- und Entl\u00fcftung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4214.EG.022", "maps": [], @@ -169714,8 +159942,6 @@ }, "description": "HO31, Projektionsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4214.EG.031", "maps": [], @@ -169748,8 +159974,6 @@ }, "description": "HO32, Be- und Entl\u00fcftung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4214.EG.032", "maps": [], @@ -169782,8 +160006,6 @@ }, "description": "HO40, Seminarraum 2 (WZWS02)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4214.EG.040", "maps": [], @@ -169816,8 +160038,6 @@ }, "description": "HO41, Seminarraum 1 (WZWS01)(Teek\u00fcche)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4214.EG.041", "maps": [], @@ -169850,8 +160070,6 @@ }, "description": "HO42, Teek\u00fcche (Seminarraum 1/WZWS01)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4214.EG.042", "maps": [], @@ -169884,8 +160102,6 @@ }, "description": "HO42a, WC-Barrierefrei/Wickeltisch", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4214.EG.042A", "maps": [], @@ -169918,8 +160134,6 @@ }, "description": "HO43, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4214.EG.043", "maps": [], @@ -169952,8 +160166,6 @@ }, "description": "HO44, WC-Damen Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4214.EG.044", "maps": [], @@ -169986,8 +160198,6 @@ }, "description": "HO45, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4214.EG.045", "maps": [], @@ -170020,8 +160230,6 @@ }, "description": "Ho46, WC-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4214.EG.046", "maps": [], @@ -170054,8 +160262,6 @@ }, "description": "HO47, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4214.EG.047", "maps": [], @@ -170088,8 +160294,6 @@ }, "description": "HO48, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4214.EG.048", "maps": [], @@ -170122,8 +160326,6 @@ }, "description": "HO49, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4214.EG.049", "maps": [], @@ -170156,8 +160358,6 @@ }, "description": "HU01, Foyer (Untergeschoss)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4214.U1.001", "maps": [], @@ -170190,8 +160390,6 @@ }, "description": "HU26, Garderobe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4214.U1.002", "maps": [], @@ -170224,8 +160422,6 @@ }, "description": "HU03, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4214.U1.003", "maps": [], @@ -170258,8 +160454,6 @@ }, "description": "HU04, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4214.U1.004", "maps": [], @@ -170292,8 +160486,6 @@ }, "description": "HU05, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4214.U1.005", "maps": [], @@ -170326,8 +160518,6 @@ }, "description": "HU06, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4214.U1.006", "maps": [], @@ -170360,8 +160550,6 @@ }, "description": "HU07, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4214.U1.007", "maps": [], @@ -170394,8 +160582,6 @@ }, "description": "HU08, Verbindungsgang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4214.U1.008", "maps": [], @@ -170428,8 +160614,6 @@ }, "description": "HU10, Vorbereitungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4214.U1.010", "maps": [], @@ -170462,8 +160646,6 @@ }, "description": "HU11, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4214.U1.011", "maps": [], @@ -170496,8 +160678,6 @@ }, "description": "HU12, Technik Abluft", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4214.U1.012", "maps": [], @@ -170530,8 +160710,6 @@ }, "description": "HU 13, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4214.U1.013", "maps": [], @@ -170564,8 +160742,6 @@ }, "description": "HU 14, Aufenthaltsraum/Lager (Kellerloft)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4214.U1.014", "maps": [], @@ -170597,8 +160773,6 @@ }, "description": "HU15, Flur/Vitrinen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4214.U1.015", "maps": [], @@ -170631,8 +160805,6 @@ }, "description": "HU20, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4214.U1.020", "maps": [], @@ -170665,8 +160837,6 @@ }, "description": "HU21, Vorbereitungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4214.U1.021", "maps": [], @@ -170699,8 +160869,6 @@ }, "description": "HU22, Be- und Entl\u00fcftung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4214.U1.022", "maps": [], @@ -170733,8 +160901,6 @@ }, "description": "HU24A, IT-Schulungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4214.U1.024A", "maps": [], @@ -170767,8 +160933,6 @@ }, "description": "HU30, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4214.U1.030", "maps": [], @@ -170801,8 +160965,6 @@ }, "description": "HU31, Vorbereitungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4214.U1.031", "maps": [], @@ -170835,8 +160997,6 @@ }, "description": "HU32, Be- und Entl\u00fcftung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4214.U1.032", "maps": [], @@ -170922,8 +161082,6 @@ }, "description": "HU40, Betriebsarzt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4214.U1.040", "maps": [], @@ -170956,8 +161114,6 @@ }, "description": "HU41, Betriebsarzt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4214.U1.041", "maps": [], @@ -170990,8 +161146,6 @@ }, "description": "HU42, Betriebspsychologischer Dienst / Schwebehind", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4214.U1.042", "maps": [], @@ -171024,8 +161178,6 @@ }, "description": "HU44, Arbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4214.U1.044", "maps": [], @@ -171058,8 +161210,6 @@ }, "description": "HU45, Vorbereitungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4214.U1.045", "maps": [], @@ -171092,8 +161242,6 @@ }, "description": "HU46, Vorbereitungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4214.U1.046", "maps": [], @@ -171126,8 +161274,6 @@ }, "description": "HU48, WC-Damen Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4214.U1.048", "maps": [], @@ -171160,8 +161306,6 @@ }, "description": "HU49, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4214.U1.049", "maps": [], @@ -171194,8 +161338,6 @@ }, "description": "HU50, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4214.U1.050", "maps": [], @@ -171228,8 +161370,6 @@ }, "description": "HU51, WC-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4214.U1.051", "maps": [], @@ -171262,8 +161402,6 @@ }, "description": "HU52, Rohrkeller", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4214.U1.052", "maps": [], @@ -171296,8 +161434,6 @@ }, "description": "HU53, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4214.U1.053", "maps": [], @@ -171330,8 +161466,6 @@ }, "description": "HU54, Rohrkeller", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4214.U1.054", "maps": [], @@ -171364,8 +161498,6 @@ }, "description": "P1.02, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4215.01.002", "maps": [], @@ -171398,8 +161530,6 @@ }, "description": "P1.03, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4215.01.003", "maps": [], @@ -171432,8 +161562,6 @@ }, "description": "P1.04, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4215.01.004", "maps": [], @@ -171466,8 +161594,6 @@ }, "description": "P1.21, Aufzugs- und F\u00f6rdermaschinen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4215.01.021", "maps": [], @@ -171500,8 +161626,6 @@ }, "description": "P1.21A, Verteilerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4215.01.021A", "maps": [], @@ -171534,8 +161658,6 @@ }, "description": "P1.24, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4215.01.024", "maps": [], @@ -171568,8 +161690,6 @@ }, "description": "P1.24A, Verteilerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4215.01.024A", "maps": [], @@ -171602,8 +161722,6 @@ }, "description": "P1.25, Be- und Entl\u00fcftung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4215.01.025", "maps": [], @@ -171636,8 +161754,6 @@ }, "description": "P1.52, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4215.01.052", "maps": [], @@ -171670,8 +161786,6 @@ }, "description": "P1.53, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4215.01.053", "maps": [], @@ -171704,8 +161818,6 @@ }, "description": "P1.54, Be- und Entl\u00fcftung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4215.01.054", "maps": [], @@ -171738,8 +161850,6 @@ }, "description": "P1.55, Be- und Entl\u00fcftung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4215.01.055", "maps": [], @@ -171772,8 +161882,6 @@ }, "description": "P1.55A, Be- und Entl\u00fcftung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4215.01.055A", "maps": [], @@ -171806,8 +161914,6 @@ }, "description": "P1.55B, Be- und Entl\u00fcftung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4215.01.055B", "maps": [], @@ -171840,8 +161946,6 @@ }, "description": "PO01, Windfang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4215.EG.001", "maps": [], @@ -171874,8 +161978,6 @@ }, "description": "PO02, Halle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4215.EG.002", "maps": [], @@ -171908,8 +162010,6 @@ }, "description": "PO03, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4215.EG.003", "maps": [], @@ -171942,8 +162042,6 @@ }, "description": "PO04, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4215.EG.004", "maps": [], @@ -171976,8 +162074,6 @@ }, "description": "PO05, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4215.EG.005", "maps": [], @@ -172010,8 +162106,6 @@ }, "description": "PO06A, Lagerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4215.EG.006A", "maps": [], @@ -172044,8 +162138,6 @@ }, "description": "PO07, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4215.EG.007", "maps": [], @@ -172078,8 +162170,6 @@ }, "description": "PO08, WC-Damen Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4215.EG.008", "maps": [], @@ -172112,8 +162202,6 @@ }, "description": "PO09, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4215.EG.009", "maps": [], @@ -172146,8 +162234,6 @@ }, "description": "PO10, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4215.EG.010", "maps": [], @@ -172180,8 +162266,6 @@ }, "description": "PO11, Praktikumsraum 16 (WZWP16)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4215.EG.011", "maps": [], @@ -172214,8 +162298,6 @@ }, "description": "PO12, B\u00fcro/Assistent", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4215.EG.012", "maps": [], @@ -172248,8 +162330,6 @@ }, "description": "PO13, Messraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4215.EG.013", "maps": [], @@ -172282,8 +162362,6 @@ }, "description": "PO16, Praktikumsraum 15 (WZWP15)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4215.EG.016", "maps": [], @@ -172316,8 +162394,6 @@ }, "description": "PO17, Vorbereitungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4215.EG.017", "maps": [], @@ -172350,8 +162426,6 @@ }, "description": "PO18, Praktikumsraum 14 (WZWP14)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4215.EG.018", "maps": [], @@ -172384,8 +162458,6 @@ }, "description": "PO21, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4215.EG.021", "maps": [], @@ -172418,8 +162490,6 @@ }, "description": "PO21A, Verteilerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4215.EG.021A", "maps": [], @@ -172452,8 +162522,6 @@ }, "description": "PO22, HLS", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4215.EG.022", "maps": [], @@ -172486,8 +162554,6 @@ }, "description": "PO23, HLS", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4215.EG.023", "maps": [], @@ -172520,8 +162586,6 @@ }, "description": "PO24, Lastenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4215.EG.024", "maps": [], @@ -172554,8 +162618,6 @@ }, "description": "PO24A, ELT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4215.EG.024A", "maps": [], @@ -172588,8 +162650,6 @@ }, "description": "PO25, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4215.EG.025", "maps": [], @@ -172622,8 +162682,6 @@ }, "description": "PO26, Vorbereitung/Lager (1110055000)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4215.EG.026", "maps": [], @@ -172656,8 +162714,6 @@ }, "description": "PO28, Vorbereitungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4215.EG.028", "maps": [], @@ -172690,8 +162746,6 @@ }, "description": "PO29, Praktikumsraum 12 (WZWP12)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4215.EG.029", "maps": [ @@ -172736,8 +162790,6 @@ }, "description": "PO29A, Praktikumsraum 12a (WZWP12a)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4215.EG.029A", "maps": [ @@ -172791,8 +162843,6 @@ }, "description": "PO31, Labornebenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4215.EG.031", "maps": [], @@ -172825,8 +162875,6 @@ }, "description": "PO32, Praktikumsraum 11 (WZWP11)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4215.EG.032", "maps": [ @@ -172880,8 +162928,6 @@ }, "description": "PO33, Lagerraum mit Brandschutz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4215.EG.033", "maps": [], @@ -172914,8 +162960,6 @@ }, "description": "PO34, Vorbereitungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4215.EG.034", "maps": [], @@ -172948,8 +162992,6 @@ }, "description": "PO35, Lagerraum mit Brandschutz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4215.EG.035", "maps": [], @@ -172982,8 +163024,6 @@ }, "description": "PO36, Praktikumsraum 10 (WZWP10)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4215.EG.036", "maps": [ @@ -173037,8 +163077,6 @@ }, "description": "PO37, Gefahrstoffraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4215.EG.037", "maps": [], @@ -173071,8 +163109,6 @@ }, "description": "PO38, Gefahrgutraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4215.EG.038", "maps": [], @@ -173105,8 +163141,6 @@ }, "description": "PO38A, Gefahrgutraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4215.EG.038A", "maps": [], @@ -173139,8 +163173,6 @@ }, "description": "PO42, WC-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4215.EG.042", "maps": [], @@ -173173,8 +163205,6 @@ }, "description": "PO43, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4215.EG.043", "maps": [], @@ -173207,8 +163237,6 @@ }, "description": "PO44, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4215.EG.044", "maps": [], @@ -173241,8 +163269,6 @@ }, "description": "PO50, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4215.EG.050", "maps": [], @@ -173275,8 +163301,6 @@ }, "description": "PO51, B\u00fcro mit Archivfunktion (1102011100)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4215.EG.051", "maps": [], @@ -173309,8 +163333,6 @@ }, "description": "PO52, Flur mit Wartepl\u00e4tzen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4215.EG.052", "maps": [], @@ -173343,8 +163365,6 @@ }, "description": "P052A, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4215.EG.052A", "maps": [], @@ -173377,8 +163397,6 @@ }, "description": "P052B/C, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4215.EG.052B", "maps": [], @@ -173411,8 +163429,6 @@ }, "description": "PO53, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4215.EG.053", "maps": [], @@ -173445,8 +163461,6 @@ }, "description": "PO54, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4215.EG.054", "maps": [], @@ -173479,8 +163493,6 @@ }, "description": "PO55, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4215.EG.055", "maps": [], @@ -173513,8 +163525,6 @@ }, "description": "PO56, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4215.EG.056", "maps": [], @@ -173547,8 +163557,6 @@ }, "description": "PO57, Praktikumsraum 5 (WZWP05)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4215.EG.057", "maps": [], @@ -173581,8 +163589,6 @@ }, "description": "PO58, Vorbereitungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4215.EG.058", "maps": [], @@ -173615,8 +163621,6 @@ }, "description": "PO59, Arbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4215.EG.059", "maps": [], @@ -173649,8 +163653,6 @@ }, "description": "PO60, Arbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4215.EG.060", "maps": [], @@ -173683,8 +163685,6 @@ }, "description": "PO61, Praktikumsraum 6 (WZWP06)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4215.EG.061", "maps": [ @@ -173738,8 +163738,6 @@ }, "description": "PU01, Flur, Verbinder zum H\u00f6rsaalgeb\u00e4ude", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4215.U1.001", "maps": [], @@ -173772,8 +163770,6 @@ }, "description": "PU02, Flur, Halle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4215.U1.002", "maps": [], @@ -173806,8 +163802,6 @@ }, "description": "PU03, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4215.U1.003", "maps": [], @@ -173840,8 +163834,6 @@ }, "description": "PU04, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4215.U1.004", "maps": [], @@ -173874,8 +163866,6 @@ }, "description": "PU05, Verteilerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4215.U1.005", "maps": [], @@ -173908,8 +163898,6 @@ }, "description": "PU06, Windfang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4215.U1.006", "maps": [], @@ -173942,8 +163930,6 @@ }, "description": "PU07, Trafostation XIII", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4215.U1.007", "maps": [], @@ -173976,8 +163962,6 @@ }, "description": "PU08, Trafostation XIII", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4215.U1.008", "maps": [], @@ -174010,8 +163994,6 @@ }, "description": "PU09, Trafostation XIII", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4215.U1.009", "maps": [], @@ -174044,8 +164026,6 @@ }, "description": "PU10, Trafostation XIII", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4215.U1.010", "maps": [], @@ -174078,8 +164058,6 @@ }, "description": "PU11, Trafostation XIII", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4215.U1.011", "maps": [], @@ -174112,8 +164090,6 @@ }, "description": "PU12, Trafostation XIII", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4215.U1.012", "maps": [], @@ -174146,8 +164122,6 @@ }, "description": "PU13, Trafostation XIII", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4215.U1.013", "maps": [], @@ -174180,8 +164154,6 @@ }, "description": "PU14, Trafostation XIII", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4215.U1.014", "maps": [], @@ -174214,8 +164186,6 @@ }, "description": "Grobmechanische Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4215.U1.015", "maps": [], @@ -174248,8 +164218,6 @@ }, "description": "PU16, Tankraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4215.U1.016", "maps": [], @@ -174282,8 +164250,6 @@ }, "description": "PU17, Neutralisation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4215.U1.017", "maps": [], @@ -174316,8 +164282,6 @@ }, "description": "PU18, Wasserversorgung-, aufbereitung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4215.U1.018", "maps": [], @@ -174350,8 +164314,6 @@ }, "description": "PU19, Be- und Entl\u00fcftung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4215.U1.019", "maps": [], @@ -174384,8 +164346,6 @@ }, "description": "PU20, Technische R\u00e4ume (FKTFLAECHE)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4215.U1.020", "maps": [], @@ -174418,8 +164378,6 @@ }, "description": "PU20A, Technische R\u00e4ume (FKTFLAECHE)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4215.U1.020A", "maps": [], @@ -174452,8 +164410,6 @@ }, "description": "PU20B, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4215.U1.020B", "maps": [], @@ -174486,8 +164442,6 @@ }, "description": "PU20C, Ruheraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4215.U1.020C", "maps": [], @@ -174520,8 +164474,6 @@ }, "description": "PU21, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4215.U1.021", "maps": [], @@ -174554,8 +164506,6 @@ }, "description": "PU21A, E-Verteilung V5", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4215.U1.021A", "maps": [], @@ -174588,8 +164538,6 @@ }, "description": "PU22, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4215.U1.022", "maps": [], @@ -174622,8 +164570,6 @@ }, "description": "PU23, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4215.U1.023", "maps": [], @@ -174656,8 +164602,6 @@ }, "description": "PU24, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4215.U1.024", "maps": [], @@ -174690,8 +164634,6 @@ }, "description": "PU24A, E-Verteilung V6", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4215.U1.024A", "maps": [], @@ -174724,8 +164666,6 @@ }, "description": "PU25, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4215.U1.025", "maps": [], @@ -174758,8 +164698,6 @@ }, "description": "PU27, Lager/Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4215.U1.027", "maps": [], @@ -174792,8 +164730,6 @@ }, "description": "PU28, L\u00fcftung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4215.U1.028", "maps": [], @@ -174826,8 +164762,6 @@ }, "description": "PU29, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4215.U1.029", "maps": [], @@ -174860,8 +164794,6 @@ }, "description": "PU30, WC-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4215.U1.030", "maps": [], @@ -174894,8 +164826,6 @@ }, "description": "PU31, WC-Behinderte", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4215.U1.031", "maps": [], @@ -174928,8 +164858,6 @@ }, "description": "PU32, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4215.U1.032", "maps": [], @@ -174962,8 +164890,6 @@ }, "description": "PU33, WC-Damen Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4215.U1.033", "maps": [], @@ -174996,8 +164922,6 @@ }, "description": "PU34, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4215.U1.034", "maps": [], @@ -175030,8 +164954,6 @@ }, "description": "PU35, Personalumkleidekabine-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4215.U1.035", "maps": [], @@ -175064,8 +164986,6 @@ }, "description": "PU36, WC/Dusche-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4215.U1.036", "maps": [], @@ -175098,8 +165018,6 @@ }, "description": "PU37, WC/Dusche-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4215.U1.037", "maps": [], @@ -175132,8 +165050,6 @@ }, "description": "PU38, Personalumkleidekabine-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4215.U1.038", "maps": [], @@ -175166,8 +165082,6 @@ }, "description": "PU41, Medientechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4215.U1.041", "maps": [], @@ -175200,8 +165114,6 @@ }, "description": "PU51, Windfang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4215.U1.051", "maps": [], @@ -175234,8 +165146,6 @@ }, "description": "PU52, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4215.U1.052", "maps": [], @@ -175268,8 +165178,6 @@ }, "description": "PU53, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4215.U1.053", "maps": [], @@ -175302,8 +165210,6 @@ }, "description": "PU54, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4215.U1.054", "maps": [], @@ -175336,8 +165242,6 @@ }, "description": "PU55, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4215.U1.055", "maps": [], @@ -175370,8 +165274,6 @@ }, "description": "PU56, Windfang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4215.U1.056", "maps": [], @@ -175457,8 +165359,6 @@ }, "description": "PU59, Vorbereitungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4215.U1.059", "maps": [], @@ -175491,8 +165391,6 @@ }, "description": "PU61, Vorbereitungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4215.U1.061", "maps": [], @@ -175525,8 +165423,6 @@ }, "description": "PU62, Arbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4215.U1.062", "maps": [], @@ -175559,8 +165455,6 @@ }, "description": "PU64, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4215.U1.064", "maps": [], @@ -175593,8 +165487,6 @@ }, "description": "PU26C, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4215.U1.065", "maps": [], @@ -175627,8 +165519,6 @@ }, "description": "PU26D, Lager Reinigung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4215.U1.066", "maps": [], @@ -175661,8 +165551,6 @@ }, "description": "PU26F, Lager ITW", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4215.U1.067", "maps": [], @@ -175695,8 +165583,6 @@ }, "description": "110, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4216.01.110", "maps": [], @@ -175729,8 +165615,6 @@ }, "description": "111, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4216.01.111", "maps": [], @@ -175763,8 +165647,6 @@ }, "description": "112, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4216.01.112", "maps": [], @@ -175797,8 +165679,6 @@ }, "description": "116, ELT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4216.01.116", "maps": [], @@ -175959,8 +165839,6 @@ }, "description": "209, Be- und Entl\u00fcftung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4216.02.209", "maps": [], @@ -175993,8 +165871,6 @@ }, "description": "210, Be- und Entl\u00fcftung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4216.02.210", "maps": [], @@ -176027,8 +165903,6 @@ }, "description": "211, Be- und Entl\u00fcftung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4216.02.211", "maps": [], @@ -176061,8 +165935,6 @@ }, "description": "010, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4216.EG.010", "maps": [], @@ -176095,8 +165967,6 @@ }, "description": "011, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4216.EG.011", "maps": [], @@ -176129,8 +165999,6 @@ }, "description": "012, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4216.EG.012", "maps": [], @@ -176163,8 +166031,6 @@ }, "description": "044, ELT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4216.EG.044", "maps": [], @@ -176197,8 +166063,6 @@ }, "description": "K 011, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4216.U1.011", "maps": [], @@ -176231,8 +166095,6 @@ }, "description": "K 018, Trafostation XIV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4216.U1.018", "maps": [], @@ -176265,8 +166127,6 @@ }, "description": "K 019, Trafostation XIV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4216.U1.019", "maps": [], @@ -176299,8 +166159,6 @@ }, "description": "K 020, Trafostation XIV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4216.U1.020", "maps": [], @@ -176333,8 +166191,6 @@ }, "description": "K 021, Trafostation XIV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4216.U1.021", "maps": [], @@ -176367,8 +166223,6 @@ }, "description": "K 022, Trafostation XIV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4216.U1.022", "maps": [], @@ -176401,8 +166255,6 @@ }, "description": "K 023, Trafostation XIV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4216.U1.023", "maps": [], @@ -176435,8 +166287,6 @@ }, "description": "K 024, Heizung- und Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4216.U1.024", "maps": [], @@ -176469,8 +166319,6 @@ }, "description": "K 026, Aufzugsmaschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4216.U1.026", "maps": [], @@ -176503,8 +166351,6 @@ }, "description": "K 038, Aufzugsmaschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4216.U1.038", "maps": [], @@ -176537,8 +166383,6 @@ }, "description": "114, Seminarraum 46 /Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4217.01.114", "maps": [], @@ -176571,8 +166415,6 @@ }, "description": "141, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4217.01.141", "maps": [], @@ -176605,8 +166447,6 @@ }, "description": "142, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4217.01.142", "maps": [], @@ -176639,8 +166479,6 @@ }, "description": "145, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4217.01.145", "maps": [], @@ -176673,8 +166511,6 @@ }, "description": "146, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4217.01.146", "maps": [], @@ -176707,8 +166543,6 @@ }, "description": "143, Pflanzenzucht (gem. Nutzung TT Plant Genetics", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4217.01.148", "maps": [], @@ -176741,8 +166575,6 @@ }, "description": "144, Lager/K\u00fchltruhen (gem. Nutzung 1110010300)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4217.01.149", "maps": [], @@ -176775,8 +166607,6 @@ }, "description": "106A, Installationsschacht A1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4217.01.151", "maps": [], @@ -176809,8 +166639,6 @@ }, "description": "107A, Installationsschacht A2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4217.01.152", "maps": [], @@ -176843,8 +166671,6 @@ }, "description": "153, Aufzug West", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4217.01.153", "maps": [], @@ -176877,8 +166703,6 @@ }, "description": "153A, Aufzug Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4217.01.153A", "maps": [], @@ -176911,8 +166735,6 @@ }, "description": "123 A, Installationsschacht B1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4217.01.154", "maps": [], @@ -176945,8 +166767,6 @@ }, "description": "124 A, Installationsschacht B2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4217.01.155", "maps": [], @@ -176979,8 +166799,6 @@ }, "description": "141, WC-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4217.01.156", "maps": [], @@ -177013,8 +166831,6 @@ }, "description": "142, WC-Damen Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4217.01.157", "maps": [], @@ -177047,8 +166863,6 @@ }, "description": "134A, Installationsschacht C2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4217.01.158", "maps": [], @@ -177081,8 +166895,6 @@ }, "description": "133A, Installationsschacht C1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4217.01.159", "maps": [], @@ -177115,8 +166927,6 @@ }, "description": "160, Flur West 2 (R\u00e4ume 101-113)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4217.01.160", "maps": [], @@ -177149,8 +166959,6 @@ }, "description": "161, Flur West (R\u00e4ume 141-140/A28)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4217.01.161", "maps": [], @@ -177183,8 +166991,6 @@ }, "description": "162, Flur Mitte", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4217.01.162", "maps": [], @@ -177217,8 +167023,6 @@ }, "description": "163, Flur Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4217.01.163", "maps": [], @@ -177251,8 +167055,6 @@ }, "description": "164, Fluchtbalkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4217.01.164", "maps": [], @@ -177285,8 +167087,6 @@ }, "description": "229, WC-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4217.02.229", "maps": [], @@ -177319,8 +167119,6 @@ }, "description": "230, WC-Damen Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4217.02.230", "maps": [], @@ -177353,8 +167151,6 @@ }, "description": "231, Treppenraum Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4217.02.231", "maps": [], @@ -177387,8 +167183,6 @@ }, "description": "232, Treppenraum West", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4217.02.232", "maps": [], @@ -177421,8 +167215,6 @@ }, "description": "229, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4217.02.234", "maps": [], @@ -177455,8 +167247,6 @@ }, "description": "230, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4217.02.235", "maps": [], @@ -177489,8 +167279,6 @@ }, "description": "236, Aufzug West", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4217.02.236", "maps": [], @@ -177523,8 +167311,6 @@ }, "description": "237, Aufzug Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4217.02.237", "maps": [], @@ -177557,8 +167343,6 @@ }, "description": "222A, Installationsschacht C1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4217.02.238", "maps": [], @@ -177591,8 +167375,6 @@ }, "description": "223A, Installationsschacht C2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4217.02.239", "maps": [], @@ -177625,8 +167407,6 @@ }, "description": "241, Technik Ost- Dachzentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4217.02.241", "maps": [], @@ -177659,8 +167439,6 @@ }, "description": "211A, Installationsschacht B2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4217.02.242", "maps": [], @@ -177693,8 +167471,6 @@ }, "description": "212A, Installationsschacht B1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4217.02.243", "maps": [], @@ -177727,8 +167503,6 @@ }, "description": "244, Flur Mitte (R\u00e4ume 202-206)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4217.02.244", "maps": [], @@ -177761,8 +167535,6 @@ }, "description": "245, Flur S\u00fcd (R\u00e4ume 207-217)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4217.02.245", "maps": [], @@ -177795,8 +167567,6 @@ }, "description": "246, Flur West (R\u00e4ume 201/218-228)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4217.02.246", "maps": [], @@ -177829,8 +167599,6 @@ }, "description": "247, Fluchtbalkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4217.02.247", "maps": [], @@ -177863,8 +167631,6 @@ }, "description": "301, Treppenraum West", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4217.03.301", "maps": [], @@ -177897,8 +167663,6 @@ }, "description": "302, Aufzug West", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4217.03.302", "maps": [], @@ -177931,8 +167695,6 @@ }, "description": "303, Technik Nord-Dachzentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4217.03.303", "maps": [], @@ -177965,8 +167727,6 @@ }, "description": "304, Treppenraum Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4217.03.304", "maps": [], @@ -177999,8 +167759,6 @@ }, "description": "305, Aufzugs- und F\u00f6rdermaschinen Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4217.03.305", "maps": [], @@ -178033,8 +167791,6 @@ }, "description": "306, Technik S\u00fcd-Dachzentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4217.03.306", "maps": [], @@ -178067,8 +167823,6 @@ }, "description": "307, Fluchtbalkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4217.03.307", "maps": [], @@ -178101,8 +167855,6 @@ }, "description": "006A, Installationsschacht A1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4217.EG.006A", "maps": [], @@ -178135,8 +167887,6 @@ }, "description": "007A, Installationsschacht A2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4217.EG.007A", "maps": [], @@ -178169,8 +167919,6 @@ }, "description": "016A, Betriebstechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4217.EG.016A", "maps": [], @@ -178203,8 +167951,6 @@ }, "description": "019A, Installationsschacht B2 / Pflanzenklimakamme", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4217.EG.019A", "maps": [], @@ -178237,8 +167983,6 @@ }, "description": "025A, Installationsschacht B1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4217.EG.025A", "maps": [], @@ -178271,8 +168015,6 @@ }, "description": "036D, Installationsschacht C1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4217.EG.036D", "maps": [], @@ -178305,8 +168047,6 @@ }, "description": "036E, Installationsschacht C2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4217.EG.036E", "maps": [], @@ -178419,8 +168159,6 @@ }, "description": "043, Lager Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4217.EG.043", "maps": [], @@ -178453,8 +168191,6 @@ }, "description": "045A, WC-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4217.EG.045", "maps": [], @@ -178487,8 +168223,6 @@ }, "description": "045, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4217.EG.045A", "maps": [], @@ -178521,8 +168255,6 @@ }, "description": "046A, WC-Damen Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4217.EG.046", "maps": [], @@ -178555,8 +168287,6 @@ }, "description": "046, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4217.EG.046A", "maps": [], @@ -178589,8 +168319,6 @@ }, "description": "051A, WC-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4217.EG.051", "maps": [], @@ -178623,8 +168351,6 @@ }, "description": "051, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4217.EG.051A", "maps": [], @@ -178657,8 +168383,6 @@ }, "description": "052A, WC-Damen Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4217.EG.052", "maps": [], @@ -178691,8 +168415,6 @@ }, "description": "052, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4217.EG.052A", "maps": [], @@ -178725,8 +168447,6 @@ }, "description": "057, Foyer Pflanze 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4217.EG.057", "maps": [], @@ -178759,8 +168479,6 @@ }, "description": "061, Sozialraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4217.EG.057B", "maps": [], @@ -178793,8 +168511,6 @@ }, "description": "058, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4217.EG.058", "maps": [], @@ -178827,8 +168543,6 @@ }, "description": "059, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4217.EG.059", "maps": [], @@ -178861,8 +168575,6 @@ }, "description": "060, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4217.EG.060", "maps": [], @@ -178895,8 +168607,6 @@ }, "description": "059A, Flur Mitte (Raum 016)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4217.EG.061", "maps": [], @@ -178929,8 +168639,6 @@ }, "description": "062, Flur S\u00fcd/West (R\u00e4ume 024-031)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4217.EG.062", "maps": [], @@ -178963,8 +168671,6 @@ }, "description": "063, Flur S\u00fcd/Ost (R\u00e4ume 047-051)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4217.EG.063", "maps": [], @@ -178997,8 +168703,6 @@ }, "description": "064, Flur Ost (R\u00e4ume 042-050)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4217.EG.064", "maps": [], @@ -179031,8 +168735,6 @@ }, "description": "065, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4217.EG.065", "maps": [], @@ -179065,8 +168767,6 @@ }, "description": "066, Flur Nord (R\u00e4ume 032-039)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4217.EG.066", "maps": [], @@ -179099,8 +168799,6 @@ }, "description": "041A, Flur H12", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4217.EG.067", "maps": [], @@ -179133,8 +168831,6 @@ }, "description": "041B, Flur H12", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4217.EG.068", "maps": [], @@ -179167,8 +168863,6 @@ }, "description": "069, Lager/Wertstoffe/M\u00fcll", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4217.EG.069", "maps": [], @@ -179201,8 +168895,6 @@ }, "description": "070, Fluchtbalkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4217.EG.070", "maps": [], @@ -179235,8 +168927,6 @@ }, "description": "K01, Rohrkeller", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4217.U1.001", "maps": [], @@ -179269,8 +168959,6 @@ }, "description": "K07, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4217.U1.007", "maps": [], @@ -179303,8 +168991,6 @@ }, "description": "K08, Rohrkeller", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4217.U1.008", "maps": [], @@ -179337,8 +169023,6 @@ }, "description": "K09, Flur (K03 - K10A)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4217.U1.009", "maps": [], @@ -179371,8 +169055,6 @@ }, "description": "K09A, Fluchtweg H12", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4217.U1.009A", "maps": [], @@ -179405,8 +169087,6 @@ }, "description": "K10, Be- und Entl\u00fcftung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4217.U1.010", "maps": [], @@ -179439,8 +169119,6 @@ }, "description": "K10A, Batterieanlage f\u00fcr Sicherheitsbeleuchtung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4217.U1.010A", "maps": [], @@ -179473,8 +169151,6 @@ }, "description": "K11, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4217.U1.011", "maps": [], @@ -179507,8 +169183,6 @@ }, "description": "K12, Wasserversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4217.U1.012", "maps": [], @@ -179541,8 +169215,6 @@ }, "description": "K13, Niederspannungshauptverteilung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4217.U1.013", "maps": [], @@ -179575,8 +169247,6 @@ }, "description": "K15, Abklinganlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4217.U1.015", "maps": [], @@ -179609,8 +169279,6 @@ }, "description": "K16, Neutralisierung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4217.U1.016", "maps": [], @@ -179643,8 +169311,6 @@ }, "description": "K20, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4217.U1.018", "maps": [], @@ -179677,8 +169343,6 @@ }, "description": "K19, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4217.U1.019", "maps": [], @@ -179711,8 +169375,6 @@ }, "description": "K20A, Einbringschacht/Montageschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4217.U1.020A", "maps": [], @@ -179745,8 +169407,6 @@ }, "description": "K07, Gasversorgung (Technische Zentrale)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4217.U1.021", "maps": [], @@ -179779,8 +169439,6 @@ }, "description": "K09B, Fluchtweg im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4217.U1.022", "maps": [], @@ -179813,8 +169471,6 @@ }, "description": "K24, Aufzug West", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4217.U1.024", "maps": [], @@ -179847,8 +169503,6 @@ }, "description": "K24A, Aufzug Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4217.U1.024A", "maps": [], @@ -179881,8 +169535,6 @@ }, "description": "K26, Flur (K01/K08)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4217.U1.026", "maps": [], @@ -179915,8 +169567,6 @@ }, "description": "K27, Flur Mitte (K07)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4217.U1.027", "maps": [], @@ -179949,8 +169599,6 @@ }, "description": "K28, Flur S\u00fcd (K15-K20)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4217.U1.028", "maps": [], @@ -179983,8 +169631,6 @@ }, "description": "130, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4218.01.130", "maps": [], @@ -180017,8 +169663,6 @@ }, "description": "131, Elektrische Versorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4218.01.131", "maps": [], @@ -180051,8 +169695,6 @@ }, "description": "132, Installationsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4218.01.132", "maps": [], @@ -180085,8 +169727,6 @@ }, "description": "140, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4218.01.140", "maps": [], @@ -180119,8 +169759,6 @@ }, "description": "141, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4218.01.141", "maps": [], @@ -180153,8 +169791,6 @@ }, "description": "142, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4218.01.142", "maps": [], @@ -180187,8 +169823,6 @@ }, "description": "143, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4218.01.143", "maps": [], @@ -180221,8 +169855,6 @@ }, "description": "150, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4218.01.150", "maps": [], @@ -180255,8 +169887,6 @@ }, "description": "151, Installationsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4218.01.151", "maps": [], @@ -180289,8 +169919,6 @@ }, "description": "152, Diaschrank", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4218.01.152", "maps": [], @@ -180323,8 +169951,6 @@ }, "description": "230, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4218.02.230", "maps": [], @@ -180357,8 +169983,6 @@ }, "description": "214E, Elektrische Versorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4218.02.231", "maps": [], @@ -180391,8 +170015,6 @@ }, "description": "232, Installationsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4218.02.232", "maps": [], @@ -180425,8 +170047,6 @@ }, "description": "240, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4218.02.240", "maps": [], @@ -180459,8 +170079,6 @@ }, "description": "241, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4218.02.241", "maps": [], @@ -180493,8 +170111,6 @@ }, "description": "242, Dusche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4218.02.242", "maps": [], @@ -180527,8 +170143,6 @@ }, "description": "243, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4218.02.243", "maps": [], @@ -180561,8 +170175,6 @@ }, "description": "250, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4218.02.250", "maps": [], @@ -180595,8 +170207,6 @@ }, "description": "251, Installationsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4218.02.251", "maps": [], @@ -180629,8 +170239,6 @@ }, "description": "252, Installationsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4218.02.252", "maps": [], @@ -180663,8 +170271,6 @@ }, "description": "028, Elektrische Versorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4218.EG.028", "maps": [], @@ -180697,8 +170303,6 @@ }, "description": "029, Installationsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4218.EG.029", "maps": [], @@ -180731,8 +170335,6 @@ }, "description": "030, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4218.EG.030", "maps": [], @@ -180765,8 +170367,6 @@ }, "description": "040, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4218.EG.040", "maps": [], @@ -180799,8 +170399,6 @@ }, "description": "041, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4218.EG.041", "maps": [], @@ -180833,8 +170431,6 @@ }, "description": "042, WC-Behinderte", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4218.EG.042", "maps": [], @@ -180867,8 +170463,6 @@ }, "description": "043, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4218.EG.043", "maps": [], @@ -180901,8 +170495,6 @@ }, "description": "050, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4218.EG.050", "maps": [], @@ -180935,8 +170527,6 @@ }, "description": "051, Installationsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4218.EG.051", "maps": [], @@ -180969,8 +170559,6 @@ }, "description": "052, Installationsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4218.EG.052", "maps": [], @@ -181003,8 +170591,6 @@ }, "description": "K01, Technik Elektro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4218.U1.001", "maps": [], @@ -181037,8 +170623,6 @@ }, "description": "K02, Technik Neutralisation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4218.U1.002", "maps": [], @@ -181071,8 +170655,6 @@ }, "description": "K10, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4218.U1.010", "maps": [], @@ -181105,8 +170687,6 @@ }, "description": "K30, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4218.U1.030", "maps": [], @@ -181139,8 +170719,6 @@ }, "description": "K31, Elektrische Versorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4218.U1.031", "maps": [], @@ -181173,8 +170751,6 @@ }, "description": "K33, Wertstoffe/M\u00fcll", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4218.U1.033", "maps": [], @@ -181207,8 +170783,6 @@ }, "description": "O 13, Treppenraum West", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4219.01.013", "maps": [], @@ -181241,8 +170815,6 @@ }, "description": "O 14, Flur (O01-O11)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4219.01.014", "maps": [], @@ -181275,8 +170847,6 @@ }, "description": "O 18, Treppenraum Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4219.01.018", "maps": [], @@ -181309,8 +170879,6 @@ }, "description": "O 19, Flur Ost (O15-O20)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4219.01.019", "maps": [], @@ -181343,8 +170911,6 @@ }, "description": "O 24, Installationraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4219.01.024", "maps": [], @@ -181377,8 +170943,6 @@ }, "description": "O 25, Flur (O 21- O 29)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4219.01.030", "maps": [], @@ -181411,8 +170975,6 @@ }, "description": "O 31, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4219.01.031", "maps": [], @@ -181445,8 +171007,6 @@ }, "description": "O 32, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4219.01.032", "maps": [], @@ -181479,8 +171039,6 @@ }, "description": "O 34, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4219.01.034", "maps": [], @@ -181513,8 +171071,6 @@ }, "description": "O 35, Verbindungs-Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4219.01.035", "maps": [], @@ -181547,8 +171103,6 @@ }, "description": "DG 1, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4219.02.001", "maps": [], @@ -181581,8 +171135,6 @@ }, "description": "E 8, Flur (E7-E14)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4219.EG.008", "maps": [], @@ -181615,8 +171167,6 @@ }, "description": "E 9, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4219.EG.009", "maps": [], @@ -181649,8 +171199,6 @@ }, "description": "E 14, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4219.EG.014", "maps": [], @@ -181683,8 +171231,6 @@ }, "description": "E 19, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4219.EG.019", "maps": [], @@ -181717,8 +171263,6 @@ }, "description": "E 19a, Personenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4219.EG.019A", "maps": [], @@ -181751,8 +171295,6 @@ }, "description": "E 20, Flur (E15-E21/E37)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4219.EG.020", "maps": [], @@ -181785,8 +171327,6 @@ }, "description": "E 27, Installationsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4219.EG.027", "maps": [], @@ -181819,8 +171359,6 @@ }, "description": "E 28, Installationsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4219.EG.028", "maps": [], @@ -181853,8 +171391,6 @@ }, "description": "E 32, Dusche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4219.EG.032", "maps": [], @@ -181887,8 +171423,6 @@ }, "description": "E 34, Flur (E24-E33)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4219.EG.034", "maps": [], @@ -181921,8 +171455,6 @@ }, "description": "E 35, WC-Behinderte", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4219.EG.035", "maps": [], @@ -181955,8 +171487,6 @@ }, "description": "E 36, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4219.EG.036", "maps": [], @@ -181989,8 +171519,6 @@ }, "description": "E 37, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4219.EG.037", "maps": [], @@ -182023,8 +171551,6 @@ }, "description": "E 38, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4219.EG.038", "maps": [], @@ -182057,8 +171583,6 @@ }, "description": "E 39, Eingangshalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4219.EG.039", "maps": [], @@ -182091,8 +171615,6 @@ }, "description": "E 49, Treppenraum West", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4219.EG.049", "maps": [], @@ -182125,8 +171647,6 @@ }, "description": "E 50, Flur West (E41-E48)/ K\u00fcchenzeile", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4219.EG.050", "maps": [], @@ -182159,8 +171679,6 @@ }, "description": "E 53, Windfang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4219.EG.053", "maps": [], @@ -182193,8 +171711,6 @@ }, "description": "U 03, Gro\u00dfgruppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4219.U1.003", "maps": [], @@ -182227,8 +171743,6 @@ }, "description": "U 04, Treppenraum Nord", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4219.U1.004", "maps": [], @@ -182261,8 +171775,6 @@ }, "description": "U 05, Flur (U1 links)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4219.U1.005", "maps": [], @@ -182295,8 +171807,6 @@ }, "description": "U 06, Flur (U1 rechts)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4219.U1.006", "maps": [], @@ -182329,8 +171839,6 @@ }, "description": "U 09, Flur (U10)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4219.U1.009", "maps": [], @@ -182363,8 +171871,6 @@ }, "description": "U 12, Treppenraum Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4219.U1.012", "maps": [], @@ -182397,8 +171903,6 @@ }, "description": "U 13, Flur (U11-U22)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4219.U1.013", "maps": [], @@ -182431,8 +171935,6 @@ }, "description": "U 19, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4219.U1.019", "maps": [], @@ -182465,8 +171967,6 @@ }, "description": "U 19A, VEW", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4219.U1.019A", "maps": [], @@ -182499,8 +171999,6 @@ }, "description": "U 19B, Neutralisation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4219.U1.019B", "maps": [], @@ -182533,8 +172031,6 @@ }, "description": "U 20, Hauptverteilung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4219.U1.020", "maps": [], @@ -182567,8 +172063,6 @@ }, "description": "U 21, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4219.U1.021", "maps": [], @@ -182601,8 +172095,6 @@ }, "description": "U 22, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4219.U1.022", "maps": [], @@ -182635,8 +172127,6 @@ }, "description": "U 23, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4219.U1.023", "maps": [], @@ -182669,8 +172159,6 @@ }, "description": "U 24, Halle mit Pflanzengruben", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4219.U1.024", "maps": [], @@ -182703,8 +172191,6 @@ }, "description": "U 35, Hausverwaltung-Reinigungsmittel", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4219.U1.035", "maps": [], @@ -182737,8 +172223,6 @@ }, "description": "U 42, Dusche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4219.U1.042", "maps": [], @@ -182771,8 +172255,6 @@ }, "description": "U 46, Treppenhaus West", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4219.U1.046", "maps": [], @@ -182805,8 +172287,6 @@ }, "description": "U 47, Flur West (U25-U44)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4219.U1.047", "maps": [], @@ -182839,8 +172319,6 @@ }, "description": "U 48, Rohrkeller", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4219.U1.048", "maps": [], @@ -182873,8 +172351,6 @@ }, "description": "K 01, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4219.U2.001", "maps": [], @@ -182907,8 +172383,6 @@ }, "description": "K 01A, Wertstoffe/M\u00fcll", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4219.U2.001A", "maps": [], @@ -182941,8 +172415,6 @@ }, "description": "OG R 15, Gruppenarbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4220.01.015", "maps": [], @@ -182975,8 +172447,6 @@ }, "description": "OG R 18, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4220.01.018", "maps": [], @@ -183009,8 +172479,6 @@ }, "description": "OG R 24, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4220.01.024", "maps": [], @@ -183043,8 +172511,6 @@ }, "description": "OG R 25, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4220.01.025", "maps": [], @@ -183077,8 +172543,6 @@ }, "description": "OG L 15, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4220.01.115", "maps": [], @@ -183111,8 +172575,6 @@ }, "description": "OG L 16, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4220.01.116", "maps": [], @@ -183145,8 +172607,6 @@ }, "description": "OG L 17, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4220.01.117", "maps": [], @@ -183179,8 +172639,6 @@ }, "description": "OG L 19, Seminarraum (gem. Nutzung 1110100100)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4220.01.119", "maps": [], @@ -183213,8 +172671,6 @@ }, "description": "OG L 19B, Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4220.01.119B", "maps": [], @@ -183247,8 +172703,6 @@ }, "description": "OG L 22, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4220.01.122", "maps": [], @@ -183281,8 +172735,6 @@ }, "description": "OG L 28, WC-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4220.01.128", "maps": [], @@ -183315,8 +172767,6 @@ }, "description": "OG L 29, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4220.01.129", "maps": [], @@ -183349,8 +172799,6 @@ }, "description": "OG L 30, WC-Damen Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4220.01.130", "maps": [], @@ -183383,8 +172831,6 @@ }, "description": "OG L 31, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4220.01.131", "maps": [], @@ -183417,8 +172863,6 @@ }, "description": "OG L 32, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4220.01.132", "maps": [], @@ -183451,8 +172895,6 @@ }, "description": "OG L 33, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4220.01.133", "maps": [], @@ -183485,8 +172927,6 @@ }, "description": "OG L 35, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4220.01.135", "maps": [], @@ -183519,8 +172959,6 @@ }, "description": "OG L 36, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4220.01.136", "maps": [], @@ -183553,8 +172991,6 @@ }, "description": "OG L 37, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4220.01.137", "maps": [], @@ -183587,8 +173023,6 @@ }, "description": "OG L 38, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4220.01.138", "maps": [], @@ -183621,8 +173055,6 @@ }, "description": "OG L 39, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4220.01.139", "maps": [], @@ -183655,8 +173087,6 @@ }, "description": "OG L 40, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4220.01.140", "maps": [], @@ -183689,8 +173119,6 @@ }, "description": "OG L 41, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4220.01.141", "maps": [], @@ -183723,8 +173151,6 @@ }, "description": "DG L 01, IT-Schulungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4220.02.101", "maps": [], @@ -183757,8 +173183,6 @@ }, "description": "DG L 02, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4220.02.102", "maps": [], @@ -183791,8 +173215,6 @@ }, "description": "DG L 03, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4220.02.103", "maps": [], @@ -183825,8 +173247,6 @@ }, "description": "DG L 04, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4220.02.104", "maps": [], @@ -183859,8 +173279,6 @@ }, "description": "DG L 09, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4220.02.109", "maps": [], @@ -183893,8 +173311,6 @@ }, "description": "DG L 12, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4220.02.112", "maps": [], @@ -183927,8 +173343,6 @@ }, "description": "DG L 13, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4220.02.113", "maps": [], @@ -183961,8 +173375,6 @@ }, "description": "DG L 14, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4220.02.114", "maps": [], @@ -183995,8 +173407,6 @@ }, "description": "DG L 15, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4220.02.115", "maps": [], @@ -184029,8 +173439,6 @@ }, "description": "DG L 16, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4220.02.116", "maps": [], @@ -184063,8 +173471,6 @@ }, "description": "DG L 17, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4220.02.117", "maps": [], @@ -184097,8 +173503,6 @@ }, "description": "EG R 04, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4220.EG.004", "maps": [], @@ -184131,8 +173535,6 @@ }, "description": "EG R 09, Foyer und Gaderobenzone", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4220.EG.009", "maps": [], @@ -184165,8 +173567,6 @@ }, "description": "EG R 10, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4220.EG.010", "maps": [], @@ -184199,8 +173599,6 @@ }, "description": "EG R 11, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4220.EG.011", "maps": [], @@ -184233,8 +173631,6 @@ }, "description": "EG R 12, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4220.EG.012", "maps": [], @@ -184267,8 +173663,6 @@ }, "description": "EG L 01, Internetcafe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4220.EG.101", "maps": [], @@ -184301,8 +173695,6 @@ }, "description": "EG L 10a, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4220.EG.110A", "maps": [], @@ -184335,8 +173727,6 @@ }, "description": "EG L 10b, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4220.EG.110B", "maps": [], @@ -184369,8 +173759,6 @@ }, "description": "EG L 11, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4220.EG.111", "maps": [], @@ -184403,8 +173791,6 @@ }, "description": "EG L 12, IT-Schulungsraum CIP-Raum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4220.EG.112", "maps": [], @@ -184437,8 +173823,6 @@ }, "description": "EG L 14, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4220.EG.114", "maps": [], @@ -184471,8 +173855,6 @@ }, "description": "EG L 15, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4220.EG.115", "maps": [], @@ -184505,8 +173887,6 @@ }, "description": "EG L 20, WC-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4220.EG.120", "maps": [], @@ -184539,8 +173919,6 @@ }, "description": "EG L 21, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4220.EG.121", "maps": [], @@ -184573,8 +173951,6 @@ }, "description": "EG L 22, WC-Damen Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4220.EG.122", "maps": [], @@ -184607,8 +173983,6 @@ }, "description": "EG L 23, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4220.EG.123", "maps": [], @@ -184641,8 +174015,6 @@ }, "description": "EG L 24, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4220.EG.124", "maps": [], @@ -184675,8 +174047,6 @@ }, "description": "EG L 25, Elektronik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4220.EG.125", "maps": [], @@ -184709,8 +174079,6 @@ }, "description": "EG L 26, WC-Behinderte", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4220.EG.126", "maps": [], @@ -184743,8 +174111,6 @@ }, "description": "EG L 27, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4220.EG.127", "maps": [], @@ -184777,8 +174143,6 @@ }, "description": "EG L 28, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4220.EG.128", "maps": [], @@ -184811,8 +174175,6 @@ }, "description": "EG L 29, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4220.EG.129", "maps": [], @@ -184845,8 +174207,6 @@ }, "description": "EG L 30, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4220.EG.130", "maps": [], @@ -184879,8 +174239,6 @@ }, "description": "EG L 31, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4220.EG.131", "maps": [], @@ -184913,8 +174271,6 @@ }, "description": "UG R 05, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4220.U1.005", "maps": [], @@ -184947,8 +174303,6 @@ }, "description": "UG R 06, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4220.U1.006", "maps": [], @@ -184981,8 +174335,6 @@ }, "description": "UG R 07, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4220.U1.007", "maps": [], @@ -185015,8 +174367,6 @@ }, "description": "UG R 08, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4220.U1.008", "maps": [], @@ -185049,8 +174399,6 @@ }, "description": "UG R 09, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4220.U1.009", "maps": [], @@ -185083,8 +174431,6 @@ }, "description": "UG R 09, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4220.U1.009A", "maps": [], @@ -185117,8 +174463,6 @@ }, "description": "UG R 10, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4220.U1.010", "maps": [], @@ -185151,8 +174495,6 @@ }, "description": "UG R 12, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4220.U1.012", "maps": [], @@ -185185,8 +174527,6 @@ }, "description": "UG R 13, WC-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4220.U1.013", "maps": [], @@ -185219,8 +174559,6 @@ }, "description": "UG R 14, WC-Damen Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4220.U1.014", "maps": [], @@ -185253,8 +174591,6 @@ }, "description": "UG R 15, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4220.U1.015", "maps": [], @@ -185287,8 +174623,6 @@ }, "description": "UG R 16, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4220.U1.016", "maps": [], @@ -185321,8 +174655,6 @@ }, "description": "UG L 01, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4220.U1.101", "maps": [], @@ -185355,8 +174687,6 @@ }, "description": "UG L 02, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4220.U1.102", "maps": [], @@ -185389,8 +174719,6 @@ }, "description": "UG L 03, ADV-Peripherieger\u00e4teraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4220.U1.103", "maps": [], @@ -185423,8 +174751,6 @@ }, "description": "UG L 05, Wertstoffe/M\u00fcll", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4220.U1.105", "maps": [], @@ -185457,8 +174783,6 @@ }, "description": "UG L 06, L\u00fcftungszentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4220.U1.106", "maps": [], @@ -185491,8 +174815,6 @@ }, "description": "UG L 10, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4220.U1.110", "maps": [], @@ -185525,8 +174847,6 @@ }, "description": "UG L 10A, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4220.U1.110A", "maps": [], @@ -185559,8 +174879,6 @@ }, "description": "UG L 11, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4220.U1.111", "maps": [], @@ -185593,8 +174911,6 @@ }, "description": "UG L 12, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4220.U1.112", "maps": [], @@ -185627,8 +174943,6 @@ }, "description": "UG L 13, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4220.U1.113", "maps": [], @@ -185661,8 +174975,6 @@ }, "description": "001, Server", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4221.EG.002", "maps": [], @@ -185695,8 +175007,6 @@ }, "description": "002, Lager-Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4221.EG.003", "maps": [], @@ -185729,8 +175039,6 @@ }, "description": "003, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4221.EG.004", "maps": [], @@ -185763,8 +175071,6 @@ }, "description": "004, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4221.EG.004A", "maps": [], @@ -185797,8 +175103,6 @@ }, "description": "005, Verteilerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4221.EG.005", "maps": [], @@ -185831,8 +175135,6 @@ }, "description": "08, Gleichrichterraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4221.EG.006", "maps": [], @@ -185865,8 +175167,6 @@ }, "description": "007, Hausanschlussraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4221.EG.008", "maps": [], @@ -185899,8 +175199,6 @@ }, "description": "008, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4221.EG.009", "maps": [], @@ -185933,8 +175231,6 @@ }, "description": "009, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4221.EG.010", "maps": [], @@ -185967,8 +175263,6 @@ }, "description": "010, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4221.EG.011", "maps": [], @@ -186001,8 +175295,6 @@ }, "description": "EG-01, Gastraum Nord", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4222.EG.101", "maps": [], @@ -186035,8 +175327,6 @@ }, "description": "EG-02, Erschlie\u00dfung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4222.EG.102", "maps": [], @@ -186069,8 +175359,6 @@ }, "description": "EG-03, Gastraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4222.EG.103", "maps": [], @@ -186103,8 +175391,6 @@ }, "description": "EG-04, Bar", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4222.EG.104", "maps": [], @@ -186137,8 +175423,6 @@ }, "description": "EG-05, Eingangsbereich", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4222.EG.105", "maps": [], @@ -186171,8 +175455,6 @@ }, "description": "EG-11, Balkon/Terrasse Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4222.EG.111", "maps": [], @@ -186205,8 +175487,6 @@ }, "description": "EG-13, Balkon/Terrasse West", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4222.EG.113", "maps": [], @@ -186239,8 +175519,6 @@ }, "description": "EG-15, Erschlie\u00dfung/Abstellpl\u00e4tze", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4222.EG.115", "maps": [], @@ -186273,8 +175551,6 @@ }, "description": "EG-16, Ausschank", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4222.EG.116", "maps": [], @@ -186307,8 +175583,6 @@ }, "description": "EG-17, Aussentreppe (22 Stufen)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4222.EG.117", "maps": [], @@ -186341,8 +175615,6 @@ }, "description": "UG-01, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4222.U1.001", "maps": [], @@ -186375,8 +175647,6 @@ }, "description": "UG-02, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4222.U1.002", "maps": [], @@ -186409,8 +175679,6 @@ }, "description": "UG-03, Lager Leergut/Gastro M\u00f6bel", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4222.U1.003", "maps": [], @@ -186443,8 +175711,6 @@ }, "description": "UG-04, Umkleide-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4222.U1.004", "maps": [], @@ -186477,8 +175743,6 @@ }, "description": "UG-05, Umkleide-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4222.U1.005", "maps": [], @@ -186511,8 +175775,6 @@ }, "description": "UG-06, WC-Personal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4222.U1.006", "maps": [], @@ -186545,8 +175807,6 @@ }, "description": "UG-07, WC-Barrierefrei/Wickeltisch", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4222.U1.007", "maps": [], @@ -186579,8 +175839,6 @@ }, "description": "UG-09, Treppe/Verteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4222.U1.009", "maps": [], @@ -186613,8 +175871,6 @@ }, "description": "UG-10, Sp\u00fchlk\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4222.U1.010", "maps": [], @@ -186647,8 +175903,6 @@ }, "description": "UG-12, Speiseausgabe K\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4222.U1.012", "maps": [], @@ -186681,8 +175935,6 @@ }, "description": "UG-12A, Vorbereitung K\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4222.U1.012A", "maps": [], @@ -186715,8 +175967,6 @@ }, "description": "UG-12B, Kochen K\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4222.U1.012B", "maps": [], @@ -186749,8 +175999,6 @@ }, "description": "UG-12C, K\u00fchlung K\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4222.U1.012C", "maps": [], @@ -186783,8 +176031,6 @@ }, "description": "UG-13, Backoffice", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4222.U1.013", "maps": [], @@ -186817,8 +176063,6 @@ }, "description": "UG-14/UG-15, Fass./Speisek\u00fchl.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4222.U1.014", "maps": [], @@ -186851,8 +176095,6 @@ }, "description": "UG-16, TK", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4222.U1.016", "maps": [], @@ -186885,8 +176127,6 @@ }, "description": "UG-17, Fleisch", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4222.U1.017", "maps": [], @@ -186919,8 +176159,6 @@ }, "description": "UG-18, Obst und Gem\u00fcse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4222.U1.018", "maps": [], @@ -186953,8 +176191,6 @@ }, "description": "UG-19, Trockenlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4222.U1.019", "maps": [], @@ -186987,8 +176223,6 @@ }, "description": "UG-20, Technik-Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4222.U1.020", "maps": [], @@ -187021,8 +176255,6 @@ }, "description": "UG-21, Trockenlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4222.U1.021", "maps": [], @@ -187055,8 +176287,6 @@ }, "description": "UG-22, Haustechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4222.U1.022", "maps": [], @@ -187089,8 +176319,6 @@ }, "description": "UG-24, Rampe/Verteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4222.U1.024", "maps": [], @@ -187123,8 +176351,6 @@ }, "description": "UG-24A, Putzkammer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4222.U1.024A", "maps": [], @@ -187157,8 +176383,6 @@ }, "description": "UG-25, Rev.-Kammer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4222.U1.025", "maps": [], @@ -187191,8 +176415,6 @@ }, "description": "UG-26, M\u00fcll gek\u00fchlt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4222.U1.026", "maps": [], @@ -187225,8 +176447,6 @@ }, "description": "UG-27, M\u00fcll gek\u00fchlt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4222.U1.027", "maps": [], @@ -187259,8 +176479,6 @@ }, "description": "UG-27, M\u00fcll 03", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4222.U1.028", "maps": [], @@ -187293,8 +176511,6 @@ }, "description": "UG-27, M\u00fcll 02", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4222.U1.029", "maps": [], @@ -187327,8 +176543,6 @@ }, "description": "UG-27, M\u00fcll 01", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4222.U1.030", "maps": [], @@ -187361,8 +176575,6 @@ }, "description": "120, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4223.01.120", "maps": [], @@ -187395,8 +176607,6 @@ }, "description": "E20, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4223.EG.020", "maps": [], @@ -187429,8 +176639,6 @@ }, "description": "E30, Eingangshalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4223.EG.030", "maps": [], @@ -187463,8 +176671,6 @@ }, "description": "U20, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4223.U1.020", "maps": [], @@ -187497,8 +176703,6 @@ }, "description": "K02, Elektroverteilung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4223.U2.002", "maps": [], @@ -187531,8 +176735,6 @@ }, "description": "K05, Technik L\u00fcftung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4223.U2.005", "maps": [], @@ -187565,8 +176767,6 @@ }, "description": "K20, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4223.U2.020", "maps": [], @@ -187599,8 +176799,6 @@ }, "description": "1.6, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4224.01.106", "maps": [], @@ -187633,8 +176831,6 @@ }, "description": "1.7, Gas", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4224.01.107", "maps": [], @@ -187667,8 +176863,6 @@ }, "description": "1.8, Elektrische Versorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4224.01.108", "maps": [], @@ -187701,8 +176895,6 @@ }, "description": "1.9, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4224.01.109", "maps": [], @@ -187735,8 +176927,6 @@ }, "description": "1.9a, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4224.01.109A", "maps": [], @@ -187769,8 +176959,6 @@ }, "description": "1.13, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4224.01.113", "maps": [], @@ -187803,8 +176991,6 @@ }, "description": "1.26, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4224.01.126", "maps": [], @@ -187837,8 +177023,6 @@ }, "description": "1.27, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4224.01.127", "maps": [], @@ -187871,8 +177055,6 @@ }, "description": "1.27a, Technik Elektro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4224.01.127A", "maps": [], @@ -187905,8 +177087,6 @@ }, "description": "1.29, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4224.01.129", "maps": [], @@ -187939,8 +177119,6 @@ }, "description": "1.30, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4224.01.130", "maps": [], @@ -187973,8 +177151,6 @@ }, "description": "1.31, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4224.01.131", "maps": [], @@ -188007,8 +177183,6 @@ }, "description": "1.38, Technik Elektro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4224.01.138", "maps": [], @@ -188041,8 +177215,6 @@ }, "description": "1.39, Technik Gas", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4224.01.139", "maps": [], @@ -188075,8 +177247,6 @@ }, "description": "1.40, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4224.01.140", "maps": [], @@ -188109,8 +177279,6 @@ }, "description": "1.48, Seminarraum 51 (WZWS51)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4224.01.148", "maps": [], @@ -188143,8 +177311,6 @@ }, "description": "1.52, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4224.01.152", "maps": [], @@ -188177,8 +177343,6 @@ }, "description": "1.53, Gas", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4224.01.153", "maps": [], @@ -188211,8 +177375,6 @@ }, "description": "1.54, Elektrische Versorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4224.01.154", "maps": [], @@ -188245,8 +177407,6 @@ }, "description": "1.61, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4224.01.161", "maps": [], @@ -188279,8 +177439,6 @@ }, "description": "1.61a, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4224.01.161A", "maps": [], @@ -188313,8 +177471,6 @@ }, "description": "1.62, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4224.01.162", "maps": [], @@ -188347,8 +177503,6 @@ }, "description": "1.63, Technik allgemein", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4224.01.163", "maps": [], @@ -188381,8 +177535,6 @@ }, "description": "1.65, Technik elektrisch", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4224.01.165", "maps": [], @@ -188415,8 +177567,6 @@ }, "description": "1.66, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4224.01.166", "maps": [], @@ -188449,8 +177599,6 @@ }, "description": "1.67, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4224.01.167", "maps": [], @@ -188483,8 +177631,6 @@ }, "description": "1.68, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4224.01.168", "maps": [], @@ -188517,8 +177663,6 @@ }, "description": "1.81, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4224.01.181", "maps": [], @@ -188551,8 +177695,6 @@ }, "description": "1.85, Technik elektrisch", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4224.01.185", "maps": [], @@ -188585,8 +177727,6 @@ }, "description": "1.86, Technik Gas", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4224.01.186", "maps": [], @@ -188619,8 +177759,6 @@ }, "description": "1.87, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4224.01.187", "maps": [], @@ -188653,8 +177791,6 @@ }, "description": "1.96, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4224.01.196", "maps": [], @@ -188687,8 +177823,6 @@ }, "description": "1.97, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4224.01.197", "maps": [], @@ -188721,8 +177855,6 @@ }, "description": "1.98, Steg", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4224.01.198", "maps": [], @@ -188755,8 +177887,6 @@ }, "description": "2.7, Technik allgemein", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4224.02.207", "maps": [], @@ -188789,8 +177919,6 @@ }, "description": "2.8, Gasflaschenlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4224.02.208", "maps": [], @@ -188823,8 +177951,6 @@ }, "description": "2.9, Technik elektrisch", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4224.02.209", "maps": [], @@ -188857,8 +177983,6 @@ }, "description": "210, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4224.02.210", "maps": [], @@ -188891,8 +178015,6 @@ }, "description": "2.10a, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4224.02.210A", "maps": [], @@ -188925,8 +178047,6 @@ }, "description": "2.14, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4224.02.214", "maps": [], @@ -188959,8 +178079,6 @@ }, "description": "2.27, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4224.02.227", "maps": [], @@ -188993,8 +178111,6 @@ }, "description": "2.28, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4224.02.228", "maps": [], @@ -189027,8 +178143,6 @@ }, "description": "2.29, Technik elektrisch", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4224.02.229", "maps": [], @@ -189061,8 +178175,6 @@ }, "description": "2.31, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4224.02.231", "maps": [], @@ -189095,8 +178207,6 @@ }, "description": "2.32, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4224.02.232", "maps": [], @@ -189129,8 +178239,6 @@ }, "description": "2.33, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4224.02.233", "maps": [], @@ -189163,8 +178271,6 @@ }, "description": "2.34, Seminarraum 52 (WZWS52) (gem. Nutzung)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4224.02.234", "maps": [], @@ -189197,8 +178303,6 @@ }, "description": "2.40, Technik elektrisch", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4224.02.240", "maps": [], @@ -189231,8 +178335,6 @@ }, "description": "2.41, Technik Gas", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4224.02.241", "maps": [], @@ -189265,8 +178367,6 @@ }, "description": "2.42, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4224.02.242", "maps": [], @@ -189299,8 +178399,6 @@ }, "description": "2.57, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4224.02.257", "maps": [], @@ -189333,8 +178431,6 @@ }, "description": "2.58, Technik Gas", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4224.02.258", "maps": [], @@ -189367,8 +178463,6 @@ }, "description": "2.59, Technik elektrisch", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4224.02.259", "maps": [], @@ -189401,8 +178495,6 @@ }, "description": "2.66, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4224.02.266", "maps": [], @@ -189435,8 +178527,6 @@ }, "description": "2.66a, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4224.02.266A", "maps": [], @@ -189469,8 +178559,6 @@ }, "description": "2.67, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4224.02.267", "maps": [], @@ -189503,8 +178591,6 @@ }, "description": "2.68, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4224.02.268", "maps": [], @@ -189537,8 +178623,6 @@ }, "description": "2.70, Technik elektrisch", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4224.02.270", "maps": [], @@ -189571,8 +178655,6 @@ }, "description": "2.71, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4224.02.271", "maps": [], @@ -189605,8 +178687,6 @@ }, "description": "2.72, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4224.02.272", "maps": [], @@ -189639,8 +178719,6 @@ }, "description": "2.73, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4224.02.273", "maps": [], @@ -189673,8 +178751,6 @@ }, "description": "2.86, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4224.02.286", "maps": [], @@ -189707,8 +178783,6 @@ }, "description": "2.90, Technik elektrisch", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4224.02.290", "maps": [], @@ -189741,8 +178815,6 @@ }, "description": "2.91, Technik Gas", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4224.02.291", "maps": [], @@ -189775,8 +178847,6 @@ }, "description": "2.92, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4224.02.292", "maps": [], @@ -189809,8 +178879,6 @@ }, "description": "2.98, Seminarraum 53 (WZWS53)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4224.02.298", "maps": [], @@ -189843,8 +178911,6 @@ }, "description": "2.99a, Empore West", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4224.02.299A", "maps": [], @@ -189877,8 +178943,6 @@ }, "description": "2.99b, Empore Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4224.02.299B", "maps": [], @@ -189911,8 +178975,6 @@ }, "description": "2.99c, Steg", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4224.02.299C", "maps": [], @@ -189945,8 +179007,6 @@ }, "description": "4.01, Technik West", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "4224.DG.401", "maps": [], @@ -189979,8 +179039,6 @@ }, "description": "4.02, Technik Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "4224.DG.402", "maps": [], @@ -190013,8 +179071,6 @@ }, "description": "4.03, Treppenhaus West", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "4224.DG.403", "maps": [], @@ -190047,8 +179103,6 @@ }, "description": "4.04, Treppenhaus Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "4224.DG.404", "maps": [], @@ -190081,8 +179135,6 @@ }, "description": "0.2a, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4224.EG.002A", "maps": [], @@ -190115,8 +179167,6 @@ }, "description": "0.3a, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4224.EG.003A", "maps": [], @@ -190149,8 +179199,6 @@ }, "description": "0.4a, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4224.EG.004A", "maps": [], @@ -190183,8 +179231,6 @@ }, "description": "0.5a, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4224.EG.005A", "maps": [], @@ -190217,8 +179263,6 @@ }, "description": "0.6a, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4224.EG.006A", "maps": [], @@ -190251,8 +179295,6 @@ }, "description": "0.7, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4224.EG.007", "maps": [], @@ -190285,8 +179327,6 @@ }, "description": "0.8, Technik Gas", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4224.EG.008", "maps": [], @@ -190319,8 +179359,6 @@ }, "description": "0.9, Elektrische Versorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4224.EG.009", "maps": [], @@ -190353,8 +179391,6 @@ }, "description": "0.10, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4224.EG.010", "maps": [], @@ -190387,8 +179423,6 @@ }, "description": "0.10a, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4224.EG.010A", "maps": [], @@ -190421,8 +179455,6 @@ }, "description": "0.15, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4224.EG.015", "maps": [], @@ -190455,8 +179487,6 @@ }, "description": "0.18, Ruheraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4224.EG.018", "maps": [], @@ -190489,8 +179519,6 @@ }, "description": "0.23, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4224.EG.023", "maps": [], @@ -190523,8 +179551,6 @@ }, "description": "0.24, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4224.EG.024", "maps": [], @@ -190557,8 +179583,6 @@ }, "description": "0.25, Elektrische Versorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4224.EG.025", "maps": [], @@ -190591,8 +179615,6 @@ }, "description": "0.26, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4224.EG.026", "maps": [], @@ -190625,8 +179647,6 @@ }, "description": "0.27, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4224.EG.027", "maps": [], @@ -190659,8 +179679,6 @@ }, "description": "0.28, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4224.EG.028", "maps": [], @@ -190693,8 +179711,6 @@ }, "description": "0.29, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4224.EG.029", "maps": [], @@ -190727,8 +179743,6 @@ }, "description": "0.32b, Verbindungsflur zu 0.31 U. 0.34", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4224.EG.032B", "maps": [], @@ -190761,8 +179775,6 @@ }, "description": "0.35, Technik elektrisch", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4224.EG.035", "maps": [], @@ -190795,8 +179807,6 @@ }, "description": "0.36, Technik Gas", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4224.EG.036", "maps": [], @@ -190829,8 +179839,6 @@ }, "description": "0.37, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4224.EG.037", "maps": [], @@ -190863,8 +179871,6 @@ }, "description": "0.39, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4224.EG.039", "maps": [], @@ -190897,8 +179903,6 @@ }, "description": "0.40, Technik gas", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4224.EG.040", "maps": [], @@ -190931,8 +179935,6 @@ }, "description": "0.41, Technik elektrisch", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4224.EG.041", "maps": [], @@ -190965,8 +179967,6 @@ }, "description": "0.47, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4224.EG.047", "maps": [], @@ -190999,8 +179999,6 @@ }, "description": "0.47a, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4224.EG.047A", "maps": [], @@ -191033,8 +180031,6 @@ }, "description": "0.48, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4224.EG.048", "maps": [], @@ -191067,8 +180063,6 @@ }, "description": "0.49, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4224.EG.049", "maps": [], @@ -191101,8 +180095,6 @@ }, "description": "0.50, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4224.EG.050", "maps": [], @@ -191135,8 +180127,6 @@ }, "description": "0.51, Elektrische Versorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4224.EG.051", "maps": [], @@ -191169,8 +180159,6 @@ }, "description": "0.52, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4224.EG.052", "maps": [], @@ -191203,8 +180191,6 @@ }, "description": "0.53, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4224.EG.053", "maps": [], @@ -191237,8 +180223,6 @@ }, "description": "0.54, Fotolabor/Dunkelkammer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4224.EG.054", "maps": [], @@ -191271,8 +180255,6 @@ }, "description": "0.67, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4224.EG.067", "maps": [], @@ -191305,8 +180287,6 @@ }, "description": "0.71, Technik elektrisch", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4224.EG.071", "maps": [], @@ -191339,8 +180319,6 @@ }, "description": "0.72, Technik Gas", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4224.EG.072", "maps": [], @@ -191373,8 +180351,6 @@ }, "description": "0.73, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4224.EG.073", "maps": [], @@ -191407,8 +180383,6 @@ }, "description": "0.90, BWS Foyer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4224.EG.090", "maps": [], @@ -191441,8 +180415,6 @@ }, "description": "0.91, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4224.EG.091", "maps": [], @@ -191475,8 +180447,6 @@ }, "description": "0.92, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4224.EG.092", "maps": [], @@ -191509,8 +180479,6 @@ }, "description": "093, Cafe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4224.EG.093", "maps": [], @@ -191543,8 +180511,6 @@ }, "description": "UG 4A, Technik / Fernmeldeverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4224.U1.004A", "maps": [], @@ -191577,8 +180543,6 @@ }, "description": "UG 4B, Elektrische Versorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4224.U1.004B", "maps": [], @@ -191611,8 +180575,6 @@ }, "description": "UG 5, Technik allgemein", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4224.U1.005", "maps": [], @@ -191645,8 +180607,6 @@ }, "description": "UG 7, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4224.U1.007", "maps": [], @@ -191679,8 +180639,6 @@ }, "description": "UG 8, Neutraanlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4224.U1.008", "maps": [], @@ -191713,8 +180671,6 @@ }, "description": "UG 9, Druckluftanlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4224.U1.009", "maps": [], @@ -191747,8 +180703,6 @@ }, "description": "UG 11, Technik allgemein", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4224.U1.011", "maps": [], @@ -191781,8 +180735,6 @@ }, "description": "UG 12A, Trafostation XXIV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4224.U1.012A", "maps": [], @@ -191815,8 +180767,6 @@ }, "description": "UG 12B, Elektrische Versorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4224.U1.012B", "maps": [], @@ -191849,8 +180799,6 @@ }, "description": "UG 13A, Trafostation XXIV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4224.U1.013A", "maps": [], @@ -191883,8 +180831,6 @@ }, "description": "UG 13B, Trafostation XXIV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4224.U1.013B", "maps": [], @@ -191917,8 +180863,6 @@ }, "description": "UG 13C, Trafostation XXIV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4224.U1.013C", "maps": [], @@ -191951,8 +180895,6 @@ }, "description": "UG 17, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4224.U1.017", "maps": [], @@ -191985,8 +180927,6 @@ }, "description": "UG 18, L\u00fcftung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4224.U1.018", "maps": [], @@ -192019,8 +180959,6 @@ }, "description": "UG 21, Lager f\u00fcr die keimfreie Tierhaltung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4224.U1.021", "maps": [], @@ -192053,8 +180991,6 @@ }, "description": "UG 22, Lager mit brennbaren Fl\u00fcssigkeiten (gem. Nu", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4224.U1.022", "maps": [], @@ -192087,8 +181023,6 @@ }, "description": "UG 23, Sonderm\u00fcll/brennbare Fl\u00fcssigkeiten", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4224.U1.023", "maps": [], @@ -192121,8 +181055,6 @@ }, "description": "UG 24, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4224.U1.024", "maps": [], @@ -192155,8 +181087,6 @@ }, "description": "UG 25, Elektrische Versorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4224.U1.025", "maps": [], @@ -192189,8 +181119,6 @@ }, "description": "UG 26, Heizung und Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4224.U1.026", "maps": [], @@ -192223,8 +181151,6 @@ }, "description": "UG 27, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4224.U1.027", "maps": [], @@ -192257,8 +181183,6 @@ }, "description": "UG 28, Elektrische Versorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4224.U1.028", "maps": [], @@ -192291,8 +181215,6 @@ }, "description": "UG 29, L\u00fcftung Isotopen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4224.U1.029", "maps": [], @@ -192325,8 +181247,6 @@ }, "description": "UG 32, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4224.U1.032", "maps": [], @@ -192359,8 +181279,6 @@ }, "description": "UG 36, Fernsprechverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4224.U1.036", "maps": [], @@ -192393,8 +181311,6 @@ }, "description": "UG 37, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4224.U1.037", "maps": [], @@ -192427,8 +181343,6 @@ }, "description": "UG 38, Elektrische Versorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4224.U1.038", "maps": [], @@ -192461,8 +181375,6 @@ }, "description": "UG 39, WC-Behinderte", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4224.U1.039", "maps": [], @@ -192495,8 +181407,6 @@ }, "description": "UG 42, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4224.U1.042", "maps": [], @@ -192529,8 +181439,6 @@ }, "description": "UG 45, WC-Behinderte", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4224.U1.045", "maps": [], @@ -192563,8 +181471,6 @@ }, "description": "UG 46, Elektrische Versorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4224.U1.046", "maps": [], @@ -192597,8 +181503,6 @@ }, "description": "UG 47, Technik allgemein", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4224.U1.047", "maps": [], @@ -192631,8 +181535,6 @@ }, "description": "UG 48, Technik Fernsprech", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4224.U1.048", "maps": [], @@ -192665,8 +181567,6 @@ }, "description": "UG 49, Elektrische Versorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4224.U1.049", "maps": [], @@ -192699,8 +181599,6 @@ }, "description": "UG 50, Technik EDV Verteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4224.U1.050", "maps": [], @@ -192733,8 +181631,6 @@ }, "description": "UG 51, K\u00e4ltetechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4224.U1.051", "maps": [], @@ -192767,8 +181663,6 @@ }, "description": "UG 55, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4224.U1.055", "maps": [], @@ -192801,8 +181695,6 @@ }, "description": "UG 55A, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4224.U1.055A", "maps": [], @@ -192835,8 +181727,6 @@ }, "description": "UG 56, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4224.U1.056", "maps": [], @@ -192869,8 +181759,6 @@ }, "description": "UG 57, Umkleide-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4224.U1.057", "maps": [], @@ -192903,8 +181791,6 @@ }, "description": "UG 58A, Schleuse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4224.U1.058A", "maps": [], @@ -192937,8 +181823,6 @@ }, "description": "UG 58B, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4224.U1.058B", "maps": [], @@ -192971,8 +181855,6 @@ }, "description": "UG 58C, Waschraum-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4224.U1.058C", "maps": [], @@ -193005,8 +181887,6 @@ }, "description": "UG 58D, Dusche-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4224.U1.058D", "maps": [], @@ -193039,8 +181919,6 @@ }, "description": "UG 59A, Schleuse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4224.U1.059A", "maps": [], @@ -193073,8 +181951,6 @@ }, "description": "UG 59B, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4224.U1.059B", "maps": [], @@ -193107,8 +181983,6 @@ }, "description": "UG 59C, Waschraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4224.U1.059C", "maps": [], @@ -193141,8 +182015,6 @@ }, "description": "UG 60, Umkleide-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4224.U1.060", "maps": [], @@ -193175,8 +182047,6 @@ }, "description": "UG 61, Podest mit Treppenl\u00e4ufen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4224.U1.061", "maps": [], @@ -193209,8 +182079,6 @@ }, "description": "UG 61A, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4224.U1.061A", "maps": [], @@ -193243,8 +182111,6 @@ }, "description": "UG 62, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4224.U1.062", "maps": [], @@ -193277,8 +182143,6 @@ }, "description": "UG 69, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4224.U1.069", "maps": [], @@ -193311,8 +182175,6 @@ }, "description": "UG 70, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4224.U1.070", "maps": [], @@ -193345,8 +182207,6 @@ }, "description": "O.01, Treppenhaus 1 Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4225.01.201", "maps": [], @@ -193379,8 +182239,6 @@ }, "description": "O.01.1, Aufzugsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4225.01.201A", "maps": [], @@ -193413,8 +182271,6 @@ }, "description": "O.03, Flur 1 (0.04-0.14)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4225.01.203", "maps": [], @@ -193447,8 +182303,6 @@ }, "description": "O.13.1, WC-Damen Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4225.01.213A", "maps": [], @@ -193481,8 +182335,6 @@ }, "description": "O.13.2, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4225.01.213B", "maps": [], @@ -193515,8 +182367,6 @@ }, "description": "O.14.1, WC-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4225.01.214A", "maps": [], @@ -193549,8 +182399,6 @@ }, "description": "O.14.2, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4225.01.214B", "maps": [], @@ -193583,8 +182431,6 @@ }, "description": "O.15.2, Elektroverteilung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4225.01.215B", "maps": [], @@ -193617,8 +182463,6 @@ }, "description": "O.27, Flur 2 S\u00fcd (O.17-O.31)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4225.01.227", "maps": [], @@ -193651,8 +182495,6 @@ }, "description": "O.35, Flur 3 West (O.31-O.42)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4225.01.235", "maps": [], @@ -193685,8 +182527,6 @@ }, "description": "O.36, Treppenhaus 2 West", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4225.01.236", "maps": [], @@ -193719,8 +182559,6 @@ }, "description": "O.43.1, Elektroverteilung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4225.01.243A", "maps": [], @@ -193753,8 +182591,6 @@ }, "description": "O.44.1, WC-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4225.01.244A", "maps": [], @@ -193787,8 +182623,6 @@ }, "description": "O.44.2, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4225.01.244B", "maps": [], @@ -193821,8 +182655,6 @@ }, "description": "O.45.2, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4225.01.245B", "maps": [], @@ -193855,8 +182687,6 @@ }, "description": "O.46, Flur 4 Nord (O.47-O.52)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4225.01.246", "maps": [], @@ -193889,8 +182719,6 @@ }, "description": "O.46.1, Flur 5 Treppenhaus 1 Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4225.01.246A", "maps": [], @@ -193923,8 +182751,6 @@ }, "description": "O.47A, Ger\u00e4te 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4225.01.247A", "maps": [], @@ -193957,8 +182783,6 @@ }, "description": "O.45.1, WC-Damen Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4225.01.254A", "maps": [], @@ -193991,8 +182815,6 @@ }, "description": "E.01.1, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4225.EG.101A", "maps": [], @@ -194025,8 +182847,6 @@ }, "description": "E.01.2, Treppenhaus 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4225.EG.101B", "maps": [], @@ -194059,8 +182879,6 @@ }, "description": "E.03, Eingangshalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4225.EG.103", "maps": [], @@ -194093,8 +182911,6 @@ }, "description": "E.04, Windfang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4225.EG.104", "maps": [], @@ -194127,8 +182943,6 @@ }, "description": "E.05, Flur 1 S\u00fcd-Ost (E.03-E.16)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4225.EG.105", "maps": [], @@ -194161,8 +182975,6 @@ }, "description": "E.12.1, WC-Damen Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4225.EG.112A", "maps": [], @@ -194195,8 +183007,6 @@ }, "description": "E.12.2, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4225.EG.112B", "maps": [], @@ -194229,8 +183039,6 @@ }, "description": "E.13.1, WC-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4225.EG.113A", "maps": [], @@ -194263,8 +183071,6 @@ }, "description": "E.13.2, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4225.EG.113B", "maps": [], @@ -194297,8 +183103,6 @@ }, "description": "E.14.2, Elektroverteilung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4225.EG.114B", "maps": [], @@ -194331,8 +183135,6 @@ }, "description": "E.24, Flur 2 S\u00fcd (E.16-E.28)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4225.EG.124", "maps": [], @@ -194365,8 +183167,6 @@ }, "description": "E.32, Flur 3 West (E.29-E.39)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4225.EG.132", "maps": [], @@ -194399,8 +183199,6 @@ }, "description": "E.33, Treppenhaus 2 West", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4225.EG.133", "maps": [], @@ -194433,8 +183231,6 @@ }, "description": "E.40.1, Elektroverteilung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4225.EG.140A", "maps": [], @@ -194467,8 +183263,6 @@ }, "description": "E.41.1, WC-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4225.EG.141A", "maps": [], @@ -194501,8 +183295,6 @@ }, "description": "E.41.2, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4225.EG.141B", "maps": [], @@ -194535,8 +183327,6 @@ }, "description": "E.42.1, WC-Damen Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4225.EG.142A", "maps": [], @@ -194569,8 +183359,6 @@ }, "description": "E.42.2, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4225.EG.142B", "maps": [], @@ -194603,8 +183391,6 @@ }, "description": "E.43, Flur 4 Nord (E.44-E.49)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4225.EG.143", "maps": [], @@ -194637,8 +183423,6 @@ }, "description": "05A, Abfallsammelstelle 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4225.EG.156A", "maps": [], @@ -194671,8 +183455,6 @@ }, "description": "06, Fahrradunterstand", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4225.EG.157", "maps": [], @@ -194705,8 +183487,6 @@ }, "description": "08, Abfallsammelstelle 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4225.EG.159", "maps": [], @@ -194739,8 +183519,6 @@ }, "description": "U.01.1, Aufzugsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4225.U1.001A", "maps": [], @@ -194773,8 +183551,6 @@ }, "description": "U.01.2, Treppenhaus 1 Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4225.U1.001B", "maps": [], @@ -194807,8 +183583,6 @@ }, "description": "U.02, Flur 1 S\u00fcd-Ost (U.01-U.14)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4225.U1.002", "maps": [], @@ -194841,8 +183615,6 @@ }, "description": "U.04, VE-Wasser", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4225.U1.004", "maps": [], @@ -194875,8 +183647,6 @@ }, "description": "U.05, Hausanschlussraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4225.U1.005", "maps": [], @@ -194909,8 +183679,6 @@ }, "description": "U.06, Elektrische Versorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4225.U1.006", "maps": [], @@ -194943,8 +183711,6 @@ }, "description": "U.07, Druckluftanlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4225.U1.007", "maps": [], @@ -194977,8 +183743,6 @@ }, "description": "U.08, Heizungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4225.U1.008", "maps": [], @@ -195011,8 +183775,6 @@ }, "description": "U.09, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4225.U1.009", "maps": [], @@ -195045,8 +183807,6 @@ }, "description": "U.09.1, Umkleide-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4225.U1.009A", "maps": [], @@ -195079,8 +183839,6 @@ }, "description": "U.09.2, Waschraum-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4225.U1.009B", "maps": [], @@ -195113,8 +183871,6 @@ }, "description": "U.10, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4225.U1.010", "maps": [], @@ -195147,8 +183903,6 @@ }, "description": "U.10.1, Umkleide-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4225.U1.010A", "maps": [], @@ -195181,8 +183935,6 @@ }, "description": "U.10.2, Waschraum-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4225.U1.010B", "maps": [], @@ -195215,8 +183967,6 @@ }, "description": "U.17, Flur 2 S\u00fcd-West (U.13.1-U.20)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4225.U1.017", "maps": [], @@ -195249,8 +183999,6 @@ }, "description": "U.18, Treppenhaus 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4225.U1.018", "maps": [], @@ -195283,8 +184031,6 @@ }, "description": "U.20, Ger\u00e4te 2 / Neutralisationsanlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4225.U1.020", "maps": [], @@ -195317,8 +184063,6 @@ }, "description": "U.29.1, Flur 3 Nord (U.21-U.32)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4225.U1.029", "maps": [], @@ -195351,8 +184095,6 @@ }, "description": "U.29.2, Maschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4225.U1.034", "maps": [], @@ -195385,8 +184127,6 @@ }, "description": "U.29.3, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4225.U1.036", "maps": [], @@ -195419,8 +184159,6 @@ }, "description": "1.OG 02, Sozialraum (gem. Nutzung; EIT-Food)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4226.01.002", "maps": [], @@ -195453,8 +184191,6 @@ }, "description": "1.OG 03, B\u00fcro (EIT-Food)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4226.01.003", "maps": [], @@ -195487,8 +184223,6 @@ }, "description": "1.OG 04, B\u00fcro (EIT-Food)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4226.01.004", "maps": [], @@ -195521,8 +184255,6 @@ }, "description": "1.OG 05, Sekretariat (EIT-Food)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4226.01.005", "maps": [], @@ -195555,8 +184287,6 @@ }, "description": "1.OG 06, Leitung (EIT-Food)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4226.01.006", "maps": [], @@ -195589,8 +184319,6 @@ }, "description": "1.OG 07, B\u00fcro (EIT-Food)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4226.01.007", "maps": [], @@ -195623,8 +184351,6 @@ }, "description": "1.OG 08, B\u00fcro (EIT-Food)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4226.01.008", "maps": [], @@ -195657,8 +184383,6 @@ }, "description": "1.OG 15, Technikschacht 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4226.01.015", "maps": [], @@ -195691,8 +184415,6 @@ }, "description": "1.OG 18, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4226.01.018", "maps": [], @@ -195725,8 +184447,6 @@ }, "description": "1.OG 19, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4226.01.019", "maps": [], @@ -195759,8 +184479,6 @@ }, "description": "1.OG 20, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4226.01.020", "maps": [], @@ -195793,8 +184511,6 @@ }, "description": "1.OG 21, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4226.01.021", "maps": [], @@ -195827,8 +184543,6 @@ }, "description": "1.OG 22, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4226.01.022", "maps": [], @@ -195861,8 +184575,6 @@ }, "description": "1.OG 23, Treppenhaus Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4226.01.023", "maps": [], @@ -195895,8 +184607,6 @@ }, "description": "1.OG 25, Technikschacht 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4226.01.025", "maps": [], @@ -195929,8 +184639,6 @@ }, "description": "1.OG 26, Technikschacht 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4226.01.026", "maps": [], @@ -195963,8 +184671,6 @@ }, "description": "1.OG 27, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4226.01.027", "maps": [], @@ -195997,8 +184703,6 @@ }, "description": "1.OG 28, Technikschacht 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4226.01.028", "maps": [], @@ -196031,8 +184735,6 @@ }, "description": "1.OG 30, Technikschacht 6", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4226.01.030", "maps": [], @@ -196065,8 +184767,6 @@ }, "description": "1.OG 31, Treppenhaus West", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4226.01.031", "maps": [], @@ -196099,8 +184799,6 @@ }, "description": "1.OG 47, Technikschacht 5", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4226.01.047", "maps": [], @@ -196133,8 +184831,6 @@ }, "description": "1.OG 50, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4226.01.050", "maps": [], @@ -196167,8 +184863,6 @@ }, "description": "1.OG 51, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4226.01.051", "maps": [], @@ -196201,8 +184895,6 @@ }, "description": "1.OG 52, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4226.01.052", "maps": [], @@ -196235,8 +184927,6 @@ }, "description": "1.OG 53, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4226.01.053", "maps": [], @@ -196269,8 +184959,6 @@ }, "description": "2.OG 16, Technikschacht 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4226.02.016", "maps": [], @@ -196303,8 +184991,6 @@ }, "description": "2.OG 19, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4226.02.019", "maps": [], @@ -196337,8 +185023,6 @@ }, "description": "2.OG 20, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4226.02.020", "maps": [], @@ -196371,8 +185055,6 @@ }, "description": "2.OG 21, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4226.02.021", "maps": [], @@ -196405,8 +185087,6 @@ }, "description": "2.OG 22, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4226.02.022", "maps": [], @@ -196439,8 +185119,6 @@ }, "description": "2.OG 23, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4226.02.023", "maps": [], @@ -196473,8 +185151,6 @@ }, "description": "2.OG 24, Treppenhaus Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4226.02.024", "maps": [], @@ -196507,8 +185183,6 @@ }, "description": "2.OG 26, Technikschacht 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4226.02.026", "maps": [], @@ -196541,8 +185215,6 @@ }, "description": "2.OG 27, Technikschacht 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4226.02.027", "maps": [], @@ -196575,8 +185247,6 @@ }, "description": "2.OG 28, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4226.02.028", "maps": [], @@ -196609,8 +185279,6 @@ }, "description": "2.OG 29, Technikschacht 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4226.02.029", "maps": [], @@ -196643,8 +185311,6 @@ }, "description": "2.OG 31, Technikschacht 6", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4226.02.031", "maps": [], @@ -196677,8 +185343,6 @@ }, "description": "2.OG 32, Treppenhaus West", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4226.02.032", "maps": [], @@ -196711,8 +185375,6 @@ }, "description": "2.OG 48, Technikschacht 5", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4226.02.048", "maps": [], @@ -196745,8 +185407,6 @@ }, "description": "2.OG 51, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4226.02.051", "maps": [], @@ -196779,8 +185439,6 @@ }, "description": "2.OG 52, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4226.02.052", "maps": [], @@ -196813,8 +185471,6 @@ }, "description": "2.OG 53, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4226.02.053", "maps": [], @@ -196847,8 +185503,6 @@ }, "description": "2.OG 54, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4226.02.054", "maps": [], @@ -196881,8 +185535,6 @@ }, "description": "DG 01, Konferenzraum IGZW", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4226.03.001", "maps": [], @@ -196915,8 +185567,6 @@ }, "description": "DG 02, Treppenhaus Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4226.03.002", "maps": [], @@ -196949,8 +185599,6 @@ }, "description": "DG 03, Treppenhaus West", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4226.03.003", "maps": [], @@ -196983,8 +185631,6 @@ }, "description": "DG 04, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4226.03.004", "maps": [], @@ -197017,8 +185663,6 @@ }, "description": "DG 05, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4226.03.005", "maps": [], @@ -197051,8 +185695,6 @@ }, "description": "DG 05a, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4226.03.005A", "maps": [], @@ -197085,8 +185727,6 @@ }, "description": "DG 06, Technikschachtzentrale West", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4226.03.006", "maps": [], @@ -197119,8 +185759,6 @@ }, "description": "DG 07, Technikschachtzentrale Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4226.03.007", "maps": [], @@ -197153,8 +185791,6 @@ }, "description": "DG 08, Stuhllager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4226.03.008", "maps": [], @@ -197187,8 +185823,6 @@ }, "description": "EG 15, Technikschacht 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4226.EG.015", "maps": [], @@ -197221,8 +185855,6 @@ }, "description": "EG 18, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4226.EG.018", "maps": [], @@ -197255,8 +185887,6 @@ }, "description": "EG 19, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4226.EG.019", "maps": [], @@ -197289,8 +185919,6 @@ }, "description": "EG 20, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4226.EG.020", "maps": [], @@ -197323,8 +185951,6 @@ }, "description": "EG 21, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4226.EG.021", "maps": [], @@ -197357,8 +185983,6 @@ }, "description": "EG 22, Flur Treppenhaus Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4226.EG.022", "maps": [], @@ -197391,8 +186015,6 @@ }, "description": "EG 24, Technikschacht 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4226.EG.024", "maps": [], @@ -197425,8 +186047,6 @@ }, "description": "EG 25, Technikschacht 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4226.EG.025", "maps": [], @@ -197459,8 +186079,6 @@ }, "description": "EG 26, Flur Eingang S\u00fcd", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4226.EG.026", "maps": [], @@ -197493,8 +186111,6 @@ }, "description": "EG 27, Technikschacht 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4226.EG.027", "maps": [], @@ -197527,8 +186143,6 @@ }, "description": "EG 28, Technikschacht 6", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4226.EG.028", "maps": [], @@ -197561,8 +186175,6 @@ }, "description": "EG 29, Flur Treppenhaus West", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4226.EG.029", "maps": [], @@ -197595,8 +186207,6 @@ }, "description": "EG 37, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4226.EG.037", "maps": [], @@ -197629,8 +186239,6 @@ }, "description": "EG 38, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4226.EG.038", "maps": [], @@ -197663,8 +186271,6 @@ }, "description": "EG 39, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4226.EG.039", "maps": [], @@ -197697,8 +186303,6 @@ }, "description": "EG 42B, Wertstoffe/M\u00fcll", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4226.EG.042B", "maps": [], @@ -197731,8 +186335,6 @@ }, "description": "EG 42C, Gasflaschenlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4226.EG.042C", "maps": [], @@ -197765,8 +186367,6 @@ }, "description": "EG 44, Technikschacht 5", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4226.EG.044", "maps": [], @@ -197799,8 +186399,6 @@ }, "description": "EG 46, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4226.EG.046", "maps": [], @@ -197833,8 +186431,6 @@ }, "description": "UG 01, Wertstoffe/M\u00fcll", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4226.U1.001", "maps": [], @@ -197867,8 +186463,6 @@ }, "description": "UG 02, Lager Hygieneartikel", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4226.U1.002", "maps": [], @@ -197901,8 +186495,6 @@ }, "description": "UG 03, Trafostation XXV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4226.U1.003", "maps": [], @@ -197935,8 +186527,6 @@ }, "description": "UG 04, Trafostation XXV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4226.U1.004", "maps": [], @@ -197969,8 +186559,6 @@ }, "description": "UG 05, Trafostation XXV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4226.U1.005", "maps": [], @@ -198003,8 +186591,6 @@ }, "description": "UG 06, Einbringschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4226.U1.006", "maps": [], @@ -198037,8 +186623,6 @@ }, "description": "UG 06a, Trafostation XXV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4226.U1.006A", "maps": [], @@ -198071,8 +186655,6 @@ }, "description": "UG 06b, Trafostation XXV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4226.U1.006B", "maps": [], @@ -198105,8 +186687,6 @@ }, "description": "UG 06c, MSP", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4226.U1.006C", "maps": [], @@ -198139,8 +186719,6 @@ }, "description": "UG 08, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4226.U1.008", "maps": [], @@ -198173,8 +186751,6 @@ }, "description": "UG 09, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4226.U1.009", "maps": [], @@ -198207,8 +186783,6 @@ }, "description": "UG 45, WC-Behinderte", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4226.U1.010", "maps": [], @@ -198241,8 +186815,6 @@ }, "description": "UG 11, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4226.U1.011", "maps": [], @@ -198275,8 +186847,6 @@ }, "description": "UG 12, Neutralisation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4226.U1.012", "maps": [], @@ -198309,8 +186879,6 @@ }, "description": "UG 13, Kompressor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4226.U1.013", "maps": [], @@ -198343,8 +186911,6 @@ }, "description": "UG 15, Heizzentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4226.U1.015", "maps": [], @@ -198377,8 +186943,6 @@ }, "description": "UG 18, Umkleide-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4226.U1.018", "maps": [], @@ -198411,8 +186975,6 @@ }, "description": "UG 19, Technikschacht 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4226.U1.019", "maps": [], @@ -198445,8 +187007,6 @@ }, "description": "UG 20, Umkleide-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4226.U1.020", "maps": [], @@ -198479,8 +187039,6 @@ }, "description": "UG 21, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4226.U1.021", "maps": [], @@ -198513,8 +187071,6 @@ }, "description": "UG 22, Flur Treppenhaus Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4226.U1.022", "maps": [], @@ -198547,8 +187103,6 @@ }, "description": "UG 22a, Aufzug Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4226.U1.022A", "maps": [], @@ -198581,8 +187135,6 @@ }, "description": "UG 23, L\u00fcftungszentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4226.U1.023", "maps": [], @@ -198615,8 +187167,6 @@ }, "description": "UG 24, Technikschacht 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4226.U1.024", "maps": [], @@ -198649,8 +187199,6 @@ }, "description": "UG 25, Technikschacht 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4226.U1.025", "maps": [], @@ -198683,8 +187231,6 @@ }, "description": "UG 26, Technikschacht 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4226.U1.026", "maps": [], @@ -198717,8 +187263,6 @@ }, "description": "UG 26a, K\u00e4ltezentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4226.U1.026A", "maps": [], @@ -198751,8 +187295,6 @@ }, "description": "UG 27, Technikschacht 6", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4226.U1.027", "maps": [], @@ -198785,8 +187327,6 @@ }, "description": "UG 28, Flur Treppenhaus West", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4226.U1.028", "maps": [], @@ -198819,8 +187359,6 @@ }, "description": "UG 28a, Aufzug Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4226.U1.028A", "maps": [], @@ -198853,8 +187391,6 @@ }, "description": "UG 29, Wertstoffe/M\u00fcll", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4226.U1.029", "maps": [], @@ -198887,8 +187423,6 @@ }, "description": "UG 31, Entsorgungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4226.U1.031", "maps": [], @@ -198921,8 +187455,6 @@ }, "description": "UG 32, Lagerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4226.U1.032", "maps": [], @@ -198955,8 +187487,6 @@ }, "description": "UG 36, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4226.U1.036", "maps": [], @@ -198989,8 +187519,6 @@ }, "description": "UG 37, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4226.U1.037", "maps": [], @@ -199023,8 +187551,6 @@ }, "description": "UG 38, WC-Behinderte", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4226.U1.038", "maps": [], @@ -199057,8 +187583,6 @@ }, "description": "UG 39, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4226.U1.039", "maps": [], @@ -199091,8 +187615,6 @@ }, "description": "UG 47, Umkleide Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4226.U1.047", "maps": [], @@ -199125,8 +187647,6 @@ }, "description": "UG 48, Technikschacht 5", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4226.U1.048", "maps": [], @@ -199159,8 +187679,6 @@ }, "description": "UG 49, Umkleide Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4226.U1.049", "maps": [], @@ -199193,8 +187711,6 @@ }, "description": "UG 50, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4226.U1.050", "maps": [], @@ -199227,8 +187743,6 @@ }, "description": "UG 50/21, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4226.U1.051", "maps": [], @@ -199261,8 +187775,6 @@ }, "description": "010, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4231.EG.010", "maps": [], @@ -199295,8 +187807,6 @@ }, "description": "017, WC-Damen Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4231.EG.017", "maps": [], @@ -199329,8 +187839,6 @@ }, "description": "018, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4231.EG.018", "maps": [], @@ -199363,8 +187871,6 @@ }, "description": "019, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4231.EG.019", "maps": [], @@ -199397,8 +187903,6 @@ }, "description": "020, WC-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4231.EG.020", "maps": [], @@ -199431,8 +187935,6 @@ }, "description": "037, Trafostation XX", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4231.EG.037", "maps": [], @@ -199465,8 +187967,6 @@ }, "description": "038, Trafostation XX", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4231.EG.038", "maps": [], @@ -199499,8 +187999,6 @@ }, "description": "039A, Trafostation XX", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4231.EG.039A", "maps": [], @@ -199533,8 +188031,6 @@ }, "description": "039B, Trafostation XX", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4231.EG.039B", "maps": [], @@ -199567,8 +188063,6 @@ }, "description": "001, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4231.U1.001", "maps": [], @@ -199601,8 +188095,6 @@ }, "description": "002, Kaminkeller", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4231.U1.002", "maps": [], @@ -199635,8 +188127,6 @@ }, "description": "003, Heizzentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4231.U1.003", "maps": [], @@ -199669,8 +188159,6 @@ }, "description": "004, Wasseraufbereitung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4231.U1.004", "maps": [], @@ -199703,8 +188191,6 @@ }, "description": "006, Vorraum mit Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4231.U1.006", "maps": [], @@ -199737,8 +188223,6 @@ }, "description": "009, Neutralisationsanlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4231.U1.009", "maps": [], @@ -199771,8 +188255,6 @@ }, "description": "101, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4232.01.101", "maps": [], @@ -199805,8 +188287,6 @@ }, "description": "102, Bilderarchiv (DIA)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4232.01.102", "maps": [], @@ -199839,8 +188319,6 @@ }, "description": "103, L\u00fcftung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4232.01.103", "maps": [], @@ -199873,8 +188351,6 @@ }, "description": "105, Abluftkammer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4232.01.105", "maps": [], @@ -199907,8 +188383,6 @@ }, "description": "107, Abluftkammer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4232.01.107", "maps": [], @@ -199941,8 +188415,6 @@ }, "description": "108, Probelager / Archiv", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4232.01.108", "maps": [], @@ -199975,8 +188447,6 @@ }, "description": "109, Ger\u00e4telager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4232.01.109", "maps": [], @@ -200009,8 +188479,6 @@ }, "description": "110, Ablufttechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4232.01.110", "maps": [], @@ -200043,8 +188511,6 @@ }, "description": "111, Abluft-S\u00e4urelager-R053/Eierschalenkartons", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4232.01.111", "maps": [], @@ -200077,8 +188543,6 @@ }, "description": "112, Abluft-Raum 054-055-056/ Lagerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4232.01.112", "maps": [], @@ -200111,8 +188575,6 @@ }, "description": "113, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4232.01.113", "maps": [], @@ -200145,8 +188607,6 @@ }, "description": "003, Treppe (Betriebsgeb\u00e4ude)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4232.EG.003", "maps": [], @@ -200179,8 +188639,6 @@ }, "description": "008, Gang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4232.EG.008", "maps": [], @@ -200213,8 +188671,6 @@ }, "description": "012, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4232.EG.012", "maps": [], @@ -200247,8 +188703,6 @@ }, "description": "013, Garderobe-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4232.EG.013", "maps": [], @@ -200281,8 +188735,6 @@ }, "description": "014, Umkleide-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4232.EG.014", "maps": [], @@ -200315,8 +188767,6 @@ }, "description": "015, Waschraum-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4232.EG.015", "maps": [], @@ -200349,8 +188799,6 @@ }, "description": "016, Waschraum-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4232.EG.016", "maps": [], @@ -200383,8 +188831,6 @@ }, "description": "017, Umkleide-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4232.EG.017", "maps": [], @@ -200417,8 +188863,6 @@ }, "description": "018, Garderobe-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4232.EG.018", "maps": [], @@ -200451,8 +188895,6 @@ }, "description": "019, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4232.EG.019", "maps": [], @@ -200485,8 +188927,6 @@ }, "description": "020, Gang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4232.EG.020", "maps": [], @@ -200519,8 +188959,6 @@ }, "description": "021A, Lager/Elektroverteiler UV3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4232.EG.021A", "maps": [], @@ -200553,8 +188991,6 @@ }, "description": "023, Elekrtoverteilung/UV1/Hauptverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4232.EG.023", "maps": [], @@ -200587,8 +189023,6 @@ }, "description": "024, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4232.EG.024", "maps": [], @@ -200621,8 +189055,6 @@ }, "description": "025A, Archiv/ElektroverteilungUV4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4232.EG.025A", "maps": [], @@ -200655,8 +189087,6 @@ }, "description": "029, WC-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4232.EG.029", "maps": [], @@ -200689,8 +189119,6 @@ }, "description": "030, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4232.EG.030", "maps": [], @@ -200723,8 +189151,6 @@ }, "description": "031, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4232.EG.031", "maps": [], @@ -200757,8 +189183,6 @@ }, "description": "032, WC-Damen Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4232.EG.032", "maps": [], @@ -200791,8 +189215,6 @@ }, "description": "033, Garderobe-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4232.EG.033", "maps": [], @@ -200825,8 +189247,6 @@ }, "description": "036b, Elektroverteiler UV5", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4232.EG.036D", "maps": [], @@ -200859,8 +189279,6 @@ }, "description": "K01, Neutraanlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4232.U1.001", "maps": [], @@ -200893,8 +189311,6 @@ }, "description": "1.1, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4234.01.501", "maps": [], @@ -200927,8 +189343,6 @@ }, "description": "1.3, Drucker (gem. Nutzung)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4234.01.503", "maps": [], @@ -200961,8 +189375,6 @@ }, "description": "1.4, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4234.01.504", "maps": [], @@ -200995,8 +189407,6 @@ }, "description": "1.5, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4234.01.505", "maps": [], @@ -201029,8 +189439,6 @@ }, "description": "1.17, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4234.01.517", "maps": [], @@ -201063,8 +189471,6 @@ }, "description": "1.17A, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4234.01.517A", "maps": [], @@ -201097,8 +189503,6 @@ }, "description": "1.18, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4234.01.518", "maps": [], @@ -201131,8 +189535,6 @@ }, "description": "1.19, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4234.01.519", "maps": [], @@ -201165,8 +189567,6 @@ }, "description": "1.23, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4234.01.520", "maps": [], @@ -201199,8 +189599,6 @@ }, "description": "0.2, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4234.EG.502", "maps": [], @@ -201233,8 +189631,6 @@ }, "description": "0.3, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4234.EG.503", "maps": [], @@ -201267,8 +189663,6 @@ }, "description": "0.4, Garderobe-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4234.EG.504", "maps": [], @@ -201301,8 +189695,6 @@ }, "description": "0.5, Waschraum-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4234.EG.505", "maps": [], @@ -201335,8 +189727,6 @@ }, "description": "0.6, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4234.EG.506", "maps": [], @@ -201369,8 +189759,6 @@ }, "description": "0.7, Dusche-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4234.EG.507", "maps": [], @@ -201403,8 +189791,6 @@ }, "description": "0.8, WC-Behinderte", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4234.EG.508", "maps": [], @@ -201437,8 +189823,6 @@ }, "description": "0.9, Dusche-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4234.EG.509", "maps": [], @@ -201471,8 +189855,6 @@ }, "description": "0.10, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4234.EG.510", "maps": [], @@ -201505,8 +189887,6 @@ }, "description": "0.11, Waschraum-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4234.EG.511", "maps": [], @@ -201539,8 +189919,6 @@ }, "description": "0.12, Garderobe-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4234.EG.512", "maps": [], @@ -201573,8 +189951,6 @@ }, "description": "0.22, E-Verteilung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4234.EG.522", "maps": [], @@ -201607,8 +189983,6 @@ }, "description": "0.22a, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4234.EG.522A", "maps": [], @@ -201641,8 +190015,6 @@ }, "description": "0.23, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4234.EG.523", "maps": [], @@ -201675,8 +190047,6 @@ }, "description": "0.23a, Flur (Aufzug)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4234.EG.523A", "maps": [], @@ -201709,8 +190079,6 @@ }, "description": "0.24, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4234.EG.524", "maps": [], @@ -201743,8 +190111,6 @@ }, "description": "0.1, Eingangshalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4234.EG.527", "maps": [], @@ -201777,8 +190143,6 @@ }, "description": "-1.1, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4234.U1.501", "maps": [], @@ -201811,8 +190175,6 @@ }, "description": "-1.10, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4234.U1.510", "maps": [], @@ -201845,8 +190207,6 @@ }, "description": "-1.11, Aufzugs- und F\u00f6rdermaschinen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4234.U1.511", "maps": [], @@ -201879,8 +190239,6 @@ }, "description": "-1.12, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4234.U1.512", "maps": [], @@ -201913,8 +190271,6 @@ }, "description": "-1.17, Heizung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4234.U1.516", "maps": [], @@ -201947,8 +190303,6 @@ }, "description": "-1.16, Haushaltsanschlussraum / Mitbenutzung von G", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4234.U1.517", "maps": [], @@ -201981,8 +190335,6 @@ }, "description": "-1.18, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4234.U1.518", "maps": [], @@ -202015,8 +190367,6 @@ }, "description": "-1.19, K\u00e4ltemaschine", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4234.U1.519", "maps": [], @@ -202049,8 +190399,6 @@ }, "description": "-1.21, Reinwasseraufbereitung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4234.U1.521", "maps": [], @@ -202083,8 +190431,6 @@ }, "description": "-1.22, Druckluftanlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4234.U1.522", "maps": [], @@ -202117,8 +190463,6 @@ }, "description": "-1.23, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4234.U1.523", "maps": [], @@ -202151,8 +190495,6 @@ }, "description": "-1.13, Kellerflur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4234.U1.530", "maps": [], @@ -202185,8 +190527,6 @@ }, "description": "2.1, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4235.01.601", "maps": [], @@ -202219,8 +190559,6 @@ }, "description": "2.3, Garderobe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4235.01.603", "maps": [], @@ -202253,8 +190591,6 @@ }, "description": "2.4, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4235.01.604", "maps": [], @@ -202287,8 +190623,6 @@ }, "description": "2.5, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4235.01.605", "maps": [], @@ -202321,8 +190655,6 @@ }, "description": "2.16, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4235.01.616", "maps": [], @@ -202355,8 +190687,6 @@ }, "description": "2.17, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4235.01.617", "maps": [], @@ -202389,8 +190719,6 @@ }, "description": "2.18, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4235.01.618", "maps": [], @@ -202423,8 +190751,6 @@ }, "description": "2.20, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4235.01.619", "maps": [], @@ -202457,8 +190783,6 @@ }, "description": "1.1, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4235.EG.601", "maps": [], @@ -202491,8 +190815,6 @@ }, "description": "1.2, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4235.EG.602", "maps": [], @@ -202525,8 +190847,6 @@ }, "description": "1.3, Garderobe Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4235.EG.603", "maps": [], @@ -202559,8 +190879,6 @@ }, "description": "1.4, Waschraum-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4235.EG.604", "maps": [], @@ -202593,8 +190911,6 @@ }, "description": "1.5, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4235.EG.605", "maps": [], @@ -202627,8 +190943,6 @@ }, "description": "1.6, Dusche-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4235.EG.606", "maps": [], @@ -202661,8 +190975,6 @@ }, "description": "1.7, WC-Behinderte", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4235.EG.607", "maps": [], @@ -202695,8 +191007,6 @@ }, "description": "1.8, Waschraum-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4235.EG.608", "maps": [], @@ -202729,8 +191039,6 @@ }, "description": "1.9, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4235.EG.609", "maps": [], @@ -202763,8 +191071,6 @@ }, "description": "1.10, Dusche-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4235.EG.610", "maps": [], @@ -202797,8 +191103,6 @@ }, "description": "1.11, Garderobe Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4235.EG.611", "maps": [], @@ -202831,8 +191135,6 @@ }, "description": "1.20, E-Verteilung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4235.EG.620", "maps": [], @@ -202865,8 +191167,6 @@ }, "description": "1.20a, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4235.EG.620A", "maps": [], @@ -202899,8 +191199,6 @@ }, "description": "1.21, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4235.EG.621", "maps": [], @@ -202933,8 +191231,6 @@ }, "description": "1.21a, Flur (Aufzug)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4235.EG.621A", "maps": [], @@ -202967,8 +191263,6 @@ }, "description": "1.22, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4235.EG.622", "maps": [], @@ -203001,8 +191295,6 @@ }, "description": "1.23, Arbeitsverbinder", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4235.EG.623", "maps": [], @@ -203035,8 +191327,6 @@ }, "description": "Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4235.EG.624", "maps": [], @@ -203069,8 +191359,6 @@ }, "description": "0.1, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4235.U1.602", "maps": [], @@ -203103,8 +191391,6 @@ }, "description": "0.3, Garderobe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4235.U1.603", "maps": [], @@ -203137,8 +191423,6 @@ }, "description": "0.4, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4235.U1.604", "maps": [], @@ -203171,8 +191455,6 @@ }, "description": "0.5, WC-Behinderte", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4235.U1.605", "maps": [], @@ -203205,8 +191487,6 @@ }, "description": "0.8, Elektroverteilung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4235.U1.605A", "maps": [], @@ -203239,8 +191519,6 @@ }, "description": "0.6, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4235.U1.606", "maps": [], @@ -203273,8 +191551,6 @@ }, "description": "0.8a, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4235.U1.608", "maps": [], @@ -203307,8 +191583,6 @@ }, "description": "0.9, Aufzugs- und F\u00f6rdermaschinen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4235.U1.609", "maps": [], @@ -203341,8 +191615,6 @@ }, "description": "0.10, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4235.U1.610", "maps": [], @@ -203375,8 +191647,6 @@ }, "description": "0.11, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4235.U1.611", "maps": [], @@ -203409,8 +191679,6 @@ }, "description": "0.12, Lager/Archiv", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4235.U1.612", "maps": [], @@ -203443,8 +191711,6 @@ }, "description": "0.14, Technikraum K\u00e4lte", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4235.U1.614", "maps": [], @@ -203477,8 +191743,6 @@ }, "description": "0.20, Maschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4235.U1.620", "maps": [], @@ -203511,8 +191775,6 @@ }, "description": "0.22a, Verbindungsgang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4235.U1.623", "maps": [], @@ -203545,8 +191807,6 @@ }, "description": "0.23, Trafostation XXI", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4235.U1.624", "maps": [], @@ -203579,8 +191839,6 @@ }, "description": "0.24, Trafostation XXI", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4235.U1.625", "maps": [], @@ -203613,8 +191871,6 @@ }, "description": "0.25a, Trafostation XXI", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4235.U1.626", "maps": [], @@ -203647,8 +191903,6 @@ }, "description": "0.25b, Trafostation XXI", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4235.U1.627", "maps": [], @@ -203681,8 +191935,6 @@ }, "description": "Treibstofflager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4237.U1.629", "maps": [], @@ -203715,8 +191967,6 @@ }, "description": "O-01, Schulungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4238.01.001", "maps": [], @@ -203749,8 +191999,6 @@ }, "description": "O, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4238.01.001A", "maps": [], @@ -203783,8 +192031,6 @@ }, "description": "O, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4238.01.001B", "maps": [], @@ -203817,8 +192063,6 @@ }, "description": "O-02, Lehrmittel", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4238.01.002", "maps": [], @@ -203851,8 +192095,6 @@ }, "description": "O-03, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4238.01.003", "maps": [], @@ -203885,8 +192127,6 @@ }, "description": "O-04, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4238.01.004", "maps": [], @@ -203919,8 +192159,6 @@ }, "description": "O-05, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4238.01.005", "maps": [], @@ -203953,8 +192191,6 @@ }, "description": "O-06, Kleiderkammer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4238.01.006", "maps": [], @@ -203987,8 +192223,6 @@ }, "description": "O-07, Ersatzteillager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4238.01.007", "maps": [], @@ -204021,8 +192255,6 @@ }, "description": "E-01, Atemschutz-Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4238.EG.001", "maps": [], @@ -204055,8 +192287,6 @@ }, "description": "E-02, Umkleide/Dusche-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4238.EG.002", "maps": [], @@ -204089,8 +192319,6 @@ }, "description": "E-03, Umkleide/Dusche-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4238.EG.003", "maps": [], @@ -204123,8 +192351,6 @@ }, "description": "E-04, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4238.EG.004", "maps": [], @@ -204157,8 +192383,6 @@ }, "description": "E-05, W\u00e4scheraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4238.EG.005", "maps": [], @@ -204191,8 +192415,6 @@ }, "description": "E-06, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4238.EG.006", "maps": [], @@ -204225,8 +192447,6 @@ }, "description": "E-07, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4238.EG.007", "maps": [], @@ -204259,8 +192479,6 @@ }, "description": "E-08, Leitstelle/Funkraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4238.EG.008", "maps": [], @@ -204293,8 +192511,6 @@ }, "description": "E-10, Aufenthaltsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4238.EG.010", "maps": [], @@ -204327,8 +192543,6 @@ }, "description": "Flur Eingang Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4238.EG.010A", "maps": [], @@ -204361,8 +192575,6 @@ }, "description": "E-11, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4238.EG.011", "maps": [], @@ -204395,8 +192607,6 @@ }, "description": "E-12, Technik/L\u00fcftung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4238.EG.012", "maps": [], @@ -204429,8 +192639,6 @@ }, "description": "E-13, Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4238.EG.013", "maps": [], @@ -204463,8 +192671,6 @@ }, "description": "E-14, Treibstofflager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4238.EG.014", "maps": [], @@ -204497,8 +192703,6 @@ }, "description": "E-15, Feuerwehrfahrzeughalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4238.EG.015", "maps": [], @@ -204531,8 +192735,6 @@ }, "description": "E-15, Wagenhalle/Wagengrube/Stellplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4238.EG.016", "maps": [], @@ -204565,8 +192767,6 @@ }, "description": "E-15a, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4238.EG.017", "maps": [], @@ -204599,8 +192799,6 @@ }, "description": "003, Maschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4239.U1.003", "maps": [], @@ -204633,8 +192831,6 @@ }, "description": "004, Heizung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4239.U1.004", "maps": [], @@ -204667,8 +192863,6 @@ }, "description": "2.01, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4254.01.001", "maps": [], @@ -204701,8 +192895,6 @@ }, "description": "2.02, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4254.01.002", "maps": [], @@ -204735,8 +192927,6 @@ }, "description": "2.03, Wachdienstb\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4254.01.003", "maps": [], @@ -204769,8 +192959,6 @@ }, "description": "2.04, B\u00fcro Reinigungsfirma", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4254.01.004", "maps": [], @@ -204803,8 +192991,6 @@ }, "description": "2.05, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4254.01.005", "maps": [], @@ -204837,8 +193023,6 @@ }, "description": "2.10, Treppe 1.OG-2.OG", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4254.01.006", "maps": [], @@ -204871,8 +193055,6 @@ }, "description": "2.06, Garderobe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4254.01.007", "maps": [], @@ -204905,8 +193087,6 @@ }, "description": "2.09, B\u00fcro Brandschutz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4254.01.009", "maps": [], @@ -204939,8 +193119,6 @@ }, "description": "001, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4254.02.001", "maps": [], @@ -204973,8 +193151,6 @@ }, "description": "3.03, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4254.02.002", "maps": [], @@ -205007,8 +193183,6 @@ }, "description": "1.01, Flur Eingang West", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4254.EG.001", "maps": [], @@ -205041,8 +193215,6 @@ }, "description": "1.02, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4254.EG.002", "maps": [], @@ -205075,8 +193247,6 @@ }, "description": "1.08, Lagerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4254.EG.008", "maps": [], @@ -205109,8 +193279,6 @@ }, "description": "1.09, Lagerraum Reinigungschemie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4254.EG.009", "maps": [], @@ -205143,8 +193311,6 @@ }, "description": "1.09a, Lagerraum MSR", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4254.EG.009A", "maps": [], @@ -205177,8 +193343,6 @@ }, "description": "1.10, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4254.EG.010", "maps": [], @@ -205211,8 +193375,6 @@ }, "description": "1.12, Flur Eingang Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4254.EG.011", "maps": [], @@ -205245,8 +193407,6 @@ }, "description": "1.11, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4254.EG.012", "maps": [], @@ -205279,8 +193439,6 @@ }, "description": "1.13, Lager MSR", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4254.EG.013", "maps": [], @@ -205313,8 +193471,6 @@ }, "description": "1.14, Lager Reinigungsmaschinen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4254.EG.014", "maps": [], @@ -205347,8 +193503,6 @@ }, "description": "1.15, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4254.EG.015", "maps": [], @@ -205381,8 +193535,6 @@ }, "description": "1.16, Lager M\u00f6bel", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4254.EG.016", "maps": [], @@ -205415,8 +193567,6 @@ }, "description": "1.17, Probenlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4254.EG.017", "maps": [], @@ -205449,8 +193599,6 @@ }, "description": "1.18, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4254.EG.018", "maps": [], @@ -205483,8 +193631,6 @@ }, "description": "1.18, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4254.EG.019", "maps": [], @@ -205517,8 +193663,6 @@ }, "description": "1.20, Flur Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4254.EG.022", "maps": [], @@ -205551,8 +193695,6 @@ }, "description": "-1.01, Kellertreppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4254.U1.001", "maps": [], @@ -205585,8 +193727,6 @@ }, "description": "-1.04, Heizungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4254.U1.003", "maps": [], @@ -205619,8 +193759,6 @@ }, "description": "-1.03, Keller", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4254.U1.004", "maps": [], @@ -205653,8 +193791,6 @@ }, "description": "-1.02, Keller", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4254.U1.005", "maps": [], @@ -205687,8 +193823,6 @@ }, "description": "-1.05, Heiz\u00f6llager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4254.U1.006", "maps": [], @@ -205721,8 +193855,6 @@ }, "description": "001, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4259.EG.001", "maps": [], @@ -205755,8 +193887,6 @@ }, "description": "002, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4259.EG.002", "maps": [], @@ -205789,8 +193919,6 @@ }, "description": "2.05, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4264.01.008", "maps": [], @@ -205823,8 +193951,6 @@ }, "description": "2.05a, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4264.01.009", "maps": [], @@ -205857,8 +193983,6 @@ }, "description": "2.04, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4264.01.010", "maps": [], @@ -205891,8 +194015,6 @@ }, "description": "2.01, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4264.01.011", "maps": [], @@ -205925,8 +194047,6 @@ }, "description": "2.01a, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4264.01.012", "maps": [], @@ -205959,8 +194079,6 @@ }, "description": "3.03, Speicher", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4264.02.001", "maps": [], @@ -205993,8 +194111,6 @@ }, "description": "3.02, Speicher", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4264.02.002", "maps": [], @@ -206027,8 +194143,6 @@ }, "description": "3.04, Speicher", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4264.02.004", "maps": [], @@ -206061,8 +194175,6 @@ }, "description": "3.05, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4264.02.005", "maps": [], @@ -206095,8 +194207,6 @@ }, "description": "3.05a, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4264.02.006", "maps": [], @@ -206129,8 +194239,6 @@ }, "description": "3.06a, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4264.02.007", "maps": [], @@ -206163,8 +194271,6 @@ }, "description": "3.06, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4264.02.008", "maps": [], @@ -206197,8 +194303,6 @@ }, "description": "1.05, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4264.EG.005", "maps": [], @@ -206231,8 +194335,6 @@ }, "description": "1.05a, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4264.EG.006", "maps": [], @@ -206265,8 +194367,6 @@ }, "description": "1.08, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4264.EG.007", "maps": [], @@ -206299,8 +194399,6 @@ }, "description": "1.04, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4264.EG.008", "maps": [], @@ -206333,8 +194431,6 @@ }, "description": "1.01, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4264.EG.009", "maps": [], @@ -206367,8 +194463,6 @@ }, "description": "1.01a, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4264.EG.010", "maps": [], @@ -206401,8 +194495,6 @@ }, "description": "-1.06, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4264.U1.007", "maps": [], @@ -206435,8 +194527,6 @@ }, "description": "-1.01, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4264.U1.010", "maps": [], @@ -206469,8 +194559,6 @@ }, "description": "-1.01a, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4264.U1.011", "maps": [], @@ -206503,8 +194591,6 @@ }, "description": "-1.06a, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4264.U1.012", "maps": [], @@ -206537,8 +194623,6 @@ }, "description": "001, Feuerwehrfahrzeughalle und Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4267.EG.001", "maps": [], @@ -206571,8 +194655,6 @@ }, "description": "002, L\u00fcftung/Heizung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4267.EG.002", "maps": [], @@ -206605,8 +194687,6 @@ }, "description": "003, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4267.EG.003", "maps": [], @@ -206639,8 +194719,6 @@ }, "description": "004, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4267.EG.004", "maps": [], @@ -206673,8 +194751,6 @@ }, "description": "1.3.1.7.1, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4277.01.005", "maps": [], @@ -206707,8 +194783,6 @@ }, "description": "1.3.1.23.1, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4277.01.014", "maps": [], @@ -206741,8 +194815,6 @@ }, "description": "1.3.1.23.2, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4277.01.014A", "maps": [], @@ -206775,8 +194847,6 @@ }, "description": "2.3.1.22, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4277.01.027", "maps": [], @@ -206809,8 +194879,6 @@ }, "description": "2.3.1.20, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4277.01.029", "maps": [], @@ -206843,8 +194911,6 @@ }, "description": "2.3.1.18, WC-Behinderte", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4277.01.030", "maps": [], @@ -206877,8 +194943,6 @@ }, "description": "2.3.1.16, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4277.01.032", "maps": [], @@ -206911,8 +194975,6 @@ }, "description": "2.3.1.23, Halle Finger 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4277.01.033", "maps": [], @@ -206945,8 +195007,6 @@ }, "description": "2.3.1.23.1, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4277.01.033A", "maps": [], @@ -206979,8 +195039,6 @@ }, "description": "2.3.1.23.2, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4277.01.033B", "maps": [], @@ -207013,8 +195071,6 @@ }, "description": "2.3.1.23.3, Aufzug Finger 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4277.01.034", "maps": [], @@ -207047,8 +195103,6 @@ }, "description": "2.3.1.14, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4277.01.035", "maps": [], @@ -207081,8 +195135,6 @@ }, "description": "2.3.1.12, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4277.01.036", "maps": [], @@ -207115,8 +195167,6 @@ }, "description": "2.3.1.17, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4277.01.042", "maps": [], @@ -207149,8 +195199,6 @@ }, "description": "2.3.1.23.4, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4277.01.051", "maps": [], @@ -207183,8 +195231,6 @@ }, "description": "2.2.1.28.2, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4277.01.052", "maps": [], @@ -207217,8 +195263,6 @@ }, "description": "2.2.1.28.4, Br\u00fccke II West (4277/4278)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4277.01.052A", "maps": [], @@ -207251,8 +195295,6 @@ }, "description": "2.2.1.28, Halle Finger 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4277.01.053", "maps": [], @@ -207285,8 +195327,6 @@ }, "description": "2.2.1.28.1, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4277.01.053A", "maps": [], @@ -207319,8 +195359,6 @@ }, "description": "1.2.1.27.1, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4277.01.060", "maps": [], @@ -207353,8 +195391,6 @@ }, "description": "1.2.1.27, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4277.01.068", "maps": [], @@ -207387,8 +195423,6 @@ }, "description": "1.2.1.27.2, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4277.01.068A", "maps": [], @@ -207421,8 +195455,6 @@ }, "description": "2.2.1.26, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4277.01.082", "maps": [], @@ -207455,8 +195487,6 @@ }, "description": "2.2.1.24, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4277.01.084", "maps": [], @@ -207489,8 +195519,6 @@ }, "description": "2.2.1.22, WC-Behinderte", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4277.01.085", "maps": [], @@ -207523,8 +195551,6 @@ }, "description": "2.2.1.20, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4277.01.087", "maps": [], @@ -207557,8 +195583,6 @@ }, "description": "2.2.1.28.3, Aufzug Finger 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4277.01.088", "maps": [], @@ -207591,8 +195615,6 @@ }, "description": "2.2.1.16, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4277.01.089", "maps": [], @@ -207625,8 +195647,6 @@ }, "description": "2.2.1.14, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4277.01.090", "maps": [], @@ -207659,8 +195679,6 @@ }, "description": "2.2.1.17, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4277.01.097", "maps": [], @@ -207693,8 +195711,6 @@ }, "description": "2.2.1.28.5, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4277.01.106", "maps": [], @@ -207727,8 +195743,6 @@ }, "description": "2.1.1.29, Halle Finger 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4277.01.107", "maps": [], @@ -207761,8 +195775,6 @@ }, "description": "2.1.1.29.1, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4277.01.107A", "maps": [], @@ -207795,8 +195807,6 @@ }, "description": "2.1.1.29.2, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4277.01.107B", "maps": [], @@ -207829,8 +195839,6 @@ }, "description": "2.1.1.29.4, Br\u00fccke I Ost (4277/4278)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4277.01.107C", "maps": [], @@ -207863,8 +195871,6 @@ }, "description": "1.1.1.25.1, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4277.01.115", "maps": [], @@ -207897,8 +195903,6 @@ }, "description": "1.1.1.25, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4277.01.120", "maps": [], @@ -207931,8 +195935,6 @@ }, "description": "1.1.1.25.1, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4277.01.120A", "maps": [], @@ -207965,8 +195967,6 @@ }, "description": "2.1.1.28, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4277.01.133", "maps": [], @@ -207999,8 +195999,6 @@ }, "description": "2.1.1.26, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4277.01.135", "maps": [], @@ -208033,8 +196031,6 @@ }, "description": "2.1.1.24, WC-Behinderte", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4277.01.136", "maps": [], @@ -208067,8 +196063,6 @@ }, "description": "2.1.1.22, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4277.01.138", "maps": [], @@ -208101,8 +196095,6 @@ }, "description": "2.1.1.29.3, Aufzug Finger 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4277.01.139", "maps": [], @@ -208135,8 +196127,6 @@ }, "description": "2.1.1.20, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4277.01.140", "maps": [], @@ -208169,8 +196159,6 @@ }, "description": "2.1.1.18, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4277.01.141", "maps": [], @@ -208203,8 +196191,6 @@ }, "description": "2.1.1.15, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4277.01.142", "maps": [], @@ -208237,8 +196223,6 @@ }, "description": "2.1.1.29.5, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4277.01.152", "maps": [], @@ -208271,8 +196255,6 @@ }, "description": "2.0.1.22, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4277.01.153", "maps": [], @@ -208305,8 +196287,6 @@ }, "description": "2.0.1.1.1, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4277.01.164", "maps": [], @@ -208339,8 +196319,6 @@ }, "description": "2.0.1.1.2, Aufzug Labor Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4277.01.165", "maps": [], @@ -208373,8 +196351,6 @@ }, "description": "2.0.1.1.3, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4277.01.166", "maps": [], @@ -208407,8 +196383,6 @@ }, "description": "2.0.1.17, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4277.01.175", "maps": [], @@ -208441,8 +196415,6 @@ }, "description": "2.1.1.29.5, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4277.01.182", "maps": [], @@ -208475,8 +196447,6 @@ }, "description": "1.3.2.0, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4277.02.008", "maps": [], @@ -208509,8 +196479,6 @@ }, "description": "1.3.2.16, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4277.02.016", "maps": [], @@ -208543,8 +196511,6 @@ }, "description": "1.3.2.16.1, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4277.02.016A", "maps": [], @@ -208577,8 +196543,6 @@ }, "description": "2.3.2.28, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4277.02.017", "maps": [], @@ -208611,8 +196575,6 @@ }, "description": "2.3.2.28.1, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4277.02.017A", "maps": [], @@ -208645,8 +196607,6 @@ }, "description": "2.3.2.28.2, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4277.02.017B", "maps": [], @@ -208679,8 +196639,6 @@ }, "description": "2.3.2.26, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4277.02.018", "maps": [], @@ -208713,8 +196671,6 @@ }, "description": "2.3.2.24, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4277.02.020", "maps": [], @@ -208747,8 +196703,6 @@ }, "description": "2.3.2.22, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4277.02.021", "maps": [], @@ -208781,8 +196735,6 @@ }, "description": "2.3.2.20, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4277.02.023", "maps": [], @@ -208815,8 +196767,6 @@ }, "description": "2.3.2.28.3, Aufzug Finger 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4277.02.024", "maps": [], @@ -208849,8 +196799,6 @@ }, "description": "2.3.2.18, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4277.02.025", "maps": [], @@ -208883,8 +196831,6 @@ }, "description": "2.3.2.16, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4277.02.026", "maps": [], @@ -208917,8 +196863,6 @@ }, "description": "2.3.2.15, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4277.02.034", "maps": [], @@ -208951,8 +196895,6 @@ }, "description": "2.3.2.18.1, Flur Labor 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4277.02.042", "maps": [], @@ -208985,8 +196927,6 @@ }, "description": "2.2.2.28, Halle / Flur Finger 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4277.02.043", "maps": [], @@ -209019,8 +196959,6 @@ }, "description": "2.2.2.28.1, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4277.02.043A", "maps": [], @@ -209053,8 +196991,6 @@ }, "description": "2.2.2.28.2, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4277.02.043B", "maps": [], @@ -209087,8 +197023,6 @@ }, "description": "1.2.2.12.1, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4277.02.050", "maps": [], @@ -209121,8 +197055,6 @@ }, "description": "1.2.2.12, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4277.02.056", "maps": [], @@ -209155,8 +197087,6 @@ }, "description": "1.2.2.12.2, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4277.02.056A", "maps": [], @@ -209189,8 +197119,6 @@ }, "description": "2.2.2.26, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4277.02.057", "maps": [], @@ -209223,8 +197151,6 @@ }, "description": "2.2.2.24, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4277.02.059", "maps": [], @@ -209257,8 +197183,6 @@ }, "description": "2.2.2.22, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4277.02.060", "maps": [], @@ -209291,8 +197215,6 @@ }, "description": "2.2.2.20, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4277.02.062", "maps": [], @@ -209325,8 +197247,6 @@ }, "description": "2.2.2.28.3, Aufzug Finger 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4277.02.063", "maps": [], @@ -209359,8 +197279,6 @@ }, "description": "2.2.2.18, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4277.02.064", "maps": [], @@ -209393,8 +197311,6 @@ }, "description": "2.2.2.16, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4277.02.065", "maps": [], @@ -209427,8 +197343,6 @@ }, "description": "2.2.2.21, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4277.02.083", "maps": [], @@ -209461,8 +197375,6 @@ }, "description": "2.2.2.28.4, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4277.02.084", "maps": [], @@ -209495,8 +197407,6 @@ }, "description": "2.1.2.23, Halle / Flur Finger 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4277.02.085", "maps": [], @@ -209529,8 +197439,6 @@ }, "description": "2.1.2.23.1, Finger 1 Knoten Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4277.02.085A", "maps": [], @@ -209563,8 +197471,6 @@ }, "description": "2.1.2.23.2, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4277.02.085B", "maps": [], @@ -209597,8 +197503,6 @@ }, "description": "1.1.2.12.1, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4277.02.091", "maps": [], @@ -209631,8 +197535,6 @@ }, "description": "1.1.2.12, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4277.02.098", "maps": [], @@ -209665,8 +197567,6 @@ }, "description": "1.1.2.12.2, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4277.02.098A", "maps": [], @@ -209699,8 +197599,6 @@ }, "description": "2.1.2.22, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4277.02.099", "maps": [], @@ -209733,8 +197631,6 @@ }, "description": "2.1.2.20, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4277.02.101", "maps": [], @@ -209767,8 +197663,6 @@ }, "description": "2.1.2.18, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4277.02.102", "maps": [], @@ -209801,8 +197695,6 @@ }, "description": "2.1.2.16, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4277.02.104", "maps": [], @@ -209835,8 +197727,6 @@ }, "description": "2.1.2.23.3, Aufzug Finger 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4277.02.105", "maps": [], @@ -209869,8 +197759,6 @@ }, "description": "2.1.2.14, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4277.02.106", "maps": [], @@ -209903,8 +197791,6 @@ }, "description": "2.1.2.12, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4277.02.107", "maps": [], @@ -209937,8 +197823,6 @@ }, "description": "2.1.2.23, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4277.02.108", "maps": [], @@ -209971,8 +197855,6 @@ }, "description": "2.0.2.22, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4277.02.115", "maps": [], @@ -210005,8 +197887,6 @@ }, "description": "2.0.2.8, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4277.02.116", "maps": [], @@ -210039,8 +197919,6 @@ }, "description": "2.0.2.22.2, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4277.02.120", "maps": [], @@ -210073,8 +197951,6 @@ }, "description": "2.0.2.22.3, Aufzug Labor Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4277.02.121", "maps": [], @@ -210107,8 +197983,6 @@ }, "description": "2.0.2.22.4, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4277.02.122", "maps": [], @@ -210141,8 +198015,6 @@ }, "description": "2.0.2.21, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4277.02.133", "maps": [], @@ -210175,8 +198047,6 @@ }, "description": "2.0.2.22.1, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4277.02.144", "maps": [], @@ -210209,8 +198079,6 @@ }, "description": "2.3.3.2, Raumlufttechnische Anlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4277.03.001", "maps": [], @@ -210243,8 +198111,6 @@ }, "description": "2.3.3.3, Aufzugs- und F\u00f6rdermaschinen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4277.03.002", "maps": [], @@ -210277,8 +198143,6 @@ }, "description": "2.3.3.1, Raumlufttechnische Anlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4277.03.004", "maps": [], @@ -210311,8 +198175,6 @@ }, "description": "2.3.3.4, Raumlufttechnische Anlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4277.03.005", "maps": [], @@ -210345,8 +198207,6 @@ }, "description": "2.2.3.2, Raumlufttechnische Anlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4277.03.006", "maps": [], @@ -210379,8 +198239,6 @@ }, "description": "2.2.3.3, Aufzugs- und F\u00f6rdermaschinen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4277.03.007", "maps": [], @@ -210413,8 +198271,6 @@ }, "description": "2.2.3.1, Raumlufttechnische Anlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4277.03.009", "maps": [], @@ -210447,8 +198303,6 @@ }, "description": "2.1.3.2, Raumlufttechnische Anlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4277.03.010", "maps": [], @@ -210481,8 +198335,6 @@ }, "description": "2.1.3.3, Aufzugs- und F\u00f6rdermaschinen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4277.03.011", "maps": [], @@ -210515,8 +198367,6 @@ }, "description": "2.1.3.1, Raumlufttechnische Anlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4277.03.013", "maps": [], @@ -210549,8 +198399,6 @@ }, "description": "2.1.3.4, Raumlufttechnische Anlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4277.03.014", "maps": [], @@ -210583,8 +198431,6 @@ }, "description": "2.1.3, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4277.03.015", "maps": [], @@ -210617,8 +198463,6 @@ }, "description": "2.0.3.1, Raumlufttechnische Anlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4277.03.016", "maps": [], @@ -210651,8 +198495,6 @@ }, "description": "2.1.3.1, Raumlufttechnische Anlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4277.03.016A", "maps": [], @@ -210685,8 +198527,6 @@ }, "description": "2.1.3, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4277.03.017", "maps": [], @@ -210719,8 +198559,6 @@ }, "description": "2.1.3.1, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4277.03.018", "maps": [], @@ -210753,8 +198591,6 @@ }, "description": "2.1.3.2, Aufzugs- und F\u00f6rdermaschinen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4277.03.019", "maps": [], @@ -210787,8 +198623,6 @@ }, "description": "1.3.EG.1, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4277.EG.006", "maps": [], @@ -210821,8 +198655,6 @@ }, "description": "1.3.EG, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4277.EG.013", "maps": [], @@ -210855,8 +198687,6 @@ }, "description": "1.3.EG.1.2, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4277.EG.013A", "maps": [], @@ -210889,8 +198719,6 @@ }, "description": "2.3.EG16, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4277.EG.025", "maps": [], @@ -210923,8 +198751,6 @@ }, "description": "2.3.EG14, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4277.EG.027", "maps": [], @@ -210957,8 +198783,6 @@ }, "description": "2.3.EG12, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4277.EG.028", "maps": [], @@ -210991,8 +198815,6 @@ }, "description": "2.3.EG10, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4277.EG.030", "maps": [], @@ -211025,8 +198847,6 @@ }, "description": "2.3.EG, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4277.EG.031", "maps": [], @@ -211059,8 +198879,6 @@ }, "description": "2.3.EG.1, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4277.EG.031A", "maps": [], @@ -211093,8 +198911,6 @@ }, "description": "2.3.EG.2, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4277.EG.031B", "maps": [], @@ -211127,8 +198943,6 @@ }, "description": "2.3.EG.4, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4277.EG.031C", "maps": [], @@ -211161,8 +198975,6 @@ }, "description": "2.3.EG, Aufzug Finger 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4277.EG.032", "maps": [], @@ -211195,8 +199007,6 @@ }, "description": "2.3.EG8, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4277.EG.033", "maps": [], @@ -211229,8 +199039,6 @@ }, "description": "2.3.EG6, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4277.EG.034", "maps": [], @@ -211263,8 +199071,6 @@ }, "description": "2.3.EG4, 40%LWF - Cafeteria", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4277.EG.035", "maps": [], @@ -211297,8 +199103,6 @@ }, "description": "2.3.EG.3, Windfang Westeingang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4277.EG.037", "maps": [], @@ -211331,8 +199135,6 @@ }, "description": "2.2.EG/2.3.EG, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4277.EG.038", "maps": [], @@ -211365,8 +199167,6 @@ }, "description": "2.2.EG, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4277.EG.039", "maps": [], @@ -211399,8 +199199,6 @@ }, "description": "2.2.EG.1, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4277.EG.039A", "maps": [], @@ -211433,8 +199231,6 @@ }, "description": "2.2.EG.2, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4277.EG.039B", "maps": [], @@ -211467,8 +199263,6 @@ }, "description": "1.2.EG1.1, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4277.EG.044", "maps": [], @@ -211501,8 +199295,6 @@ }, "description": "1.2.EG.1.2, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4277.EG.044A", "maps": [], @@ -211535,8 +199327,6 @@ }, "description": "1.2.EG, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4277.EG.052", "maps": [], @@ -211569,8 +199359,6 @@ }, "description": "2.2.EG16, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4277.EG.064", "maps": [], @@ -211603,8 +199391,6 @@ }, "description": "2.2.EG14, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4277.EG.066", "maps": [], @@ -211637,8 +199423,6 @@ }, "description": "2.2.EG12, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4277.EG.067", "maps": [], @@ -211671,8 +199455,6 @@ }, "description": "2.2.EG10, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4277.EG.069", "maps": [], @@ -211705,8 +199487,6 @@ }, "description": "2.2.EG.3, Aufzug Finger 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4277.EG.070", "maps": [], @@ -211739,8 +199519,6 @@ }, "description": "2.2.EG8, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4277.EG.071", "maps": [], @@ -211773,8 +199551,6 @@ }, "description": "2.2.EG6, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4277.EG.072", "maps": [], @@ -211913,8 +199689,6 @@ }, "description": "2.1.EG, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4277.EG.075", "maps": [], @@ -211947,8 +199721,6 @@ }, "description": "2.1.EG1, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4277.EG.075A", "maps": [], @@ -211981,8 +199753,6 @@ }, "description": "2.1.EG2, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4277.EG.075B", "maps": [], @@ -212015,8 +199785,6 @@ }, "description": "2.1.EG2.1, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4277.EG.075E", "maps": [], @@ -212049,8 +199817,6 @@ }, "description": "1.1.EG1.1, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4277.EG.078", "maps": [], @@ -212083,8 +199849,6 @@ }, "description": "1.1.EG, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4277.EG.086", "maps": [], @@ -212117,8 +199881,6 @@ }, "description": "1.1.EG.1.2, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4277.EG.086A", "maps": [], @@ -212151,8 +199913,6 @@ }, "description": "2.1.EG18, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4277.EG.098", "maps": [], @@ -212185,8 +199945,6 @@ }, "description": "2.1.EG16, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4277.EG.100", "maps": [], @@ -212219,8 +199977,6 @@ }, "description": "2.1.EG14, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4277.EG.101", "maps": [], @@ -212253,8 +200009,6 @@ }, "description": "2.1.EG8, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4277.EG.103", "maps": [], @@ -212287,8 +200041,6 @@ }, "description": "2.1.EG, Aufzug Finger 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4277.EG.104", "maps": [], @@ -212321,8 +200073,6 @@ }, "description": "2.1.EG10, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4277.EG.105", "maps": [], @@ -212355,8 +200105,6 @@ }, "description": "2.1.EG8, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4277.EG.106", "maps": [], @@ -212495,8 +200243,6 @@ }, "description": "2.1.EG, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4277.EG.110", "maps": [], @@ -212529,8 +200275,6 @@ }, "description": "2.1.EG, Haupteingang Windfang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4277.EG.111", "maps": [], @@ -212563,8 +200307,6 @@ }, "description": "2.1.EG1, Pf\u00f6rtnerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4277.EG.112", "maps": [], @@ -212597,8 +200339,6 @@ }, "description": "2.1EG1.1, Ruheraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4277.EG.113", "maps": [], @@ -212631,8 +200371,6 @@ }, "description": "2.0.EG, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4277.EG.114", "maps": [], @@ -212665,8 +200403,6 @@ }, "description": "2.0.EG, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4277.EG.115", "maps": [], @@ -212699,8 +200435,6 @@ }, "description": "2.0.EG1.1, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4277.EG.117", "maps": [], @@ -212733,8 +200467,6 @@ }, "description": "2.0.EG, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4277.EG.118", "maps": [], @@ -212767,8 +200499,6 @@ }, "description": "2.0.EG1.3, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4277.EG.119", "maps": [], @@ -213045,8 +200775,6 @@ }, "description": "2.0.EG, Flur Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4277.EG.131", "maps": [], @@ -213079,8 +200807,6 @@ }, "description": "2.0.EG, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4277.EG.132", "maps": [], @@ -213113,8 +200839,6 @@ }, "description": "2.0.EG, Aufzug Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4277.EG.133", "maps": [], @@ -213147,8 +200871,6 @@ }, "description": "EG05, Lager (gr\u00fcner Finger)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4277.EG.140", "maps": [], @@ -213181,8 +200903,6 @@ }, "description": "1.3.0.20.1, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.008", "maps": [], @@ -213215,8 +200935,6 @@ }, "description": "1.3.0, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.013", "maps": [], @@ -213249,8 +200967,6 @@ }, "description": "1.3.0.20, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.013A", "maps": [], @@ -213283,8 +200999,6 @@ }, "description": "2.3.0.10, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.022", "maps": [], @@ -213317,8 +201031,6 @@ }, "description": "2.3.0.8, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.023", "maps": [], @@ -213351,8 +201063,6 @@ }, "description": "2.3.0.1.1, Flure", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.024", "maps": [], @@ -213385,8 +201095,6 @@ }, "description": "2.3.0.1.2, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.024A", "maps": [], @@ -213419,8 +201127,6 @@ }, "description": "2.3.0.3, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.025", "maps": [], @@ -213453,8 +201159,6 @@ }, "description": "2.3.0.1, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.026", "maps": [], @@ -213487,8 +201191,6 @@ }, "description": "2.3.0.1.2, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.027", "maps": [], @@ -213521,8 +201223,6 @@ }, "description": "2.3.0.1.3, Aufzug Finger 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.028", "maps": [], @@ -213555,8 +201255,6 @@ }, "description": "2.3.0.6, Elektrische Versorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.029", "maps": [], @@ -213589,8 +201287,6 @@ }, "description": "2.3.0.4, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.030", "maps": [], @@ -213623,8 +201319,6 @@ }, "description": "2.3.0, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.031I", "maps": [], @@ -213657,8 +201351,6 @@ }, "description": "2.2.0.1, Elektrische Versorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.032", "maps": [], @@ -213691,8 +201383,6 @@ }, "description": "2.2.0.3, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.033", "maps": [], @@ -213725,8 +201415,6 @@ }, "description": "1.2.0.7.1, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.038", "maps": [], @@ -213759,8 +201447,6 @@ }, "description": "1.2.0.7.2, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.042", "maps": [], @@ -213793,8 +201479,6 @@ }, "description": "1.2.0.7.3, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.042A", "maps": [], @@ -213827,8 +201511,6 @@ }, "description": "2.2.8.10, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.049", "maps": [], @@ -213861,8 +201543,6 @@ }, "description": "2.2.0.8, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.050", "maps": [], @@ -213895,8 +201575,6 @@ }, "description": "2.2.0.1.1, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.051", "maps": [], @@ -213929,8 +201607,6 @@ }, "description": "2.2.0, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.051A", "maps": [], @@ -213963,8 +201639,6 @@ }, "description": "2.2.0.1.2, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.052", "maps": [], @@ -213997,8 +201671,6 @@ }, "description": "2.2.0.1.3, Aufzug Finger 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.053", "maps": [], @@ -214031,8 +201703,6 @@ }, "description": "2.2.0.6, Elektrische Versorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.054", "maps": [], @@ -214065,8 +201735,6 @@ }, "description": "2.2.0.4, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.055", "maps": [], @@ -214099,8 +201767,6 @@ }, "description": "2.2.0.2, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.056H", "maps": [], @@ -214133,8 +201799,6 @@ }, "description": "2.1.0.3, Elektrische Versorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.057", "maps": [], @@ -214167,8 +201831,6 @@ }, "description": "2.1.0.5, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.058", "maps": [], @@ -214201,8 +201863,6 @@ }, "description": "1.1.0.3.1, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.061", "maps": [], @@ -214235,8 +201895,6 @@ }, "description": "1.1.0, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.064", "maps": [], @@ -214269,8 +201927,6 @@ }, "description": "1.1.0.1.4, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.064A", "maps": [], @@ -214303,8 +201959,6 @@ }, "description": "2.1.0.10, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.074", "maps": [], @@ -214337,8 +201991,6 @@ }, "description": "2.1.0.8, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.075", "maps": [], @@ -214371,8 +202023,6 @@ }, "description": "2.1.0.1, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.076", "maps": [], @@ -214405,8 +202055,6 @@ }, "description": "2.1.0.2, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.076A", "maps": [], @@ -214439,8 +202087,6 @@ }, "description": "2.1.0.2.1, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.077", "maps": [], @@ -214473,8 +202119,6 @@ }, "description": "2.1.0.2.2, Aufzug Finger 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.078", "maps": [], @@ -214507,8 +202151,6 @@ }, "description": "2.1.0.6, Elektrische Versorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.079", "maps": [], @@ -214541,8 +202183,6 @@ }, "description": "2.1.0.4, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.080", "maps": [], @@ -214575,8 +202215,6 @@ }, "description": "2.1.0.2, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.081A", "maps": [], @@ -214609,8 +202247,6 @@ }, "description": "2.1.0.2.1, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.081B", "maps": [], @@ -214643,8 +202279,6 @@ }, "description": "2.1.0.1, Wasserversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.082", "maps": [], @@ -214677,8 +202311,6 @@ }, "description": "2.0.0.2.4, Elektrische Versorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.083", "maps": [], @@ -214711,8 +202343,6 @@ }, "description": "2.1.0.2.1, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.084", "maps": [], @@ -214745,8 +202375,6 @@ }, "description": "2.0.0.1.1, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.085", "maps": [], @@ -214779,8 +202407,6 @@ }, "description": "2.0.0.1.1, Umkleide", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.087", "maps": [], @@ -214813,8 +202439,6 @@ }, "description": "2.0.0.1.2, Umkleide", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.088", "maps": [], @@ -214847,8 +202471,6 @@ }, "description": "2.0.0.20, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.099", "maps": [], @@ -214881,8 +202503,6 @@ }, "description": "2.0.0.22, Druckluftanlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.099A", "maps": [], @@ -214915,8 +202535,6 @@ }, "description": "20.0.20.1, Elektrische Versorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.099B", "maps": [], @@ -214949,8 +202567,6 @@ }, "description": "2.0.0.1.2, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.100", "maps": [], @@ -214983,8 +202599,6 @@ }, "description": "2.0.0.16, Trafostation XVII", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.102", "maps": [], @@ -215017,8 +202631,6 @@ }, "description": "2.0.0.18, Trafostation XVII", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.103", "maps": [], @@ -215051,8 +202663,6 @@ }, "description": "2.0.0.1.4, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.104", "maps": [], @@ -215085,8 +202695,6 @@ }, "description": "2.0.0.19, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.105", "maps": [], @@ -215119,8 +202727,6 @@ }, "description": "2.0.0.1.3, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.106", "maps": [], @@ -215153,8 +202759,6 @@ }, "description": "2.0.0.11, Trafostation XVII", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.107", "maps": [], @@ -215187,8 +202791,6 @@ }, "description": "2.0.0.13, Trafostation XVII", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.108", "maps": [], @@ -215221,8 +202823,6 @@ }, "description": "2.0.0.15, Trafostation XVII", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.109", "maps": [], @@ -215255,8 +202855,6 @@ }, "description": "2.0.0.17, Trafostation XVII", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.110", "maps": [], @@ -215289,8 +202887,6 @@ }, "description": "2.0.0.1.5, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.111", "maps": [], @@ -215323,8 +202919,6 @@ }, "description": "2.0.0.1.6, Aufzug Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4277.U1.112", "maps": [], @@ -215357,8 +202951,6 @@ }, "description": "3.3.1.66, Schaltanlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4278.01.002A", "maps": [], @@ -215391,8 +202983,6 @@ }, "description": "3.2.1.45, Leitungsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4278.01.010A", "maps": [], @@ -215425,8 +203015,6 @@ }, "description": "3.1.1.29, Leitungsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4278.01.016A", "maps": [], @@ -215459,8 +203047,6 @@ }, "description": "3.0.1.16, Schaltraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4278.01.035A", "maps": [], @@ -215493,8 +203079,6 @@ }, "description": "3.1.1.30, Schaltanlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4278.01.042A", "maps": [], @@ -215527,8 +203111,6 @@ }, "description": "3.2.1.50, Schaltanlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4278.01.053A", "maps": [], @@ -215561,8 +203143,6 @@ }, "description": "3.3.2.12, \u00dcbergang Technikgescho\u00df", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4278.02.012", "maps": [], @@ -215595,8 +203175,6 @@ }, "description": "3.2.2.1, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4278.02.013", "maps": [], @@ -215629,8 +203207,6 @@ }, "description": "3.1.2.2, Schleuse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4278.02.014", "maps": [], @@ -215663,8 +203239,6 @@ }, "description": "3.1.2.1, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4278.02.016", "maps": [], @@ -215697,8 +203271,6 @@ }, "description": "3.1.2.3, Abluftzentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4278.02.017", "maps": [], @@ -215731,8 +203303,6 @@ }, "description": "3.0.2.4, Schleuse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4278.02.018", "maps": [], @@ -215765,8 +203335,6 @@ }, "description": "3.0.2.3, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4278.02.020", "maps": [], @@ -215799,8 +203367,6 @@ }, "description": "3.0.2.2, Schleuse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4278.02.021", "maps": [], @@ -215833,8 +203399,6 @@ }, "description": "3.0.2.1, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4278.02.023", "maps": [], @@ -215867,8 +203431,6 @@ }, "description": "3.3.EG 58, Schaltanlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4278.EG.001C", "maps": [], @@ -215901,8 +203463,6 @@ }, "description": "3.2.EG 38, Leitungsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4278.EG.007A", "maps": [], @@ -215935,8 +203495,6 @@ }, "description": "3.0.EG 01, Schaltanlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4278.EG.025A", "maps": [], @@ -215969,8 +203527,6 @@ }, "description": "3.0.EG 11, Schaltanlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4278.EG.029A", "maps": [], @@ -216003,8 +203559,6 @@ }, "description": "3.1.EG 21.1, Schaltanlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4278.EG.034A", "maps": [], @@ -216037,8 +203591,6 @@ }, "description": "3.2.EG 43, Schaltanlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4278.EG.044A", "maps": [], @@ -216071,8 +203623,6 @@ }, "description": "3.3.0.2B, Schaltanlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4278.U1.002A", "maps": [], @@ -216105,8 +203655,6 @@ }, "description": "3.3.0.2, Aufzugtriebwerk", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4278.U1.002G", "maps": [], @@ -216139,8 +203687,6 @@ }, "description": "3.2.0.2, Installationsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4278.U1.009A", "maps": [], @@ -216173,8 +203719,6 @@ }, "description": "3.1.0.4, Schutzraum 2 Notk\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4278.U1.010", "maps": [], @@ -216207,8 +203751,6 @@ }, "description": "3.1.0.6, Schutzraum 2 Lagerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4278.U1.011", "maps": [], @@ -216241,8 +203783,6 @@ }, "description": "3.1.0.1, Schutzraum 2 Raumfilter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4278.U1.013A", "maps": [], @@ -216275,8 +203815,6 @@ }, "description": "3.1.0.1, Schutzraum 2 Sandvorfilter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4278.U1.013B", "maps": [], @@ -216309,8 +203847,6 @@ }, "description": "3.1.0.1, Schutzraum 2 Staubfilter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4278.U1.013C", "maps": [], @@ -216343,8 +203879,6 @@ }, "description": "3.1.0.1, Schutzraum 2 Zuluft Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4278.U1.013D", "maps": [], @@ -216377,8 +203911,6 @@ }, "description": "3.0.0.10, Schutzraum 1 Notk\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4278.U1.014", "maps": [], @@ -216411,8 +203943,6 @@ }, "description": "3.0.0.12, Schutzraum 1 Lagerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4278.U1.016", "maps": [], @@ -216445,8 +203975,6 @@ }, "description": "3.0.0.7, Schutzraum 1 Raumfilter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4278.U1.017B", "maps": [], @@ -216479,8 +204007,6 @@ }, "description": "3.0.0.7, Schutzraum 1 Sandvorfilter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4278.U1.017C", "maps": [], @@ -216513,8 +204039,6 @@ }, "description": "3.0.0.7, Schutzraum 1 Staubfilter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4278.U1.017D", "maps": [], @@ -216547,8 +204071,6 @@ }, "description": "3.1.0.1, Schutzraum 1 Zuluft Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4278.U1.017E", "maps": [], @@ -216581,8 +204103,6 @@ }, "description": "3.0.0.6, Schaltanlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4278.U1.018A", "maps": [], @@ -216615,8 +204135,6 @@ }, "description": "3.2.0.18, Schaltanlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4278.U1.022A", "maps": [], @@ -216649,8 +204167,6 @@ }, "description": "001, Trafostation XI", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4281.EG.001", "maps": [], @@ -216683,8 +204199,6 @@ }, "description": "002, Trafostation XI", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4281.EG.002", "maps": [], @@ -216717,8 +204231,6 @@ }, "description": "003, Trafostation XI", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4281.EG.003", "maps": [], @@ -216751,8 +204263,6 @@ }, "description": "004, Trafostation XI", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4281.EG.004", "maps": [], @@ -216785,8 +204295,6 @@ }, "description": "0.004, Tentomax Technik Weihenstephan", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4298.EG.004", "maps": [], @@ -216819,8 +204327,6 @@ }, "description": "1. OG 01, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4304.01.023", "maps": [], @@ -216853,8 +204359,6 @@ }, "description": "1. OG 02, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4304.01.024", "maps": [], @@ -216887,8 +204391,6 @@ }, "description": "1. OG 03, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4304.01.025", "maps": [], @@ -216921,8 +204423,6 @@ }, "description": "1. OG 04, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4304.01.026", "maps": [], @@ -216955,8 +204455,6 @@ }, "description": "1. OG 05, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4304.01.027", "maps": [], @@ -216989,8 +204487,6 @@ }, "description": "1. OG 06, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4304.01.028", "maps": [], @@ -217023,8 +204519,6 @@ }, "description": "1. OG 07, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4304.01.029", "maps": [], @@ -217057,8 +204551,6 @@ }, "description": "1. OG 08, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4304.01.030", "maps": [], @@ -217091,8 +204583,6 @@ }, "description": "1. OG 09, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4304.01.031", "maps": [], @@ -217125,8 +204615,6 @@ }, "description": "1. OG 10, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4304.01.032", "maps": [], @@ -217159,8 +204647,6 @@ }, "description": "1. OG 11, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4304.01.033", "maps": [], @@ -217193,8 +204679,6 @@ }, "description": "1. OG 11.1, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4304.01.034", "maps": [], @@ -217227,8 +204711,6 @@ }, "description": "1. OG 12, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4304.01.035", "maps": [], @@ -217261,8 +204743,6 @@ }, "description": "1. OG 13, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4304.01.036", "maps": [], @@ -217295,8 +204775,6 @@ }, "description": "1. OG 14, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4304.01.037", "maps": [], @@ -217329,8 +204807,6 @@ }, "description": "1. OG 15, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4304.01.038", "maps": [], @@ -217363,8 +204839,6 @@ }, "description": "1. OG 16, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4304.01.039", "maps": [], @@ -217397,8 +204871,6 @@ }, "description": "EG 01, Eingang/Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4304.EG.026", "maps": [], @@ -217431,8 +204903,6 @@ }, "description": "EG 01.1, Au\u00dfentreppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4304.EG.027", "maps": [], @@ -217465,8 +204935,6 @@ }, "description": "EG 01.2, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4304.EG.028", "maps": [], @@ -217499,8 +204967,6 @@ }, "description": "EG 02, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4304.EG.029", "maps": [], @@ -217533,8 +204999,6 @@ }, "description": "EG 03, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4304.EG.030", "maps": [], @@ -217567,8 +205031,6 @@ }, "description": "EG 04, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4304.EG.031", "maps": [], @@ -217601,8 +205063,6 @@ }, "description": "EG 05, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4304.EG.032", "maps": [], @@ -217635,8 +205095,6 @@ }, "description": "EG 06, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4304.EG.033", "maps": [], @@ -217669,8 +205127,6 @@ }, "description": "EG 07, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4304.EG.034", "maps": [], @@ -217703,8 +205159,6 @@ }, "description": "EG 08, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4304.EG.035", "maps": [], @@ -217737,8 +205191,6 @@ }, "description": "EG 09, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4304.EG.036", "maps": [], @@ -217771,8 +205223,6 @@ }, "description": "EG 10, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4304.EG.037", "maps": [], @@ -217805,8 +205255,6 @@ }, "description": "EG 11, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4304.EG.038", "maps": [], @@ -217839,8 +205287,6 @@ }, "description": "EG 12, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4304.EG.039", "maps": [], @@ -217873,8 +205319,6 @@ }, "description": "EG 13, Aufenthaltsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4304.EG.040", "maps": [], @@ -217907,8 +205351,6 @@ }, "description": "EG 14, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4304.EG.041", "maps": [], @@ -217941,8 +205383,6 @@ }, "description": "EG 14.1, Terrasse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4304.EG.042", "maps": [], @@ -217975,8 +205415,6 @@ }, "description": "EG 15, Eingang/Treppenraum Bauhof", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4304.EG.043", "maps": [], @@ -218009,8 +205447,6 @@ }, "description": "EG 15.2, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4304.EG.045", "maps": [], @@ -218043,8 +205479,6 @@ }, "description": "EG 16, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4304.EG.046", "maps": [], @@ -218077,8 +205511,6 @@ }, "description": "EG 17, WC-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4304.EG.047", "maps": [], @@ -218111,8 +205543,6 @@ }, "description": "EG 17a, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4304.EG.048", "maps": [], @@ -218145,8 +205575,6 @@ }, "description": "EG 17b, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4304.EG.049", "maps": [], @@ -218179,8 +205607,6 @@ }, "description": "EG 18, Umkleide", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4304.EG.050", "maps": [], @@ -218213,8 +205639,6 @@ }, "description": "EG 19, Dusche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4304.EG.051", "maps": [], @@ -218247,8 +205671,6 @@ }, "description": "EG 20, Aufenthaltsraum mit K\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4304.EG.052", "maps": [], @@ -218281,8 +205703,6 @@ }, "description": "EG 21, Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4304.EG.053", "maps": [], @@ -218315,8 +205735,6 @@ }, "description": "EG 22, Regallager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4304.EG.054", "maps": [], @@ -218349,8 +205767,6 @@ }, "description": "EG 23, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4304.EG.055", "maps": [], @@ -218383,8 +205799,6 @@ }, "description": "EG 24, Halle 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4304.EG.056", "maps": [], @@ -218417,8 +205831,6 @@ }, "description": "EG 25, Halle 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4304.EG.057", "maps": [], @@ -218451,8 +205863,6 @@ }, "description": "EG 26, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4304.EG.058", "maps": [], @@ -218485,8 +205895,6 @@ }, "description": "KG 01, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4304.U1.017", "maps": [], @@ -218519,8 +205927,6 @@ }, "description": "KG 01.1, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4304.U1.018", "maps": [], @@ -218553,8 +205959,6 @@ }, "description": "KG 02, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4304.U1.021", "maps": [], @@ -218587,8 +205991,6 @@ }, "description": "KG 03, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4304.U1.022", "maps": [], @@ -218621,8 +206023,6 @@ }, "description": "KG 07, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4304.U1.026", "maps": [], @@ -218655,8 +206055,6 @@ }, "description": "KG 08, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4304.U1.028", "maps": [], @@ -218689,8 +206087,6 @@ }, "description": "KG 09, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4304.U1.029", "maps": [], @@ -218723,8 +206119,6 @@ }, "description": "KG 10, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4304.U1.030", "maps": [], @@ -218757,8 +206151,6 @@ }, "description": "KG 11, Heizung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4304.U1.031", "maps": [], @@ -218791,8 +206183,6 @@ }, "description": "KG 11.1, Aussentreppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4304.U1.032", "maps": [], @@ -218825,8 +206215,6 @@ }, "description": "KG 12, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4304.U1.033", "maps": [], @@ -218859,8 +206247,6 @@ }, "description": "KG 13, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4304.U1.034", "maps": [], @@ -218893,8 +206279,6 @@ }, "description": "KG 13.1, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4304.U1.035", "maps": [], @@ -218927,8 +206311,6 @@ }, "description": "KG 14, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4304.U1.037", "maps": [], @@ -218961,8 +206343,6 @@ }, "description": "KG 15, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4304.U1.038", "maps": [], @@ -218995,8 +206375,6 @@ }, "description": "KG 16, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4304.U1.039", "maps": [], @@ -219029,8 +206407,6 @@ }, "description": "KG 17, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4304.U1.041", "maps": [], @@ -219063,8 +206439,6 @@ }, "description": "KG 19, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4304.U1.045", "maps": [], @@ -219097,8 +206471,6 @@ }, "description": "KG 20, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4304.U1.047", "maps": [], @@ -219131,8 +206503,6 @@ }, "description": "KG 21, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4304.U1.049", "maps": [], @@ -219165,8 +206535,6 @@ }, "description": "EG 01, Sicherheitsdienst", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4307.EG.601", "maps": [], @@ -219199,8 +206567,6 @@ }, "description": "EG 02, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4307.EG.602", "maps": [], @@ -219233,8 +206599,6 @@ }, "description": "EG 03, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4307.EG.603", "maps": [], @@ -219267,8 +206631,6 @@ }, "description": "EG 04, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4307.EG.604", "maps": [], @@ -219301,8 +206663,6 @@ }, "description": "EG 05, Plotterraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4307.EG.605", "maps": [], @@ -219335,8 +206695,6 @@ }, "description": "EG 11A, K\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4307.EG.606A", "maps": [], @@ -219369,8 +206727,6 @@ }, "description": "EG 07, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4307.EG.607", "maps": [], @@ -219403,8 +206759,6 @@ }, "description": "EG 08, Archiv", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4307.EG.608", "maps": [], @@ -219437,8 +206791,6 @@ }, "description": "EG 09, Kopierer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4307.EG.609A", "maps": [], @@ -219471,8 +206823,6 @@ }, "description": "EG 11, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4307.EG.611", "maps": [], @@ -219505,8 +206855,6 @@ }, "description": "EG 10, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4307.EG.612", "maps": [], @@ -219539,8 +206887,6 @@ }, "description": "EG 12, Eingang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4307.EG.613", "maps": [], @@ -219573,8 +206919,6 @@ }, "description": "EG 12A, Eingang Au\u00dfenbereich", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4307.EG.614", "maps": [], @@ -219607,8 +206951,6 @@ }, "description": "UG 01, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4307.U1.601", "maps": [], @@ -219641,8 +206983,6 @@ }, "description": "UG 02, Aufenthaltsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4307.U1.602", "maps": [], @@ -219675,8 +207015,6 @@ }, "description": "UG 03, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4307.U1.603", "maps": [], @@ -219709,8 +207047,6 @@ }, "description": "UG 04, K\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4307.U1.604", "maps": [], @@ -219743,8 +207079,6 @@ }, "description": "UG 06, Abstellraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4307.U1.606", "maps": [], @@ -219777,8 +207111,6 @@ }, "description": "UG 07, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4307.U1.607", "maps": [], @@ -219811,8 +207143,6 @@ }, "description": "UG 08, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4307.U1.608", "maps": [], @@ -219845,8 +207175,6 @@ }, "description": "UG 09, WC-Herren/Heizung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4307.U1.609", "maps": [], @@ -219879,8 +207207,6 @@ }, "description": "UG 10, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4307.U1.610", "maps": [], @@ -219913,8 +207239,6 @@ }, "description": "UG 10A, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4307.U1.610A", "maps": [], @@ -219947,8 +207271,6 @@ }, "description": "UG 11, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4307.U1.611", "maps": [], @@ -219981,8 +207303,6 @@ }, "description": "UG 12, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4307.U1.612", "maps": [], @@ -220015,8 +207335,6 @@ }, "description": "2.1a, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4308.01.021", "maps": [], @@ -220049,8 +207367,6 @@ }, "description": "K22, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4308.01.021A", "maps": [], @@ -220083,8 +207399,6 @@ }, "description": "K23, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4308.01.021B", "maps": [], @@ -220117,8 +207431,6 @@ }, "description": "K25, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4308.01.021C", "maps": [], @@ -220151,8 +207463,6 @@ }, "description": "1.0, Aufzugsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4308.01.021D", "maps": [], @@ -220185,8 +207495,6 @@ }, "description": "K24, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4308.01.021E", "maps": [], @@ -220219,8 +207527,6 @@ }, "description": "2.1b, Treppenraum 1.OG-DG (12 Stufen)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4308.01.021F", "maps": [], @@ -220253,8 +207559,6 @@ }, "description": "2.2, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4308.01.022", "maps": [], @@ -220287,8 +207591,6 @@ }, "description": "2.2a, WC-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4308.01.022A", "maps": [], @@ -220321,8 +207623,6 @@ }, "description": "2.3, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4308.01.023", "maps": [], @@ -220355,8 +207655,6 @@ }, "description": "2.3a, WC-Damen Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4308.01.023A", "maps": [], @@ -220389,8 +207687,6 @@ }, "description": "2.5, Verteilerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4308.01.025", "maps": [], @@ -220423,8 +207719,6 @@ }, "description": "2.6, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4308.01.026", "maps": [], @@ -220457,8 +207751,6 @@ }, "description": "2.7, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4308.01.027", "maps": [], @@ -220491,8 +207783,6 @@ }, "description": "2.8, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4308.01.028", "maps": [], @@ -220525,8 +207815,6 @@ }, "description": "D.1b, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4308.02.301", "maps": [], @@ -220559,8 +207847,6 @@ }, "description": "D.2, K\u00fchlschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4308.02.302", "maps": [], @@ -220593,8 +207879,6 @@ }, "description": "D.5, Aufzugs- und F\u00f6rdermaschinen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4308.02.305", "maps": [], @@ -220627,8 +207911,6 @@ }, "description": "D.6, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4308.02.306", "maps": [], @@ -220661,8 +207943,6 @@ }, "description": "K22a, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4308.02.306A", "maps": [], @@ -220695,8 +207975,6 @@ }, "description": "K22b, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4308.02.306B", "maps": [], @@ -220729,8 +208007,6 @@ }, "description": "K23, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4308.02.306C", "maps": [], @@ -220763,8 +208039,6 @@ }, "description": "K24, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4308.02.306D", "maps": [], @@ -220797,8 +208071,6 @@ }, "description": "K25, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4308.02.306E", "maps": [], @@ -220831,8 +208103,6 @@ }, "description": "K22, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4308.EG.006", "maps": [], @@ -220865,8 +208135,6 @@ }, "description": "K23, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4308.EG.007", "maps": [], @@ -220899,8 +208167,6 @@ }, "description": "K25, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4308.EG.008", "maps": [], @@ -220933,8 +208199,6 @@ }, "description": "K24, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4308.EG.009", "maps": [], @@ -220967,8 +208231,6 @@ }, "description": "1.0, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4308.EG.010", "maps": [], @@ -221001,8 +208263,6 @@ }, "description": "1.1a, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4308.EG.011", "maps": [], @@ -221035,8 +208295,6 @@ }, "description": "1.1b, Treppe EG-1.OG (22 Stufen)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4308.EG.011A", "maps": [], @@ -221069,8 +208327,6 @@ }, "description": "1.1c, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4308.EG.011B", "maps": [], @@ -221103,8 +208359,6 @@ }, "description": "1.2, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4308.EG.012", "maps": [], @@ -221137,8 +208391,6 @@ }, "description": "1.2a, WC-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4308.EG.012A", "maps": [], @@ -221171,8 +208423,6 @@ }, "description": "1.3, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4308.EG.013", "maps": [], @@ -221205,8 +208455,6 @@ }, "description": "1.3a, WC-Damen Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4308.EG.013A", "maps": [], @@ -221239,8 +208487,6 @@ }, "description": "1.5, Verteilerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4308.EG.015", "maps": [], @@ -221273,8 +208519,6 @@ }, "description": "1.31, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4308.EG.017", "maps": [], @@ -221307,8 +208551,6 @@ }, "description": "1.10, Eingangshalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4308.EG.110", "maps": [], @@ -221341,8 +208583,6 @@ }, "description": "1.05, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4308.EG.110B", "maps": [], @@ -221375,8 +208615,6 @@ }, "description": "1.10a, Windfang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4308.EG.110C", "maps": [], @@ -221409,8 +208647,6 @@ }, "description": "1.12, Seminar-/Praktikumsraum (WZWS60/61)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4308.EG.112", "maps": [], @@ -221443,8 +208679,6 @@ }, "description": "1.14, Seminarraum 61 (WZWS61)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4308.EG.114", "maps": [], @@ -221477,8 +208711,6 @@ }, "description": "1.30, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4308.EG.130", "maps": [], @@ -221511,8 +208743,6 @@ }, "description": "0.1a, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4308.U1.001", "maps": [], @@ -221545,8 +208775,6 @@ }, "description": "K22, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4308.U1.001A", "maps": [], @@ -221579,8 +208807,6 @@ }, "description": "K23, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4308.U1.001B", "maps": [], @@ -221613,8 +208839,6 @@ }, "description": "0.1b, Treppenraum UG-EG (22 Stufen)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4308.U1.001C", "maps": [], @@ -221647,8 +208871,6 @@ }, "description": "0.1c, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4308.U1.001D", "maps": [], @@ -221681,8 +208903,6 @@ }, "description": "0.2, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4308.U1.002", "maps": [], @@ -221715,8 +208935,6 @@ }, "description": "0.2a, WC-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4308.U1.002A", "maps": [], @@ -221749,8 +208967,6 @@ }, "description": "0.3, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4308.U1.003", "maps": [], @@ -221783,8 +208999,6 @@ }, "description": "0.3a, WC-Damen Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4308.U1.003A", "maps": [], @@ -221817,8 +209031,6 @@ }, "description": "0.5, Verteilerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4308.U1.005", "maps": [], @@ -221851,8 +209063,6 @@ }, "description": "K25, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4308.U1.005A", "maps": [], @@ -221885,8 +209095,6 @@ }, "description": "1.0, Aufzugsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4308.U1.005B", "maps": [], @@ -221919,8 +209127,6 @@ }, "description": "K24, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4308.U1.005C", "maps": [], @@ -221953,8 +209159,6 @@ }, "description": "0.6, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4308.U1.006", "maps": [], @@ -221987,8 +209191,6 @@ }, "description": "0.7, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4308.U1.007", "maps": [], @@ -222021,8 +209223,6 @@ }, "description": "0.8, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4308.U1.008", "maps": [], @@ -222055,8 +209255,6 @@ }, "description": "0.9a, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4308.U1.009A", "maps": [], @@ -222089,8 +209287,6 @@ }, "description": "0.10, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4308.U1.010", "maps": [], @@ -222123,8 +209319,6 @@ }, "description": "K.1a, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4308.U2.001", "maps": [], @@ -222157,8 +209351,6 @@ }, "description": "K.1b, Treppenraum KG-UG (22 Stufen)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4308.U2.001B", "maps": [], @@ -222191,8 +209383,6 @@ }, "description": "K.1c, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4308.U2.001C", "maps": [], @@ -222225,8 +209415,6 @@ }, "description": "K.2, Dusche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4308.U2.002", "maps": [], @@ -222259,8 +209447,6 @@ }, "description": "K.3, Dusche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4308.U2.003", "maps": [], @@ -222293,8 +209479,6 @@ }, "description": "K.4, Wertstoffe/M\u00fcll", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4308.U2.004", "maps": [], @@ -222327,8 +209511,6 @@ }, "description": "K.5, Verteilerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4308.U2.005", "maps": [], @@ -222361,8 +209543,6 @@ }, "description": "K.6a, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4308.U2.006", "maps": [], @@ -222395,8 +209575,6 @@ }, "description": "K.7, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4308.U2.007", "maps": [], @@ -222429,8 +209607,6 @@ }, "description": "K.8a, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4308.U2.008", "maps": [], @@ -222463,8 +209639,6 @@ }, "description": "K.8b, Treppe 6 Stufen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4308.U2.008B", "maps": [], @@ -222497,8 +209671,6 @@ }, "description": "K.8c, Treppe 6 Stufen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4308.U2.008C", "maps": [], @@ -222531,8 +209703,6 @@ }, "description": "K.9, Z\u00e4hlerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4308.U2.009", "maps": [], @@ -222565,8 +209735,6 @@ }, "description": "K.10, Heizungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4308.U2.010", "maps": [], @@ -222599,8 +209767,6 @@ }, "description": "K.14, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4308.U2.014", "maps": [], @@ -222633,8 +209799,6 @@ }, "description": "K.15, Be- und Entl\u00fcftung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4308.U2.015", "maps": [], @@ -222667,8 +209831,6 @@ }, "description": "K.21, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4308.U2.021", "maps": [], @@ -222701,8 +209863,6 @@ }, "description": "K.24, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4308.U2.024", "maps": [], @@ -222735,8 +209895,6 @@ }, "description": "K.25, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4308.U2.025", "maps": [], @@ -222769,8 +209927,6 @@ }, "description": "1.0, Aufzugsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "4308.U2.026", "maps": [], @@ -222803,8 +209959,6 @@ }, "description": "005, Arbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4309.EG.005", "maps": [], @@ -222837,8 +209991,6 @@ }, "description": "011, WC Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4309.EG.011", "maps": [], @@ -222871,8 +210023,6 @@ }, "description": "012, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4309.EG.012", "maps": [], @@ -222905,8 +210055,6 @@ }, "description": "013, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4309.EG.013", "maps": [], @@ -222939,8 +210087,6 @@ }, "description": "015, Arbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4309.EG.015", "maps": [], @@ -222973,8 +210119,6 @@ }, "description": "019, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4309.EG.019", "maps": [], @@ -223007,8 +210151,6 @@ }, "description": "001, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4311.EG.001", "maps": [], @@ -223041,8 +210183,6 @@ }, "description": "011, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4311.EG.011", "maps": [], @@ -223075,8 +210215,6 @@ }, "description": "012, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4311.EG.012", "maps": [], @@ -223109,8 +210247,6 @@ }, "description": "001, Trafostation VII", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4314.EG.001", "maps": [], @@ -223143,8 +210279,6 @@ }, "description": "002, Trafostation VII", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4314.EG.002", "maps": [], @@ -223177,8 +210311,6 @@ }, "description": "003, Trafostation VII", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4314.EG.003", "maps": [], @@ -223211,8 +210343,6 @@ }, "description": "004, Trafostation VII", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4314.EG.004", "maps": [], @@ -223245,8 +210375,6 @@ }, "description": "005, Trafostation VII", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4314.EG.005", "maps": [], @@ -223279,8 +210407,6 @@ }, "description": "Halle 1, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4315.EG.001", "maps": [], @@ -223313,8 +210439,6 @@ }, "description": "Halle 2, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4316.EG.001", "maps": [], @@ -223347,8 +210471,6 @@ }, "description": "1.24, Versorgungsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4317.01.124", "maps": [], @@ -223381,8 +210503,6 @@ }, "description": "1.34, Elektroraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4317.01.134", "maps": [], @@ -223415,8 +210535,6 @@ }, "description": "1.36, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4317.01.136", "maps": [], @@ -223449,8 +210567,6 @@ }, "description": "1.36a, WC-Damen Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4317.01.136A", "maps": [], @@ -223483,8 +210599,6 @@ }, "description": "1.37, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4317.01.137", "maps": [], @@ -223517,8 +210631,6 @@ }, "description": "1.37a, WC-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4317.01.137A", "maps": [], @@ -223551,8 +210663,6 @@ }, "description": "1.38, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4317.01.138", "maps": [], @@ -223585,8 +210695,6 @@ }, "description": "1.46, Versorgungsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4317.01.146", "maps": [], @@ -223619,8 +210727,6 @@ }, "description": "1.52, Versorgungsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4317.01.152", "maps": [], @@ -223653,8 +210759,6 @@ }, "description": "1.59, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4317.01.159", "maps": [], @@ -223687,8 +210791,6 @@ }, "description": "1.60, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4317.01.160", "maps": [], @@ -223721,8 +210823,6 @@ }, "description": "1.61, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4317.01.161", "maps": [], @@ -223755,8 +210855,6 @@ }, "description": "1.62, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4317.01.162", "maps": [], @@ -223789,8 +210887,6 @@ }, "description": "1.63, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4317.01.163", "maps": [], @@ -223823,8 +210919,6 @@ }, "description": "1.64, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4317.01.164", "maps": [], @@ -223857,8 +210951,6 @@ }, "description": "1.65, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4317.01.165", "maps": [], @@ -223891,8 +210983,6 @@ }, "description": "2.21, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4317.02.221", "maps": [], @@ -223925,8 +211015,6 @@ }, "description": "2.30, Elektroraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4317.02.230", "maps": [], @@ -223959,8 +211047,6 @@ }, "description": "2.31, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4317.02.231", "maps": [], @@ -223993,8 +211079,6 @@ }, "description": "2.31a, WC-Damen Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4317.02.231A", "maps": [], @@ -224027,8 +211111,6 @@ }, "description": "2.32, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4317.02.232", "maps": [], @@ -224061,8 +211143,6 @@ }, "description": "2.32a, WC-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4317.02.232A", "maps": [], @@ -224095,8 +211175,6 @@ }, "description": "2.33, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4317.02.233", "maps": [], @@ -224129,8 +211207,6 @@ }, "description": "2.41, Versorgungsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4317.02.241", "maps": [], @@ -224163,8 +211239,6 @@ }, "description": "2.46, Versorgungsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4317.02.246", "maps": [], @@ -224197,8 +211271,6 @@ }, "description": "2.51, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4317.02.251", "maps": [], @@ -224231,8 +211303,6 @@ }, "description": "2.51A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4317.02.251A", "maps": [], @@ -224265,8 +211335,6 @@ }, "description": "2.51B, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4317.02.251B", "maps": [], @@ -224299,8 +211367,6 @@ }, "description": "2.52, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4317.02.252", "maps": [], @@ -224333,8 +211399,6 @@ }, "description": "2.53, Eingang Nord", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4317.02.253", "maps": [], @@ -224367,8 +211431,6 @@ }, "description": "2.54, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4317.02.254", "maps": [], @@ -224401,8 +211463,6 @@ }, "description": "2.55, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4317.02.255", "maps": [], @@ -224435,8 +211495,6 @@ }, "description": "2.56, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4317.02.256", "maps": [], @@ -224469,8 +211527,6 @@ }, "description": "2.57, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4317.02.257", "maps": [], @@ -224503,8 +211559,6 @@ }, "description": "3.0, Terrasse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4317.03.300", "maps": [], @@ -224537,8 +211591,6 @@ }, "description": "3.18, Versorgungsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4317.03.318", "maps": [], @@ -224571,8 +211623,6 @@ }, "description": "3.26, Elektroraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4317.03.326", "maps": [], @@ -224605,8 +211655,6 @@ }, "description": "3.28, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4317.03.328", "maps": [], @@ -224639,8 +211687,6 @@ }, "description": "3.29, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4317.03.329", "maps": [], @@ -224673,8 +211719,6 @@ }, "description": "3.39, Versorgungsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4317.03.339", "maps": [], @@ -224707,8 +211751,6 @@ }, "description": "3.44, Versorgungsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4317.03.344", "maps": [], @@ -224741,8 +211783,6 @@ }, "description": "3.53, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4317.03.353", "maps": [], @@ -224775,8 +211815,6 @@ }, "description": "3.53A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4317.03.353A", "maps": [], @@ -224809,8 +211847,6 @@ }, "description": "3.53B, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4317.03.353B", "maps": [], @@ -224843,8 +211879,6 @@ }, "description": "3.54, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4317.03.354", "maps": [], @@ -224877,8 +211911,6 @@ }, "description": "3.55, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4317.03.355", "maps": [], @@ -224911,8 +211943,6 @@ }, "description": "3.56, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4317.03.356", "maps": [], @@ -224945,8 +211975,6 @@ }, "description": "3.57, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4317.03.357", "maps": [], @@ -224979,8 +212007,6 @@ }, "description": "3.58, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4317.03.358", "maps": [], @@ -225013,8 +212039,6 @@ }, "description": "3.59, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4317.03.359", "maps": [], @@ -225047,8 +212071,6 @@ }, "description": "4.2, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "4317.DG.402", "maps": [], @@ -225081,8 +212103,6 @@ }, "description": "4.3, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "4317.DG.403", "maps": [], @@ -225115,8 +212135,6 @@ }, "description": "4.4, Abluftzentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "4317.DG.404", "maps": [], @@ -225149,8 +212167,6 @@ }, "description": "4.6, Versorgungsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "4317.DG.406", "maps": [], @@ -225183,8 +212199,6 @@ }, "description": "4.7, Versorgungsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "4317.DG.407", "maps": [], @@ -225217,8 +212231,6 @@ }, "description": "0.1, Foyer HS 17", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4317.EG.001", "maps": [], @@ -225251,8 +212263,6 @@ }, "description": "0.1a, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4317.EG.001A", "maps": [], @@ -225285,8 +212295,6 @@ }, "description": "0.1b, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4317.EG.001B", "maps": [], @@ -225319,8 +212327,6 @@ }, "description": "0.2, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4317.EG.002", "maps": [], @@ -225414,8 +212420,6 @@ }, "description": "0.6, WC-Behinderte", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4317.EG.006", "maps": [], @@ -225448,8 +212452,6 @@ }, "description": "0.7, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4317.EG.007", "maps": [], @@ -225482,8 +212484,6 @@ }, "description": "0.7a, WC-Damen Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4317.EG.007A", "maps": [], @@ -225516,8 +212516,6 @@ }, "description": "0.8, Ruheraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4317.EG.008", "maps": [], @@ -225550,8 +212548,6 @@ }, "description": "0.12, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4317.EG.012", "maps": [], @@ -225584,8 +212580,6 @@ }, "description": "0.13, Dusche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4317.EG.013", "maps": [], @@ -225618,8 +212612,6 @@ }, "description": "0.14, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4317.EG.014", "maps": [], @@ -225652,8 +212644,6 @@ }, "description": "0.17, Versorgungsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4317.EG.017", "maps": [], @@ -225686,8 +212676,6 @@ }, "description": "0.18, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4317.EG.018", "maps": [], @@ -225720,8 +212708,6 @@ }, "description": "0.18a, WC-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4317.EG.018A", "maps": [], @@ -225754,8 +212740,6 @@ }, "description": "0.20, Maschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4317.EG.020", "maps": [], @@ -225788,8 +212772,6 @@ }, "description": "0.21, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4317.EG.021", "maps": [], @@ -225822,8 +212804,6 @@ }, "description": "0.22, Abwassermessstrecke", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4317.EG.022", "maps": [], @@ -225856,8 +212836,6 @@ }, "description": "0.24, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4317.EG.024", "maps": [], @@ -225890,8 +212868,6 @@ }, "description": "0.25, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4317.EG.025", "maps": [], @@ -225924,8 +212900,6 @@ }, "description": "0.26, Wasseraufbereitung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4317.EG.026", "maps": [], @@ -225958,8 +212932,6 @@ }, "description": "0.27, Abluft / Heizung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4317.EG.027", "maps": [], @@ -225992,8 +212964,6 @@ }, "description": "1-20a, Foyer Treppe West", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4318.01.020A", "maps": [], @@ -226026,8 +212996,6 @@ }, "description": "1-20b, Flur West-1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4318.01.020B", "maps": [], @@ -226060,8 +213028,6 @@ }, "description": "1-20c, Flur West-2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4318.01.020C", "maps": [], @@ -226094,8 +213060,6 @@ }, "description": "1-24, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4318.01.024", "maps": [], @@ -226128,8 +213092,6 @@ }, "description": "1-24a, Foyer Treppe Mitte", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4318.01.024A", "maps": [], @@ -226162,8 +213124,6 @@ }, "description": "1-24b, Eingang Nord Windfang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4318.01.024B", "maps": [], @@ -226196,8 +213156,6 @@ }, "description": "1-27, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4318.01.027", "maps": [], @@ -226230,8 +213188,6 @@ }, "description": "1-28a, Foyer Treppe Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4318.01.028A", "maps": [], @@ -226264,8 +213220,6 @@ }, "description": "1-30, Elektrische Versorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4318.01.030", "maps": [], @@ -226298,8 +213252,6 @@ }, "description": "1-34a, Flur Ost-1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4318.01.034A", "maps": [], @@ -226332,8 +213284,6 @@ }, "description": "1-34b, Flur Ost-2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4318.01.034B", "maps": [], @@ -226366,8 +213316,6 @@ }, "description": "1-35, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4318.01.035", "maps": [], @@ -226400,8 +213348,6 @@ }, "description": "1-36, Elektrische Versorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4318.01.036", "maps": [], @@ -226434,8 +213380,6 @@ }, "description": "1-44, Technikschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4318.01.044", "maps": [], @@ -226468,8 +213412,6 @@ }, "description": "1-50, Technikschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4318.01.050", "maps": [], @@ -226502,8 +213444,6 @@ }, "description": "1-100, Fluchtbalkon S\u00fcd", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4318.01.100", "maps": [], @@ -226536,8 +213476,6 @@ }, "description": "2-20a, Foyer Treppe West", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4318.02.020A", "maps": [], @@ -226570,8 +213508,6 @@ }, "description": "2-20b, Flur West-1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4318.02.020B", "maps": [], @@ -226604,8 +213540,6 @@ }, "description": "2-20c, Flur West-2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4318.02.020C", "maps": [], @@ -226638,8 +213572,6 @@ }, "description": "2-24, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4318.02.024", "maps": [], @@ -226672,8 +213604,6 @@ }, "description": "2-24a, Foyer Treppe Mitte", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4318.02.024A", "maps": [], @@ -226706,8 +213636,6 @@ }, "description": "2-27, Wertstoffe/M\u00fcll", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4318.02.027", "maps": [], @@ -226740,8 +213668,6 @@ }, "description": "2-28a, Flur Ost-1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4318.02.028A", "maps": [], @@ -226774,8 +213700,6 @@ }, "description": "2-28b, Flur Ost-2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4318.02.028B", "maps": [], @@ -226808,8 +213732,6 @@ }, "description": "2-28c, Foyer Treppe Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4318.02.028C", "maps": [], @@ -226842,8 +213764,6 @@ }, "description": "2-29, Elektrische Versorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4318.02.029", "maps": [], @@ -226876,8 +213796,6 @@ }, "description": "2-34, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4318.02.034", "maps": [], @@ -226910,8 +213828,6 @@ }, "description": "2-35, Elektrische Versorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4318.02.035", "maps": [], @@ -226944,8 +213860,6 @@ }, "description": "2-44, Technikschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4318.02.044", "maps": [], @@ -226978,8 +213892,6 @@ }, "description": "2-53, Technikschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4318.02.053", "maps": [], @@ -227012,8 +213924,6 @@ }, "description": "2-100, Fluchtbalkon S\u00fcd", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4318.02.100", "maps": [], @@ -227046,8 +213956,6 @@ }, "description": "2-101, Fluchtbalkon Nord", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4318.02.101", "maps": [], @@ -227080,8 +213988,6 @@ }, "description": "2-102, Fluchtbalkon Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4318.02.102", "maps": [], @@ -227114,8 +214020,6 @@ }, "description": "3-20a, Foyer Treppe West", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4318.03.020A", "maps": [], @@ -227148,8 +214052,6 @@ }, "description": "2-20b, Flur West-1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4318.03.020B", "maps": [], @@ -227182,8 +214084,6 @@ }, "description": "3-20c, Flur West-2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4318.03.020C", "maps": [], @@ -227216,8 +214116,6 @@ }, "description": "3-23, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4318.03.023", "maps": [], @@ -227250,8 +214148,6 @@ }, "description": "3-24, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4318.03.024", "maps": [], @@ -227284,8 +214180,6 @@ }, "description": "3-24a, Foyer Treppe Mitte", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4318.03.024A", "maps": [], @@ -227318,8 +214212,6 @@ }, "description": "3-30a, Flur Ost-1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4318.03.030A", "maps": [], @@ -227352,8 +214244,6 @@ }, "description": "3-30b, Flur Ost-2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4318.03.030B", "maps": [], @@ -227386,8 +214276,6 @@ }, "description": "3-30c, Foyer Treppe Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4318.03.030C", "maps": [], @@ -227420,8 +214308,6 @@ }, "description": "3-31, Elektrische Versorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4318.03.031", "maps": [], @@ -227454,8 +214340,6 @@ }, "description": "3-36, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4318.03.036", "maps": [], @@ -227488,8 +214372,6 @@ }, "description": "3-37, Elektrische Versorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4318.03.037", "maps": [], @@ -227522,8 +214404,6 @@ }, "description": "3-44, Technikschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4318.03.044", "maps": [], @@ -227556,8 +214436,6 @@ }, "description": "3-45, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4318.03.045", "maps": [], @@ -227590,8 +214468,6 @@ }, "description": "3-46, Technikschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4318.03.046", "maps": [], @@ -227624,8 +214500,6 @@ }, "description": "3-100, Fluchtbalkon S\u00fcd", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4318.03.100", "maps": [], @@ -227658,8 +214532,6 @@ }, "description": "3-101, Fluchtbalkon Nord", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4318.03.101", "maps": [], @@ -227692,8 +214564,6 @@ }, "description": "3-102, Fluchtbalkon Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "4318.03.102", "maps": [], @@ -227779,8 +214649,6 @@ }, "description": "EG-5, Seminarraum 85 (WZWS85)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4318.EG.005", "maps": [], @@ -227919,8 +214787,6 @@ }, "description": "EG-11, Elektrische Versorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4318.EG.011", "maps": [], @@ -227953,8 +214819,6 @@ }, "description": "EG-11a, Foyer Treppe Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4318.EG.011A", "maps": [], @@ -227987,8 +214851,6 @@ }, "description": "EG-12, NSHV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4318.EG.012", "maps": [], @@ -228021,8 +214883,6 @@ }, "description": "EG-13, NSHV-SV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4318.EG.013", "maps": [], @@ -228055,8 +214915,6 @@ }, "description": "EG-14, BMA", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4318.EG.014", "maps": [], @@ -228089,8 +214947,6 @@ }, "description": "EG-15, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4318.EG.015", "maps": [], @@ -228123,8 +214979,6 @@ }, "description": "EG-16, Ruheraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4318.EG.016", "maps": [], @@ -228157,8 +215011,6 @@ }, "description": "EG-16a, Flur Ost-1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4318.EG.016A", "maps": [], @@ -228191,8 +215043,6 @@ }, "description": "EG-16b, Flur Ost-2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4318.EG.016B", "maps": [], @@ -228225,8 +215075,6 @@ }, "description": "EG-16c, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4318.EG.016C", "maps": [], @@ -228259,8 +215107,6 @@ }, "description": "EG-17, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4318.EG.017", "maps": [], @@ -228293,8 +215139,6 @@ }, "description": "EG-17a, Eingang S\u00fcd Windfang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4318.EG.017A", "maps": [], @@ -228327,8 +215171,6 @@ }, "description": "EG-17b, Foyer Treppe Mitte", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4318.EG.017B", "maps": [], @@ -228361,8 +215203,6 @@ }, "description": "EG-18, Elektrische Versorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4318.EG.018", "maps": [], @@ -228395,8 +215235,6 @@ }, "description": "EG-19, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4318.EG.019", "maps": [], @@ -228429,8 +215267,6 @@ }, "description": "EG-20, WC-Behinderte", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4318.EG.020", "maps": [], @@ -228463,8 +215299,6 @@ }, "description": "EG-20a, Flur West-1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4318.EG.020A", "maps": [], @@ -228497,8 +215331,6 @@ }, "description": "EG-20a, Flur West-2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4318.EG.020B", "maps": [], @@ -228531,8 +215363,6 @@ }, "description": "EG-20c, Foyer Treppe West", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4318.EG.020C", "maps": [], @@ -228565,8 +215395,6 @@ }, "description": "EG-20d, Eingang West Windfang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4318.EG.020D", "maps": [], @@ -228599,8 +215427,6 @@ }, "description": "EG-21, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4318.EG.021", "maps": [], @@ -228633,8 +215459,6 @@ }, "description": "EG-22, Druckluftzentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4318.EG.022", "maps": [], @@ -228667,8 +215491,6 @@ }, "description": "EG-23, Fernw\u00e4rme Heizung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4318.EG.023", "maps": [], @@ -228701,8 +215523,6 @@ }, "description": "EG-24, Technik-Zentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4318.EG.024", "maps": [], @@ -228735,8 +215555,6 @@ }, "description": "EG-24a, L\u00fcftungsansaugung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4318.EG.024A", "maps": [], @@ -228769,8 +215587,6 @@ }, "description": "EG-44d, KTFZ Windfang Flur rein", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4318.EG.044D", "maps": [], @@ -228803,8 +215619,6 @@ }, "description": "EG-50, Wertstoffe/M\u00fcll", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4318.EG.050", "maps": [], @@ -228837,8 +215651,6 @@ }, "description": "EG-51, Notstrom", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4318.EG.051", "maps": [], @@ -228871,8 +215683,6 @@ }, "description": "UG-1, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4318.U1.001", "maps": [], @@ -228905,8 +215715,6 @@ }, "description": "UG-1a, Flur/Einbringschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4318.U1.001A", "maps": [], @@ -228939,8 +215747,6 @@ }, "description": "UG-2, Sanit\u00e4r+Brunnwasserzentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4318.U1.002", "maps": [], @@ -228973,8 +215779,6 @@ }, "description": "UG-3, Sanit\u00e4r+Brunnwasserzentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4318.U1.003", "maps": [], @@ -229007,8 +215811,6 @@ }, "description": "UG-4, RLT-Zentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4318.U1.004", "maps": [], @@ -229041,8 +215843,6 @@ }, "description": "UG-5, K\u00e4ltezentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4318.U1.005", "maps": [], @@ -229075,8 +215875,6 @@ }, "description": "001, Trafostation VI", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4319.EG.001", "maps": [], @@ -229109,8 +215907,6 @@ }, "description": "002, Trafostation VI", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4319.EG.002", "maps": [], @@ -229143,8 +215939,6 @@ }, "description": "003, Trafostation VI", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4319.EG.003", "maps": [], @@ -229177,8 +215971,6 @@ }, "description": "004, Trafostation VI", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4319.EG.004", "maps": [], @@ -229211,8 +216003,6 @@ }, "description": "005, Trafostation VI", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4319.EG.005", "maps": [], @@ -229245,8 +216035,6 @@ }, "description": "1.OG 101, Treppenhaus mit Podest", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4320.01.001", "maps": [], @@ -229279,8 +216067,6 @@ }, "description": "1.OG 101.1, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4320.01.001A", "maps": [], @@ -229313,8 +216099,6 @@ }, "description": "1.OG 101.2, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4320.01.001B", "maps": [], @@ -229347,8 +216131,6 @@ }, "description": "1.OG 102, Vorraum Sanit\u00e4ranlagen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4320.01.002", "maps": [], @@ -229381,8 +216163,6 @@ }, "description": "1.OG 103, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4320.01.003", "maps": [], @@ -229415,8 +216195,6 @@ }, "description": "1.OG 104, Dusche-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4320.01.004", "maps": [], @@ -229449,8 +216227,6 @@ }, "description": "1.OG 105, Umkleide-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4320.01.005", "maps": [], @@ -229483,8 +216259,6 @@ }, "description": "1.OG 106, Aufenthaltsraum mit K\u00fcchenzeile", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4320.01.006", "maps": [], @@ -229517,8 +216291,6 @@ }, "description": "1.OG 107, Schalt- und Leitwarte", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4320.01.007", "maps": [], @@ -229551,8 +216323,6 @@ }, "description": "1.OG 107A, Schalt- und Leitwarte", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4320.01.007A", "maps": [], @@ -229585,8 +216355,6 @@ }, "description": "1.OG 107B, Schalt- und Leitwarte", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4320.01.007B", "maps": [], @@ -229619,8 +216387,6 @@ }, "description": "2.OG 201, Lager (Dachabstellraum)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4320.02.001", "maps": [], @@ -229653,8 +216419,6 @@ }, "description": "EG 01, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4320.EG.001", "maps": [], @@ -229687,8 +216451,6 @@ }, "description": "EG 02, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4320.EG.002", "maps": [], @@ -229721,8 +216483,6 @@ }, "description": "01, Aussentreppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4320.EG.004", "maps": [], @@ -229755,8 +216515,6 @@ }, "description": "1.UG 01, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4320.U1.001", "maps": [], @@ -229789,8 +216547,6 @@ }, "description": "1.UG 01.1, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4320.U1.001A", "maps": [], @@ -229823,8 +216579,6 @@ }, "description": "1.UG 02, WC-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4320.U1.002", "maps": [], @@ -229857,8 +216611,6 @@ }, "description": "1.UG 03, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4320.U1.003", "maps": [], @@ -229891,8 +216643,6 @@ }, "description": "1.UG 04, Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4320.U1.004", "maps": [], @@ -229925,8 +216675,6 @@ }, "description": "1.OG 101, Halle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4321.01.001", "maps": [], @@ -229959,8 +216707,6 @@ }, "description": "1.OG 102, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4321.01.002", "maps": [], @@ -229993,8 +216739,6 @@ }, "description": "1.OG 103, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4321.01.003", "maps": [], @@ -230027,8 +216771,6 @@ }, "description": "1.OG 105, Aufenthaltsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4321.01.005", "maps": [], @@ -230061,8 +216803,6 @@ }, "description": "1.OG 106, Registratur / Kopierraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4321.01.006", "maps": [], @@ -230095,8 +216835,6 @@ }, "description": "1.OG 107, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4321.01.007", "maps": [], @@ -230129,8 +216867,6 @@ }, "description": "1.OG 108, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4321.01.008", "maps": [], @@ -230163,8 +216899,6 @@ }, "description": "1.OG 109, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4321.01.009", "maps": [], @@ -230197,8 +216931,6 @@ }, "description": "1.OG 110, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4321.01.010", "maps": [], @@ -230231,8 +216963,6 @@ }, "description": "1.OG 111, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4321.01.011", "maps": [], @@ -230265,8 +216995,6 @@ }, "description": "1.OG 112, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4321.01.012", "maps": [], @@ -230299,8 +217027,6 @@ }, "description": "1.OG 113, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4321.01.013", "maps": [], @@ -230333,8 +217059,6 @@ }, "description": "1.OG 113A, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4321.01.013A", "maps": [], @@ -230367,8 +217091,6 @@ }, "description": "1.OG 114, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4321.01.014", "maps": [], @@ -230401,8 +217123,6 @@ }, "description": "1.OG 114A, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4321.01.014A", "maps": [], @@ -230435,8 +217155,6 @@ }, "description": "1.OG 115, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4321.01.015", "maps": [], @@ -230469,8 +217187,6 @@ }, "description": "1.OG 116, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4321.01.016", "maps": [], @@ -230503,8 +217219,6 @@ }, "description": "1.OG 117, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4321.01.017", "maps": [], @@ -230537,8 +217251,6 @@ }, "description": "1.OG 117A, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4321.01.017A", "maps": [], @@ -230571,8 +217283,6 @@ }, "description": "1.OG 117B, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4321.01.017B", "maps": [], @@ -230605,8 +217315,6 @@ }, "description": "1.OG 118, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4321.01.018", "maps": [], @@ -230639,8 +217347,6 @@ }, "description": "1.OG 119, WC-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4321.01.019", "maps": [], @@ -230673,8 +217379,6 @@ }, "description": "1.OG 120, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4321.01.020", "maps": [], @@ -230707,8 +217411,6 @@ }, "description": "1.OG 121, Reinigungsmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4321.01.021", "maps": [], @@ -230741,8 +217443,6 @@ }, "description": "1.OG 122, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4321.01.022", "maps": [], @@ -230775,8 +217475,6 @@ }, "description": "1.OG 123, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4321.01.023", "maps": [], @@ -230809,8 +217507,6 @@ }, "description": "1.OG 124, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4321.01.024", "maps": [], @@ -230843,8 +217539,6 @@ }, "description": "1.OG 124A, Galerie Schlosser", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4321.01.024A", "maps": [], @@ -230877,8 +217571,6 @@ }, "description": "1.OG 125, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4321.01.025", "maps": [], @@ -230911,8 +217603,6 @@ }, "description": "1.OG 125A, Galerie Elektro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4321.01.025A", "maps": [], @@ -230945,8 +217635,6 @@ }, "description": "1.OG 125.1, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4321.01.025B", "maps": [], @@ -230979,8 +217667,6 @@ }, "description": "1.OG 126, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4321.01.026", "maps": [], @@ -231013,8 +217699,6 @@ }, "description": "1.OG 127, Lager / Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4321.01.027", "maps": [], @@ -231047,8 +217731,6 @@ }, "description": "1.OG 128, Terrasse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4321.01.028", "maps": [], @@ -231081,8 +217763,6 @@ }, "description": "2.OG 201, Archiv", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4321.02.001", "maps": [], @@ -231115,8 +217795,6 @@ }, "description": "2.OG 202, Archiv", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4321.02.002", "maps": [], @@ -231149,8 +217827,6 @@ }, "description": "EG 01, Eingangshalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4321.EG.001", "maps": [], @@ -231183,8 +217859,6 @@ }, "description": "EG 01.1, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4321.EG.001A", "maps": [], @@ -231217,8 +217891,6 @@ }, "description": "EG 02, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4321.EG.002", "maps": [], @@ -231251,8 +217923,6 @@ }, "description": "EG 03, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4321.EG.002A", "maps": [], @@ -231285,8 +217955,6 @@ }, "description": "EG 05, Werkstatt Schreinerei", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4321.EG.003", "maps": [], @@ -231319,8 +217987,6 @@ }, "description": "EG 006, Werkstatt Schreinerei", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4321.EG.005", "maps": [], @@ -231353,8 +218019,6 @@ }, "description": "EG 07, B\u00fcro Schreinerei", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4321.EG.007", "maps": [], @@ -231387,8 +218051,6 @@ }, "description": "EG 08, Lager Schreinerei", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4321.EG.008", "maps": [], @@ -231421,8 +218083,6 @@ }, "description": "EG 09, Flur (WC, Ruheraum)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4321.EG.009", "maps": [], @@ -231455,8 +218115,6 @@ }, "description": "EG 10, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4321.EG.010", "maps": [], @@ -231489,8 +218147,6 @@ }, "description": "EG 11, Ruheraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4321.EG.011", "maps": [], @@ -231523,8 +218179,6 @@ }, "description": "EG 12, Dusche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4321.EG.012", "maps": [], @@ -231557,8 +218211,6 @@ }, "description": "EG 13, WC/Umkleide-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4321.EG.013", "maps": [], @@ -231591,8 +218243,6 @@ }, "description": "EG 14, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4321.EG.014", "maps": [], @@ -231625,8 +218275,6 @@ }, "description": "EG 15, Umkleide-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4321.EG.015", "maps": [], @@ -231659,8 +218307,6 @@ }, "description": "EG 16, Waschraum-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4321.EG.016", "maps": [], @@ -231693,8 +218339,6 @@ }, "description": "EG 16 A, Dusche-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4321.EG.016A", "maps": [], @@ -231727,8 +218371,6 @@ }, "description": "EG 16 B, Dusche-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4321.EG.016B", "maps": [], @@ -231761,8 +218403,6 @@ }, "description": "EG 17, Lager Elektro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4321.EG.017", "maps": [], @@ -231795,8 +218435,6 @@ }, "description": "EG 18, Lager Elektro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4321.EG.018", "maps": [], @@ -231829,8 +218467,6 @@ }, "description": "EG 19, Lager Schlosserei", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4321.EG.019", "maps": [], @@ -231863,8 +218499,6 @@ }, "description": "EG 20, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4321.EG.020", "maps": [], @@ -231897,8 +218531,6 @@ }, "description": "EG 21, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4321.EG.021", "maps": [], @@ -231931,8 +218563,6 @@ }, "description": "EG 22, Lager Sanit\u00e4r", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4321.EG.022", "maps": [], @@ -231965,8 +218595,6 @@ }, "description": "EG 23, Schlosserwerkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4321.EG.023", "maps": [], @@ -231999,8 +218627,6 @@ }, "description": "EG 23.1, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4321.EG.023A", "maps": [], @@ -232033,8 +218659,6 @@ }, "description": "EG 23 A, Freifl\u00e4che Schlosserei", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4321.EG.023B", "maps": [], @@ -232067,8 +218691,6 @@ }, "description": "EG 24, Elektrowerkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4321.EG.024", "maps": [], @@ -232101,8 +218723,6 @@ }, "description": "EG 24.1, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4321.EG.024A", "maps": [], @@ -232135,8 +218755,6 @@ }, "description": "01, Au\u00dfentreppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4321.EG.025", "maps": [], @@ -232169,8 +218787,6 @@ }, "description": "EG 25, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4321.EG.044", "maps": [], @@ -232203,8 +218819,6 @@ }, "description": "EG 01, Lager ELT Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4322.EG.001", "maps": [], @@ -232237,8 +218851,6 @@ }, "description": "EG 02, Lager Schlie\u00dftechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4322.EG.002", "maps": [], @@ -232271,8 +218883,6 @@ }, "description": "EG 03, Lager Heizung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4322.EG.003", "maps": [], @@ -232305,8 +218915,6 @@ }, "description": "EG 04, Lager K\u00e4ltetechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4322.EG.004", "maps": [], @@ -232339,8 +218947,6 @@ }, "description": "EG 05, Lager Betriebsmittel", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4322.EG.005", "maps": [], @@ -232373,8 +218979,6 @@ }, "description": "EG 06, Lager Betriebsmittel", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4322.EG.006", "maps": [], @@ -232407,8 +219011,6 @@ }, "description": "EG 07, Lager Reinigung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4322.EG.007", "maps": [], @@ -232441,8 +219043,6 @@ }, "description": "EG 08, Lager / Selbstabholer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4322.EG.008", "maps": [], @@ -232475,8 +219075,6 @@ }, "description": "EG 09, Lager Kfz.-Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4322.EG.009", "maps": [], @@ -232509,8 +219107,6 @@ }, "description": "01, PKW Stellplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4322.EG.010", "maps": [], @@ -232543,8 +219139,6 @@ }, "description": "02, PKW Stellplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4322.EG.011", "maps": [], @@ -232577,8 +219171,6 @@ }, "description": "03, PKW Stellplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4322.EG.012", "maps": [], @@ -232611,8 +219203,6 @@ }, "description": "04, PKW Stellplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4322.EG.013", "maps": [], @@ -232645,8 +219235,6 @@ }, "description": "05, PKW Stellplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4322.EG.014", "maps": [], @@ -232679,8 +219267,6 @@ }, "description": "06, PKW Stellplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4322.EG.015", "maps": [], @@ -232713,8 +219299,6 @@ }, "description": "07, PKW Stellplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4322.EG.016", "maps": [], @@ -232747,8 +219331,6 @@ }, "description": "08, PKW Stellplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4322.EG.017", "maps": [], @@ -232781,8 +219363,6 @@ }, "description": "01, Trafostation XV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4322.U1.001", "maps": [], @@ -232815,8 +219395,6 @@ }, "description": "02, Trafostation XV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4322.U1.002", "maps": [], @@ -232849,8 +219427,6 @@ }, "description": "03, Trafostation XV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4322.U1.003", "maps": [], @@ -232883,8 +219459,6 @@ }, "description": "04, Trafostation XV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4322.U1.004", "maps": [], @@ -232917,8 +219491,6 @@ }, "description": "05, Trafostation XV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4322.U1.005", "maps": [], @@ -232951,8 +219523,6 @@ }, "description": "06, Trafostation XV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4322.U1.006", "maps": [], @@ -232985,8 +219555,6 @@ }, "description": "07, Trafostation XV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4322.U1.007", "maps": [], @@ -233019,8 +219587,6 @@ }, "description": "08, Trafostation XV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4322.U1.008", "maps": [], @@ -233053,8 +219619,6 @@ }, "description": "1.OG 101, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4323.01.001", "maps": [], @@ -233087,8 +219651,6 @@ }, "description": "1.OG 102, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4323.01.002", "maps": [], @@ -233121,8 +219683,6 @@ }, "description": "1.OG 103, Heizung/Materiallager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4323.01.003", "maps": [], @@ -233155,8 +219715,6 @@ }, "description": "1.OG 104, Galerie/Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4323.01.004", "maps": [], @@ -233189,8 +219747,6 @@ }, "description": "1.OG 105, Galerie/Akten", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4323.01.005", "maps": [], @@ -233223,8 +219779,6 @@ }, "description": "1.OG 106, Galerie/Aufenthalt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4323.01.006", "maps": [], @@ -233257,8 +219811,6 @@ }, "description": "EG 01, KFZ-Waschhalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4323.EG.001", "maps": [], @@ -233291,8 +219843,6 @@ }, "description": "EG 02, Meisterb\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4323.EG.002", "maps": [], @@ -233325,8 +219875,6 @@ }, "description": "EG 02A, B\u00fcro f\u00fcr Heizung, L\u00fcftung und Sanit\u00e4r", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4323.EG.002A", "maps": [], @@ -233359,8 +219907,6 @@ }, "description": "EG 02A11, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4323.EG.002B", "maps": [], @@ -233393,8 +219939,6 @@ }, "description": "EG 02.1, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4323.EG.002C", "maps": [], @@ -233427,8 +219971,6 @@ }, "description": "EG 03, KFZ-Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4323.EG.003", "maps": [], @@ -233461,8 +220003,6 @@ }, "description": "EG 03A, KFZ-Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4323.EG.003A", "maps": [], @@ -233495,8 +220035,6 @@ }, "description": "04, Lager mit Brandschutz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4323.EG.004", "maps": [], @@ -233529,8 +220067,6 @@ }, "description": "05, Lager mit Brandschutz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4323.EG.005", "maps": [], @@ -233563,8 +220099,6 @@ }, "description": "EG 06, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4323.EG.006", "maps": [], @@ -233597,8 +220131,6 @@ }, "description": "EG 07, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4323.EG.007", "maps": [], @@ -233631,8 +220163,6 @@ }, "description": "EG 08, Meisterb\u00fcro Kfz.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4323.EG.008", "maps": [], @@ -233665,8 +220195,6 @@ }, "description": "EG 09, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4323.EG.009", "maps": [], @@ -233699,8 +220227,6 @@ }, "description": "EG 09.1, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4323.EG.009A", "maps": [], @@ -233733,8 +220259,6 @@ }, "description": "Lager mit Brandschutz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4323.EG.010", "maps": [], @@ -233767,8 +220291,6 @@ }, "description": "EG 11, B\u00fcro Entsorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4323.EG.011", "maps": [], @@ -233801,8 +220323,6 @@ }, "description": "EG 12, Farbspritzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4323.EG.012", "maps": [], @@ -233835,8 +220355,6 @@ }, "description": "EG 13, Malerwerkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4323.EG.013", "maps": [], @@ -233869,8 +220387,6 @@ }, "description": "EG 13.1, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4323.EG.013A", "maps": [], @@ -233903,8 +220419,6 @@ }, "description": "EG 14, Feldlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4323.EG.014", "maps": [], @@ -233937,8 +220451,6 @@ }, "description": "15, Hochlager Streusalz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4323.EG.015", "maps": [], @@ -233971,8 +220483,6 @@ }, "description": "EG 01, Stuhllager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4324.EG.001", "maps": [], @@ -234005,8 +220515,6 @@ }, "description": "EG 01A, Lager Maler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4324.EG.001A", "maps": [], @@ -234039,8 +220547,6 @@ }, "description": "EG 01B, Lager Fahrr\u00e4der", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4324.EG.001B", "maps": [], @@ -234073,8 +220579,6 @@ }, "description": "EG 02, Lager Schreinerei", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4324.EG.002", "maps": [], @@ -234107,8 +220611,6 @@ }, "description": "EG 03, Lager Schreinerei", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4324.EG.003", "maps": [], @@ -234141,8 +220643,6 @@ }, "description": "EG 01, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4325.EG.001", "maps": [], @@ -234175,8 +220675,6 @@ }, "description": "EG 02, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4325.EG.002", "maps": [], @@ -234209,8 +220707,6 @@ }, "description": "EG 03, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4325.EG.003", "maps": [], @@ -234243,8 +220739,6 @@ }, "description": "EG 04, Freilager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4325.EG.004", "maps": [], @@ -234277,8 +220771,6 @@ }, "description": "EG 05, Freilager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4325.EG.005", "maps": [], @@ -234311,8 +220803,6 @@ }, "description": "EG 06, Freilager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4325.EG.006", "maps": [], @@ -234345,8 +220835,6 @@ }, "description": "EG 07, Freilager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4325.EG.007", "maps": [], @@ -234379,8 +220867,6 @@ }, "description": "001, Trafostation XII", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4353.EG.001", "maps": [], @@ -234413,8 +220899,6 @@ }, "description": "002, Trafostation XII", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4353.EG.002", "maps": [], @@ -234447,8 +220931,6 @@ }, "description": "003, Trafostation XII", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4353.EG.003", "maps": [], @@ -234481,8 +220963,6 @@ }, "description": "004, Trafostation XII", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4353.EG.004", "maps": [], @@ -234515,8 +220995,6 @@ }, "description": "001, Trafostation XXII", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4355.EG.001", "maps": [], @@ -234549,8 +221027,6 @@ }, "description": "002, Trafostation XXII", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4355.EG.002", "maps": [], @@ -234583,8 +221059,6 @@ }, "description": "003, Trafostation XXII", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4355.EG.003", "maps": [], @@ -234617,8 +221091,6 @@ }, "description": "001, Trafostation XVIII", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4361.EG.001", "maps": [], @@ -234651,8 +221123,6 @@ }, "description": "002, Trafostation XVIII", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4361.EG.002", "maps": [], @@ -234685,8 +221155,6 @@ }, "description": "003, Trafostation XVIII", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4361.EG.003", "maps": [], @@ -234719,8 +221187,6 @@ }, "description": "004, Trafostation XVIII", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4361.EG.004", "maps": [], @@ -234753,8 +221219,6 @@ }, "description": "001, Trafostation XXIII", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4362.EG.001", "maps": [], @@ -234787,8 +221251,6 @@ }, "description": "002, Trafostation XXIII", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4362.EG.002", "maps": [], @@ -234821,8 +221283,6 @@ }, "description": "003, Trafostation XXIII", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4362.EG.003", "maps": [], @@ -234855,8 +221315,6 @@ }, "description": "004, Trafostation XXIII", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4362.EG.004", "maps": [], @@ -234889,8 +221347,6 @@ }, "description": "001, Trafostation XVI", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4368.EG.001", "maps": [], @@ -234923,8 +221379,6 @@ }, "description": "002, Trafostation XVI", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4368.EG.002", "maps": [], @@ -234957,8 +221411,6 @@ }, "description": "003, Trafostation XVI", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4368.EG.003", "maps": [], @@ -234991,8 +221443,6 @@ }, "description": "004, Trafostation XVI", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4368.EG.004", "maps": [], @@ -235025,8 +221475,6 @@ }, "description": "001, Trafostation VIII", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4387.EG.001", "maps": [], @@ -235059,8 +221507,6 @@ }, "description": "002, Trafostation VIII", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4387.EG.002", "maps": [], @@ -235093,8 +221539,6 @@ }, "description": "003, Trafostation VIII", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4387.EG.003", "maps": [], @@ -235127,8 +221571,6 @@ }, "description": "004, Trafostation VIII", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4387.EG.004", "maps": [], @@ -235161,8 +221603,6 @@ }, "description": "8, Einzelgarage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4502.U1.006", "maps": [], @@ -235195,8 +221635,6 @@ }, "description": "006, B\u00fcro (FVZ)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4503.EG.106", "maps": [], @@ -235228,8 +221666,6 @@ }, "description": "008, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4503.EG.108", "maps": [], @@ -235261,8 +221697,6 @@ }, "description": "002, Trafostation XIX", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4512.EG.002", "maps": [], @@ -235295,8 +221729,6 @@ }, "description": "003, Trafostation XIX", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4512.EG.003", "maps": [], @@ -235329,8 +221761,6 @@ }, "description": "004, Trafostation XIX", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4512.EG.004", "maps": [], @@ -235363,8 +221793,6 @@ }, "description": "005, Trafostation XIX", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4512.EG.005", "maps": [], @@ -235397,8 +221825,6 @@ }, "description": "-0.02, Hausanschlussraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4522.U1.204", "maps": [], @@ -235431,8 +221857,6 @@ }, "description": "-0.03, Heizungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "4522.U1.205", "maps": [], @@ -235465,8 +221889,6 @@ }, "description": "001, Kompressor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4603.EG.019", "maps": [], @@ -235499,8 +221921,6 @@ }, "description": "1.01, Treppenhaus/Podest", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4800.01.101", "maps": [], @@ -235533,8 +221953,6 @@ }, "description": "1.01A, Treppenhaus/Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4800.01.101A", "maps": [], @@ -235567,8 +221985,6 @@ }, "description": "1.02, Technik/Heizung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4800.01.102", "maps": [], @@ -235601,8 +222017,6 @@ }, "description": "1.03, Flur (Studio A)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4800.01.103", "maps": [], @@ -235635,8 +222049,6 @@ }, "description": "1.04, G\u00e4stezimmer (A2)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4800.01.104", "maps": [], @@ -235669,8 +222081,6 @@ }, "description": "1.05, G\u00e4stezimmer (A1)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4800.01.105", "maps": [], @@ -235703,8 +222113,6 @@ }, "description": "1.06, K\u00fcche (Studio A)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4800.01.106", "maps": [], @@ -235737,8 +222145,6 @@ }, "description": "1.07, Bad (Studio A)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4800.01.107", "maps": [], @@ -235771,8 +222177,6 @@ }, "description": "1.08, Flur (Studio B)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4800.01.108", "maps": [], @@ -235805,8 +222209,6 @@ }, "description": "1.09, Bad (Studio B)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4800.01.109", "maps": [], @@ -235839,8 +222241,6 @@ }, "description": "1.10, K\u00fcche (Studio B)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4800.01.110", "maps": [], @@ -235873,8 +222273,6 @@ }, "description": "1.11, G\u00e4stezimmer (B1)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4800.01.111", "maps": [], @@ -235907,8 +222305,6 @@ }, "description": "1.12, G\u00e4stezimmer (B2)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "4800.01.112", "maps": [], @@ -235941,8 +222337,6 @@ }, "description": "2.01, Dachabstellraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "4800.02.201", "maps": [], @@ -235975,8 +222369,6 @@ }, "description": "0.01, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4800.EG.001", "maps": [], @@ -236009,8 +222401,6 @@ }, "description": "0.02, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4800.EG.002", "maps": [], @@ -236043,8 +222433,6 @@ }, "description": "0.03, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4800.EG.003", "maps": [], @@ -236077,8 +222465,6 @@ }, "description": "0.01A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4800.EG.009", "maps": [], @@ -236111,8 +222497,6 @@ }, "description": "0.10, Au\u00dfenbereich mit 7Stellpl\u00e4tzen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4800.EG.010", "maps": [], @@ -236145,8 +222529,6 @@ }, "description": "001, Kapelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "4920.EG.001", "maps": [], @@ -236179,8 +222561,6 @@ }, "description": "3001, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.001", "maps": [], @@ -236213,8 +222593,6 @@ }, "description": "3002, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.002", "maps": [], @@ -236247,8 +222625,6 @@ }, "description": "3003, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.003", "maps": [], @@ -236281,8 +222657,6 @@ }, "description": "3005, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.005", "maps": [], @@ -236315,8 +222689,6 @@ }, "description": "3006, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.006", "maps": [], @@ -236349,8 +222721,6 @@ }, "description": "3006A, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.006A", "maps": [], @@ -236383,8 +222753,6 @@ }, "description": "3007, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.007", "maps": [], @@ -236417,8 +222785,6 @@ }, "description": "3011, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.011", "maps": [], @@ -236451,8 +222817,6 @@ }, "description": "3012, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.012", "maps": [], @@ -236485,8 +222849,6 @@ }, "description": "3013, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.013", "maps": [], @@ -236519,8 +222881,6 @@ }, "description": "3017, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.017", "maps": [], @@ -236553,8 +222913,6 @@ }, "description": "3019, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.019", "maps": [], @@ -236587,8 +222945,6 @@ }, "description": "3021, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.021", "maps": [], @@ -236621,8 +222977,6 @@ }, "description": "3023, Arbeitsraum/mit Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.023", "maps": [], @@ -236687,8 +223041,6 @@ }, "description": "3024A, K\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.024A", "maps": [], @@ -236721,8 +223073,6 @@ }, "description": "3025, Arbeitsraum/mit Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.025", "maps": [], @@ -236755,8 +223105,6 @@ }, "description": "3026, EDV-Raum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.026", "maps": [], @@ -236789,8 +223137,6 @@ }, "description": "3027, Arbeitsraum/mit Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.027", "maps": [], @@ -236823,8 +223169,6 @@ }, "description": "3028, Arbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.028", "maps": [], @@ -236857,8 +223201,6 @@ }, "description": "3029, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.029", "maps": [], @@ -236891,8 +223233,6 @@ }, "description": "3033, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.033", "maps": [], @@ -236925,8 +223265,6 @@ }, "description": "3035, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.035", "maps": [], @@ -236959,8 +223297,6 @@ }, "description": "3037, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.037", "maps": [], @@ -236993,8 +223329,6 @@ }, "description": "3040, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.040", "maps": [], @@ -237027,8 +223361,6 @@ }, "description": "3041, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.041", "maps": [], @@ -237061,8 +223393,6 @@ }, "description": "3042, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.042", "maps": [], @@ -237095,8 +223425,6 @@ }, "description": "3043, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.043", "maps": [], @@ -237129,8 +223457,6 @@ }, "description": "3044, Arbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.044", "maps": [], @@ -237195,8 +223521,6 @@ }, "description": "3047, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.047", "maps": [], @@ -237229,8 +223553,6 @@ }, "description": "3049, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.049", "maps": [], @@ -237263,8 +223585,6 @@ }, "description": "3051, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.051", "maps": [], @@ -237297,8 +223617,6 @@ }, "description": "3052, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.052", "maps": [], @@ -237331,8 +223649,6 @@ }, "description": "3053, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.053", "maps": [], @@ -237365,8 +223681,6 @@ }, "description": "3057, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.057", "maps": [], @@ -237399,8 +223713,6 @@ }, "description": "3061, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.061", "maps": [], @@ -237433,8 +223745,6 @@ }, "description": "3063, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.063", "maps": [], @@ -237467,8 +223777,6 @@ }, "description": "3065, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.065", "maps": [], @@ -237501,8 +223809,6 @@ }, "description": "3066, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.066", "maps": [], @@ -237535,8 +223841,6 @@ }, "description": "3069, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.069", "maps": [], @@ -237569,8 +223873,6 @@ }, "description": "3071, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.071", "maps": [], @@ -237603,8 +223905,6 @@ }, "description": "3073, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.073", "maps": [], @@ -237637,8 +223937,6 @@ }, "description": "3074, B\u00fcro (gem. Nutz.)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.074", "maps": [], @@ -237671,8 +223969,6 @@ }, "description": "3075, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.075", "maps": [], @@ -237705,8 +224001,6 @@ }, "description": "3076, Physiklabor (gem. Nutz.)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.076", "maps": [], @@ -237739,8 +224033,6 @@ }, "description": "3077, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.077", "maps": [], @@ -237773,8 +224065,6 @@ }, "description": "3078, Kopierraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.078", "maps": [], @@ -237807,8 +224097,6 @@ }, "description": "3079, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.079", "maps": [], @@ -237841,8 +224129,6 @@ }, "description": "3081, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.081", "maps": [], @@ -237875,8 +224161,6 @@ }, "description": "3082, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.082", "maps": [], @@ -237909,8 +224193,6 @@ }, "description": "3083, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.083", "maps": [], @@ -237943,8 +224225,6 @@ }, "description": "3087, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.087", "maps": [], @@ -237977,8 +224257,6 @@ }, "description": "3089, Arbeitsraum (gem. Nutz.)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.089", "maps": [], @@ -238011,8 +224289,6 @@ }, "description": "3091, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.091", "maps": [], @@ -238045,8 +224321,6 @@ }, "description": "3092, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.092", "maps": [], @@ -238079,8 +224353,6 @@ }, "description": "3092A, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.092A", "maps": [], @@ -238113,8 +224385,6 @@ }, "description": "3093, Arbeitsraum/mit Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.093", "maps": [], @@ -238147,8 +224417,6 @@ }, "description": "3094, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.094", "maps": [], @@ -238181,8 +224449,6 @@ }, "description": "3096, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.096", "maps": [], @@ -238215,8 +224481,6 @@ }, "description": "3101, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.101", "maps": [], @@ -238249,8 +224513,6 @@ }, "description": "3102, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.102", "maps": [], @@ -238283,8 +224545,6 @@ }, "description": "3111, Studentenarbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.111", "maps": [], @@ -238317,8 +224577,6 @@ }, "description": "3112, Physiklabor (einfach)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.112", "maps": [], @@ -238351,8 +224609,6 @@ }, "description": "3113, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.113", "maps": [], @@ -238385,8 +224641,6 @@ }, "description": "3118, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.118", "maps": [], @@ -238419,8 +224673,6 @@ }, "description": "3123, Studentenarbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.123", "maps": [], @@ -238453,8 +224705,6 @@ }, "description": "3123A, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.123A", "maps": [], @@ -238487,8 +224737,6 @@ }, "description": "3127, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.127", "maps": [], @@ -238521,8 +224769,6 @@ }, "description": "3130, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.130", "maps": [], @@ -238555,8 +224801,6 @@ }, "description": "3133, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.133", "maps": [], @@ -238589,8 +224833,6 @@ }, "description": "3137, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.137", "maps": [], @@ -238623,8 +224865,6 @@ }, "description": "3138, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.138", "maps": [], @@ -238657,8 +224897,6 @@ }, "description": "3141, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.141", "maps": [], @@ -238691,8 +224929,6 @@ }, "description": "3142, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.142", "maps": [], @@ -238725,8 +224961,6 @@ }, "description": "3143, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.143", "maps": [], @@ -238759,8 +224993,6 @@ }, "description": "3146, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.146", "maps": [], @@ -238793,8 +225025,6 @@ }, "description": "3146A, Umbau", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.146A", "maps": [], @@ -238827,8 +225057,6 @@ }, "description": "3154, Umbau", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.154", "maps": [], @@ -238861,8 +225089,6 @@ }, "description": "3154A, Umbau", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.154A", "maps": [], @@ -238895,8 +225121,6 @@ }, "description": "3161, Umbau", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.161", "maps": [], @@ -238929,8 +225153,6 @@ }, "description": "3161A, Umbau", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.161A", "maps": [], @@ -238963,8 +225185,6 @@ }, "description": "3163, Umbau", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.163", "maps": [], @@ -238997,8 +225217,6 @@ }, "description": "3166, Umbau", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.166", "maps": [], @@ -239031,8 +225249,6 @@ }, "description": "3167, Umbau", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.167", "maps": [], @@ -239065,8 +225281,6 @@ }, "description": "3172, Umbau", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.172", "maps": [], @@ -239099,8 +225313,6 @@ }, "description": "3178, Umbau", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.178", "maps": [], @@ -239133,8 +225345,6 @@ }, "description": "3203, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.203", "maps": [], @@ -239167,8 +225377,6 @@ }, "description": "3205, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.205", "maps": [], @@ -239201,8 +225409,6 @@ }, "description": "3206, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.206", "maps": [], @@ -239235,8 +225441,6 @@ }, "description": "3206A, Dusche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.206A", "maps": [], @@ -239269,8 +225473,6 @@ }, "description": "3207, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.207", "maps": [], @@ -239303,8 +225505,6 @@ }, "description": "3209, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.209", "maps": [], @@ -239337,8 +225537,6 @@ }, "description": "3210, Aufenthaltsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.210", "maps": [], @@ -239371,8 +225569,6 @@ }, "description": "3211, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.211", "maps": [], @@ -239405,8 +225601,6 @@ }, "description": "3212, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.212", "maps": [], @@ -239439,8 +225633,6 @@ }, "description": "3213, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.213", "maps": [], @@ -239473,8 +225665,6 @@ }, "description": "3214, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.214", "maps": [], @@ -239507,8 +225697,6 @@ }, "description": "3215, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.215", "maps": [], @@ -239541,8 +225729,6 @@ }, "description": "3216, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.216", "maps": [], @@ -239575,8 +225761,6 @@ }, "description": "3217, Prof.-B\u00fcro T30", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.217", "maps": [], @@ -239609,8 +225793,6 @@ }, "description": "3218, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.218", "maps": [], @@ -239643,8 +225825,6 @@ }, "description": "3220, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.220", "maps": [], @@ -239677,8 +225857,6 @@ }, "description": "3221, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.221", "maps": [], @@ -239711,8 +225889,6 @@ }, "description": "3222, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.222", "maps": [], @@ -239745,8 +225921,6 @@ }, "description": "3223, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.223", "maps": [], @@ -239779,8 +225953,6 @@ }, "description": "3224, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.224", "maps": [], @@ -239813,8 +225985,6 @@ }, "description": "3225, Prof.-B\u00fcro T34", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.225", "maps": [], @@ -239847,8 +226017,6 @@ }, "description": "3226, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.226", "maps": [], @@ -239881,8 +226049,6 @@ }, "description": "3228, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.228", "maps": [], @@ -239915,8 +226081,6 @@ }, "description": "3229, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.229", "maps": [], @@ -239949,8 +226113,6 @@ }, "description": "3231, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.231", "maps": [], @@ -239983,8 +226145,6 @@ }, "description": "3235, Lesesaal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.235", "maps": [], @@ -240017,8 +226177,6 @@ }, "description": "3235A, Rampe/Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.235A", "maps": [], @@ -240051,8 +226209,6 @@ }, "description": "3235C, Einzelarbeitsraum 8", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.235C", "maps": [], @@ -240085,8 +226241,6 @@ }, "description": "3235D, Einzelarbeitsraum 7", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.235D", "maps": [], @@ -240119,8 +226273,6 @@ }, "description": "3235E, Einzelarbeitsraum 6", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.235E", "maps": [], @@ -240153,8 +226305,6 @@ }, "description": "3235F, Einzelarbeitsraum 5", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.235F", "maps": [], @@ -240187,8 +226337,6 @@ }, "description": "3235G, Einzelarbeitsraum 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.235G", "maps": [], @@ -240221,8 +226369,6 @@ }, "description": "3235H, Einzelarbeitsraum 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.235H", "maps": [], @@ -240255,8 +226401,6 @@ }, "description": "3235I, Einzelarbeitsraum 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.235I", "maps": [], @@ -240289,8 +226433,6 @@ }, "description": "3235J, Einzelarbeitsraum 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.235J", "maps": [], @@ -240323,8 +226465,6 @@ }, "description": "3235K, Foyer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.235K", "maps": [], @@ -240357,8 +226497,6 @@ }, "description": "3235L, Theke", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.235L", "maps": [], @@ -240391,8 +226529,6 @@ }, "description": "3237, Kopierraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.237", "maps": [], @@ -240425,8 +226561,6 @@ }, "description": "3237A, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.237A", "maps": [], @@ -240459,8 +226593,6 @@ }, "description": "3237B, ELT-Unterv.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.237B", "maps": [], @@ -240493,8 +226625,6 @@ }, "description": "3237C, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.237C", "maps": [], @@ -240527,8 +226657,6 @@ }, "description": "3237D, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.237D", "maps": [], @@ -240561,8 +226689,6 @@ }, "description": "3238, Schaltzentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.238", "maps": [], @@ -240595,8 +226721,6 @@ }, "description": "3239, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.239", "maps": [], @@ -240629,8 +226753,6 @@ }, "description": "3240, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.240", "maps": [], @@ -240663,8 +226785,6 @@ }, "description": "3241, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.241", "maps": [], @@ -240697,8 +226817,6 @@ }, "description": "3242, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.242", "maps": [], @@ -240731,8 +226849,6 @@ }, "description": "3243, Arbeitsraum/mit Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.243", "maps": [], @@ -240765,8 +226881,6 @@ }, "description": "3245, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.245", "maps": [], @@ -240799,8 +226913,6 @@ }, "description": "3246, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.246", "maps": [], @@ -240833,8 +226945,6 @@ }, "description": "3247, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.247", "maps": [], @@ -240867,8 +226977,6 @@ }, "description": "3248, Prof.-B\u00fcro T32", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.248", "maps": [], @@ -240901,8 +227009,6 @@ }, "description": "3250, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.250", "maps": [], @@ -240935,8 +227041,6 @@ }, "description": "3251, Prof.-B\u00fcro T30", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.251", "maps": [], @@ -240969,8 +227073,6 @@ }, "description": "3253, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.253", "maps": [], @@ -241003,8 +227105,6 @@ }, "description": "3255, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.255", "maps": [], @@ -241037,8 +227137,6 @@ }, "description": "3257, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.257", "maps": [], @@ -241071,8 +227169,6 @@ }, "description": "3259, Arbeitsraum/mit Exp.Arb.Platz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.259", "maps": [], @@ -241105,8 +227201,6 @@ }, "description": "3263, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.263", "maps": [], @@ -241139,8 +227233,6 @@ }, "description": "3265, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.265", "maps": [], @@ -241205,8 +227297,6 @@ }, "description": "3269, Arbeitsraum/mit Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.269", "maps": [], @@ -241239,8 +227329,6 @@ }, "description": "3271, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.271", "maps": [], @@ -241273,8 +227361,6 @@ }, "description": "3273, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.273", "maps": [], @@ -241307,8 +227393,6 @@ }, "description": "3274, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.274", "maps": [], @@ -241341,8 +227425,6 @@ }, "description": "3275, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.275", "maps": [], @@ -241375,8 +227457,6 @@ }, "description": "3276, Denkerzelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.276", "maps": [], @@ -241409,8 +227489,6 @@ }, "description": "3277, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.277", "maps": [], @@ -241443,8 +227521,6 @@ }, "description": "3278, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.278", "maps": [], @@ -241477,8 +227553,6 @@ }, "description": "3279, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.279", "maps": [], @@ -241511,8 +227585,6 @@ }, "description": "3282, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.282", "maps": [], @@ -241545,8 +227617,6 @@ }, "description": "3283, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.283", "maps": [], @@ -241579,8 +227649,6 @@ }, "description": "3284, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.284", "maps": [], @@ -241613,8 +227681,6 @@ }, "description": "3285, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.285", "maps": [], @@ -241647,8 +227713,6 @@ }, "description": "3287, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.287", "maps": [], @@ -241681,8 +227745,6 @@ }, "description": "3289, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.289", "maps": [], @@ -241715,8 +227777,6 @@ }, "description": "3291, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.291", "maps": [], @@ -241749,8 +227809,6 @@ }, "description": "3292, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.292", "maps": [], @@ -241783,8 +227841,6 @@ }, "description": "3293, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.293", "maps": [], @@ -241817,8 +227873,6 @@ }, "description": "3294, Abstellraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.294", "maps": [], @@ -241851,8 +227905,6 @@ }, "description": "3295, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.295", "maps": [], @@ -241885,8 +227937,6 @@ }, "description": "3296, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.296", "maps": [], @@ -241919,8 +227969,6 @@ }, "description": "3301, Denkerzelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.301", "maps": [], @@ -241953,8 +228001,6 @@ }, "description": "3302, Denkerzelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.302", "maps": [], @@ -241987,8 +228033,6 @@ }, "description": "3303, Denkerzelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.303", "maps": [], @@ -242021,8 +228065,6 @@ }, "description": "3304, Denkerzelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.304", "maps": [], @@ -242055,8 +228097,6 @@ }, "description": "3305, Denkerzelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.305", "maps": [], @@ -242089,8 +228129,6 @@ }, "description": "3306, Denkerzelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.306", "maps": [], @@ -242123,8 +228161,6 @@ }, "description": "3307, Denkerzelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.307", "maps": [], @@ -242157,8 +228193,6 @@ }, "description": "3308, Denkerzelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.308", "maps": [], @@ -242191,8 +228225,6 @@ }, "description": "3309, Denkerzelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.309", "maps": [], @@ -242225,8 +228257,6 @@ }, "description": "3310, Denkerzelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.310", "maps": [], @@ -242259,8 +228289,6 @@ }, "description": "3311, Denkerzelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.311", "maps": [], @@ -242293,8 +228321,6 @@ }, "description": "3312, Denkerzelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.312", "maps": [], @@ -242327,8 +228353,6 @@ }, "description": "3313, Denkerzelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.313", "maps": [], @@ -242361,8 +228385,6 @@ }, "description": "3314, Denkerzelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.314", "maps": [], @@ -242395,8 +228417,6 @@ }, "description": "3315, Denkerzelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.315", "maps": [], @@ -242429,8 +228449,6 @@ }, "description": "3316, Denkerzelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.316", "maps": [], @@ -242463,8 +228481,6 @@ }, "description": "3317, Denkerzelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.317", "maps": [], @@ -242497,8 +228513,6 @@ }, "description": "3318, Denkerzelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.318", "maps": [], @@ -242531,8 +228545,6 @@ }, "description": "3319, Denkerzelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.319", "maps": [], @@ -242565,8 +228577,6 @@ }, "description": "3320, Denkerzelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.320", "maps": [], @@ -242599,8 +228609,6 @@ }, "description": "3321, Denkerzelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.321", "maps": [], @@ -242633,8 +228641,6 @@ }, "description": "3322, Denkerzelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.322", "maps": [], @@ -242667,8 +228673,6 @@ }, "description": "3323, Denkerzelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.323", "maps": [], @@ -242701,8 +228705,6 @@ }, "description": "3324, Denkerzelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.324", "maps": [], @@ -242735,8 +228737,6 @@ }, "description": "3325, Denkerzelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.325", "maps": [], @@ -242769,8 +228769,6 @@ }, "description": "3326, Denkerzelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.326", "maps": [], @@ -242803,8 +228801,6 @@ }, "description": "3327, Denkerzelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.327", "maps": [], @@ -242837,8 +228833,6 @@ }, "description": "3328, Denkerzelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.328", "maps": [], @@ -242871,8 +228865,6 @@ }, "description": "3329, Denkerzelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.329", "maps": [], @@ -242905,8 +228897,6 @@ }, "description": "3330, Denkerzelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.330", "maps": [], @@ -242939,8 +228929,6 @@ }, "description": "3331, Denkerzelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.331", "maps": [], @@ -242973,8 +228961,6 @@ }, "description": "3332, Denkerzelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.332", "maps": [], @@ -243007,8 +228993,6 @@ }, "description": "3333, Prof.-B\u00fcro T30", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.333", "maps": [], @@ -243041,8 +229025,6 @@ }, "description": "3334, Prof.-B\u00fcro T30", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.334", "maps": [], @@ -243075,8 +229057,6 @@ }, "description": "3337, Prof.-B\u00fcro T30", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.337", "maps": [], @@ -243109,8 +229089,6 @@ }, "description": "3338, Prof.-B\u00fcro T37", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.338", "maps": [], @@ -243257,8 +229235,6 @@ }, "description": "3501, Elektronik-/Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.501", "maps": [], @@ -243291,8 +229267,6 @@ }, "description": "3502, Bakt., Biol., Biochem. Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.502", "maps": [], @@ -243325,8 +229299,6 @@ }, "description": "3503, Bakt., Biol., Biochem. Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.503", "maps": [], @@ -243359,8 +229331,6 @@ }, "description": "3504, Bakt., Biol., Biochem. Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.504", "maps": [], @@ -243393,8 +229363,6 @@ }, "description": "3505, Bakt., Biol., Biochem. Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.505", "maps": [], @@ -243427,8 +229395,6 @@ }, "description": "3506, Bakt., Biol., Biochem. Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.506", "maps": [], @@ -243461,8 +229427,6 @@ }, "description": "3510, Rechnerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.510", "maps": [], @@ -243495,8 +229459,6 @@ }, "description": "3511, E-Labor/PH-Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.511", "maps": [], @@ -243529,8 +229491,6 @@ }, "description": "3519, E-Labor/PH-Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.515", "maps": [], @@ -243563,8 +229523,6 @@ }, "description": "3518, Physiklabor (K. B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.518", "maps": [], @@ -243597,8 +229555,6 @@ }, "description": "3527, Physiklabor m. lufttechn. Anf.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.527", "maps": [], @@ -243631,8 +229587,6 @@ }, "description": "3528, Physiklabor (einfach)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.528", "maps": [], @@ -243665,8 +229619,6 @@ }, "description": "3534, Physiklabor (einfach)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.534", "maps": [], @@ -243699,8 +229651,6 @@ }, "description": "3541, Reinraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.541", "maps": [], @@ -243733,8 +229683,6 @@ }, "description": "3542, Physiklabor (einfach)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.542", "maps": [], @@ -243767,8 +229715,6 @@ }, "description": "3548, Physiklabor (einfach)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.548", "maps": [], @@ -243801,8 +229747,6 @@ }, "description": "3549, Physiklabor (einfach)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.549", "maps": [], @@ -243835,8 +229779,6 @@ }, "description": "3554, B\u00fcro m. man./exp. Arbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.554", "maps": [], @@ -243869,8 +229811,6 @@ }, "description": "3558, Physiklabor (einfach)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.558", "maps": [], @@ -243903,8 +229843,6 @@ }, "description": "3559, Reinraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.559", "maps": [], @@ -243937,8 +229875,6 @@ }, "description": "3564, B\u00fcro m. man./exp. Arbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.564", "maps": [], @@ -243971,8 +229907,6 @@ }, "description": "3567, Elektroniklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.567", "maps": [], @@ -244005,8 +229939,6 @@ }, "description": "3567A, Kopierer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.567A", "maps": [], @@ -244039,8 +229971,6 @@ }, "description": "3568, Physiklabor (einfach)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.568", "maps": [], @@ -244073,8 +230003,6 @@ }, "description": "3573, Physiklabor (einfach)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.573", "maps": [], @@ -244107,8 +230035,6 @@ }, "description": "3573A, Physiklabor (einfach)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.573A", "maps": [], @@ -244141,8 +230067,6 @@ }, "description": "3574, B\u00fcro m. man./exp. Arbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.574", "maps": [], @@ -244175,8 +230099,6 @@ }, "description": "3578, B\u00fcro m. man./exp. Arbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.578", "maps": [], @@ -244209,8 +230131,6 @@ }, "description": "3701, Arbeitsraum/mit Exp.Arb.Platz (gem. Nutz.)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.701", "maps": [], @@ -244243,8 +230163,6 @@ }, "description": "3702, Vakuumtechnik-Raum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.702", "maps": [], @@ -244277,8 +230195,6 @@ }, "description": "3713, Aufenthalt/Werkstatt (gem. Nutz.)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.713", "maps": [], @@ -244311,8 +230227,6 @@ }, "description": "3717, Feinmech. Werkstatt (gem. Nutz.)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.717", "maps": [], @@ -244345,8 +230259,6 @@ }, "description": "3718, Arbeitsraum/mit Exp.Arb.Platz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.718", "maps": [], @@ -244379,8 +230291,6 @@ }, "description": "3721, Feinmech. Werkstatt (gem. Nutz.)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.721", "maps": [], @@ -244413,8 +230323,6 @@ }, "description": "3726, Physiklabor m. Lufttechn. Anf.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.726", "maps": [], @@ -244479,8 +230387,6 @@ }, "description": "3734A, K\u00fcche (gem. Nutz.)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.734A", "maps": [], @@ -244513,8 +230419,6 @@ }, "description": "3742, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.742", "maps": [], @@ -244547,8 +230451,6 @@ }, "description": "3742A, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.742A", "maps": [], @@ -244581,8 +230483,6 @@ }, "description": "3745, Arbeitsraum/ohn.Besp.Grp. (gem. Nutz.)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.745", "maps": [], @@ -244615,8 +230515,6 @@ }, "description": "3749, Arbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.749", "maps": [], @@ -244649,8 +230547,6 @@ }, "description": "3752, Physiklabor (einfach)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.752", "maps": [], @@ -244683,8 +230579,6 @@ }, "description": "3755, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.755", "maps": [], @@ -244717,8 +230611,6 @@ }, "description": "3762, Physiklabor (einfach)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.762", "maps": [], @@ -244751,8 +230643,6 @@ }, "description": "3763, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.763", "maps": [], @@ -244785,8 +230675,6 @@ }, "description": "3769, Chemielabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.769", "maps": [], @@ -244819,8 +230707,6 @@ }, "description": "3772, Physiklabor (einfach)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.772", "maps": [], @@ -244853,8 +230739,6 @@ }, "description": "3901, Flur 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.901", "maps": [], @@ -244887,8 +230771,6 @@ }, "description": "3902, Flur 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.902", "maps": [], @@ -244921,8 +230803,6 @@ }, "description": "3903, Flur 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.903", "maps": [], @@ -244955,8 +230835,6 @@ }, "description": "3904, Flur 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.904", "maps": [], @@ -244989,8 +230867,6 @@ }, "description": "3905, Flur 5", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.905", "maps": [], @@ -245023,8 +230899,6 @@ }, "description": "3906, Flur 6", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.906", "maps": [], @@ -245057,8 +230931,6 @@ }, "description": "3907, Flur 7", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.907", "maps": [], @@ -245091,8 +230963,6 @@ }, "description": "3908, Flur 8", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.908", "maps": [], @@ -245125,8 +230995,6 @@ }, "description": "3909, Flur 9", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.909", "maps": [], @@ -245159,8 +231027,6 @@ }, "description": "3910, Flur 10", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.910", "maps": [], @@ -245193,8 +231059,6 @@ }, "description": "3911, Flur 11", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.911", "maps": [], @@ -245227,8 +231091,6 @@ }, "description": "3912, Flur 12", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.912", "maps": [], @@ -245261,8 +231123,6 @@ }, "description": "3921, Stiege 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.921", "maps": [], @@ -245295,8 +231155,6 @@ }, "description": "3922, Stiege 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.922", "maps": [], @@ -245329,8 +231187,6 @@ }, "description": "3923, Stiege 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.923", "maps": [], @@ -245363,8 +231219,6 @@ }, "description": "3924, Stiege 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.924", "maps": [], @@ -245397,8 +231251,6 @@ }, "description": "3925, Stiege 5", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.925", "maps": [], @@ -245431,8 +231283,6 @@ }, "description": "3926, Stiege 6", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.926", "maps": [], @@ -245465,8 +231315,6 @@ }, "description": "3927, Stiege 7", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.927", "maps": [], @@ -245499,8 +231347,6 @@ }, "description": "3928, Stiege 8", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.928", "maps": [], @@ -245533,8 +231379,6 @@ }, "description": "3929, Dachleiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.929", "maps": [], @@ -245567,8 +231411,6 @@ }, "description": "3941, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.941", "maps": [], @@ -245601,8 +231443,6 @@ }, "description": "3942, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5101.01.942", "maps": [], @@ -245635,8 +231475,6 @@ }, "description": "4235, Lesesaal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5101.02.235", "maps": [], @@ -245669,8 +231507,6 @@ }, "description": "4236, Gruppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5101.02.236", "maps": [], @@ -245703,8 +231539,6 @@ }, "description": "4237, Gruppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5101.02.237", "maps": [], @@ -245737,8 +231571,6 @@ }, "description": "4238, Gruppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5101.02.238", "maps": [], @@ -245771,8 +231603,6 @@ }, "description": "4239, Gruppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5101.02.239", "maps": [], @@ -245805,8 +231635,6 @@ }, "description": "2003, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.001", "maps": [], @@ -245839,8 +231667,6 @@ }, "description": "2000, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.001A", "maps": [], @@ -245873,8 +231699,6 @@ }, "description": "2005, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.005", "maps": [], @@ -245907,8 +231731,6 @@ }, "description": "2007, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.007", "maps": [], @@ -245941,8 +231763,6 @@ }, "description": "2009, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.009", "maps": [], @@ -245974,8 +231794,6 @@ }, "description": "2010, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.010", "maps": [], @@ -246008,8 +231826,6 @@ }, "description": "2010A, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.010A", "maps": [], @@ -246042,8 +231858,6 @@ }, "description": "2011, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.011", "maps": [], @@ -246076,8 +231890,6 @@ }, "description": "2012, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.012", "maps": [], @@ -246110,8 +231922,6 @@ }, "description": "2013, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.013", "maps": [], @@ -246144,8 +231954,6 @@ }, "description": "2014, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.014", "maps": [], @@ -246178,8 +231986,6 @@ }, "description": "2015, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.015", "maps": [], @@ -246212,8 +232018,6 @@ }, "description": "2016, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.016", "maps": [], @@ -246246,8 +232050,6 @@ }, "description": "2017, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.017", "maps": [], @@ -246280,8 +232082,6 @@ }, "description": "2019, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.019", "maps": [], @@ -246314,8 +232114,6 @@ }, "description": "2023, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.021", "maps": [], @@ -246380,8 +232178,6 @@ }, "description": "2024A, K\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.024A", "maps": [], @@ -246414,8 +232210,6 @@ }, "description": "2025, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.025", "maps": [], @@ -246448,8 +232242,6 @@ }, "description": "2027, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.027", "maps": [], @@ -246482,8 +232274,6 @@ }, "description": "2029, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.029", "maps": [], @@ -246516,8 +232306,6 @@ }, "description": "2031, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.031", "maps": [], @@ -246550,8 +232338,6 @@ }, "description": "2033, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.033", "maps": [], @@ -246584,8 +232370,6 @@ }, "description": "2035, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.035", "maps": [], @@ -246618,8 +232402,6 @@ }, "description": "2037, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.037", "maps": [], @@ -246652,8 +232434,6 @@ }, "description": "2039, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.039", "maps": [], @@ -246686,8 +232466,6 @@ }, "description": "2040, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.040", "maps": [], @@ -246720,8 +232498,6 @@ }, "description": "2041, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.041", "maps": [], @@ -246754,8 +232530,6 @@ }, "description": "2042, Beh.-WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.042", "maps": [], @@ -246788,8 +232562,6 @@ }, "description": "2043, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.043", "maps": [], @@ -246822,8 +232594,6 @@ }, "description": "2044, Arbeitsraum m. Exp. Arb. Pl.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.044", "maps": [], @@ -246856,8 +232626,6 @@ }, "description": "2045, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.045", "maps": [], @@ -246890,8 +232658,6 @@ }, "description": "2047, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.047", "maps": [], @@ -246924,8 +232690,6 @@ }, "description": "2048, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.048", "maps": [], @@ -246958,8 +232722,6 @@ }, "description": "2049, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.049", "maps": [], @@ -246992,8 +232754,6 @@ }, "description": "2051, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.051", "maps": [], @@ -247026,8 +232786,6 @@ }, "description": "2052, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.052", "maps": [], @@ -247060,8 +232818,6 @@ }, "description": "2052A, Abstellraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.052A", "maps": [], @@ -247094,8 +232850,6 @@ }, "description": "2053, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.053", "maps": [], @@ -247128,8 +232882,6 @@ }, "description": "2055, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.055", "maps": [], @@ -247162,8 +232914,6 @@ }, "description": "2057, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.057", "maps": [], @@ -247196,8 +232946,6 @@ }, "description": "2059, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.059", "maps": [], @@ -247230,8 +232978,6 @@ }, "description": "2061, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.061", "maps": [], @@ -247264,8 +233010,6 @@ }, "description": "2069, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.069", "maps": [], @@ -247298,8 +233042,6 @@ }, "description": "2071, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.071", "maps": [], @@ -247332,8 +233074,6 @@ }, "description": "2072, Flur/\u00dcbergang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.072", "maps": [], @@ -247366,8 +233106,6 @@ }, "description": "2073, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.073", "maps": [], @@ -247432,8 +233170,6 @@ }, "description": "2074A, K\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.074A", "maps": [], @@ -247466,8 +233202,6 @@ }, "description": "2075, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.075", "maps": [], @@ -247500,8 +233234,6 @@ }, "description": "2077, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.077", "maps": [], @@ -247534,8 +233266,6 @@ }, "description": "2081, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.081", "maps": [], @@ -247568,8 +233298,6 @@ }, "description": "2082, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.082", "maps": [], @@ -247602,8 +233330,6 @@ }, "description": "2083, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.083", "maps": [], @@ -247636,8 +233362,6 @@ }, "description": "2085, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.085", "maps": [], @@ -247670,8 +233394,6 @@ }, "description": "2087, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.087", "maps": [], @@ -247704,8 +233426,6 @@ }, "description": "2089, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.089", "maps": [], @@ -247738,8 +233458,6 @@ }, "description": "2091, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.091", "maps": [], @@ -247772,8 +233490,6 @@ }, "description": "2092, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.092", "maps": [], @@ -247806,8 +233522,6 @@ }, "description": "2092A, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.092A", "maps": [], @@ -247840,8 +233554,6 @@ }, "description": "2093, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.093", "maps": [], @@ -247874,8 +233586,6 @@ }, "description": "2095, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.095", "maps": [], @@ -247908,8 +233618,6 @@ }, "description": "2096, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.096", "maps": [], @@ -247942,8 +233650,6 @@ }, "description": "2101, W\u00e4geraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.101", "maps": [], @@ -247976,8 +233682,6 @@ }, "description": "2102, Reinstraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.102", "maps": [], @@ -248010,8 +233714,6 @@ }, "description": "2102A, Reinstraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.102A", "maps": [], @@ -248044,8 +233746,6 @@ }, "description": "2110, Reinstraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.110", "maps": [], @@ -248078,8 +233778,6 @@ }, "description": "2111, Physiklabor (K. B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.111", "maps": [], @@ -248112,8 +233810,6 @@ }, "description": "2111A, Physiklabor (K. B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.111A", "maps": [], @@ -248145,8 +233841,6 @@ }, "description": "2118, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.118", "maps": [], @@ -248179,8 +233873,6 @@ }, "description": "2119, Physiklabor (einfach)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.119", "maps": [], @@ -248213,8 +233905,6 @@ }, "description": "2124, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.124", "maps": [], @@ -248247,8 +233937,6 @@ }, "description": "2125, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.125", "maps": [], @@ -248281,8 +233969,6 @@ }, "description": "2129, Feinmechanische Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.129", "maps": [], @@ -248315,8 +234001,6 @@ }, "description": "2131, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.131", "maps": [], @@ -248349,8 +234033,6 @@ }, "description": "2132, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.132", "maps": [], @@ -248383,8 +234065,6 @@ }, "description": "2142, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.142", "maps": [], @@ -248417,8 +234097,6 @@ }, "description": "2142A, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.142A", "maps": [], @@ -248451,8 +234129,6 @@ }, "description": "2152, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.152", "maps": [], @@ -248485,8 +234161,6 @@ }, "description": "2155, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.155", "maps": [], @@ -248519,8 +234193,6 @@ }, "description": "2159, Aufenthalt/Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.159", "maps": [], @@ -248553,8 +234225,6 @@ }, "description": "2162, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.162", "maps": [], @@ -248587,8 +234257,6 @@ }, "description": "2167, Physiklabor (einfach)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.167", "maps": [], @@ -248621,8 +234289,6 @@ }, "description": "2172, Physiklabor (einfach)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.172", "maps": [], @@ -248655,8 +234321,6 @@ }, "description": "2173, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.173", "maps": [], @@ -248689,8 +234353,6 @@ }, "description": "2201, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.201", "maps": [], @@ -248723,8 +234385,6 @@ }, "description": "2203, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.203", "maps": [], @@ -248757,8 +234417,6 @@ }, "description": "2205, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.205", "maps": [], @@ -248791,8 +234449,6 @@ }, "description": "2206, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.206", "maps": [], @@ -248825,8 +234481,6 @@ }, "description": "2207, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.207", "maps": [], @@ -248859,8 +234513,6 @@ }, "description": "2210, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.210", "maps": [], @@ -248893,8 +234545,6 @@ }, "description": "2211, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.211", "maps": [], @@ -248927,8 +234577,6 @@ }, "description": "2212, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.212", "maps": [], @@ -248961,8 +234609,6 @@ }, "description": "2213, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.213", "maps": [], @@ -248995,8 +234641,6 @@ }, "description": "2214, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.214", "maps": [], @@ -249029,8 +234673,6 @@ }, "description": "2216, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.216", "maps": [], @@ -249063,8 +234705,6 @@ }, "description": "2217, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.217", "maps": [], @@ -249097,8 +234737,6 @@ }, "description": "2219, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.219", "maps": [], @@ -249131,8 +234769,6 @@ }, "description": "2227, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.223", "maps": [], @@ -249197,8 +234833,6 @@ }, "description": "2224A, K\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.224A", "maps": [], @@ -249231,8 +234865,6 @@ }, "description": "2225, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.225", "maps": [], @@ -249265,8 +234897,6 @@ }, "description": "2228, Aufenthaltsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.228", "maps": [], @@ -249299,8 +234929,6 @@ }, "description": "2230, Windfang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.230", "maps": [], @@ -249333,8 +234961,6 @@ }, "description": "2230A, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.230A", "maps": [], @@ -249367,8 +234993,6 @@ }, "description": "2236, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.236", "maps": [], @@ -249401,8 +235025,6 @@ }, "description": "2237, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.237", "maps": [], @@ -249435,8 +235057,6 @@ }, "description": "2237A, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.237A", "maps": [], @@ -249469,8 +235089,6 @@ }, "description": "2238, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.238", "maps": [], @@ -249503,8 +235121,6 @@ }, "description": "2239, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.239", "maps": [], @@ -249537,8 +235153,6 @@ }, "description": "2240, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.240", "maps": [], @@ -249571,8 +235185,6 @@ }, "description": "2241, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.241", "maps": [], @@ -249605,8 +235217,6 @@ }, "description": "2243, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.243", "maps": [], @@ -249639,8 +235249,6 @@ }, "description": "2245, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.245", "maps": [], @@ -249673,8 +235281,6 @@ }, "description": "2246, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.246", "maps": [], @@ -249707,8 +235313,6 @@ }, "description": "2247, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.247", "maps": [], @@ -249741,8 +235345,6 @@ }, "description": "2248, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.248", "maps": [], @@ -249775,8 +235377,6 @@ }, "description": "2250, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.250", "maps": [], @@ -249809,8 +235409,6 @@ }, "description": "2251, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.251", "maps": [], @@ -249843,8 +235441,6 @@ }, "description": "2252, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.252", "maps": [], @@ -249877,8 +235473,6 @@ }, "description": "2253, B\u00fcro/Dekanat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.253", "maps": [], @@ -249911,8 +235505,6 @@ }, "description": "2254, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.254", "maps": [], @@ -249945,8 +235537,6 @@ }, "description": "2257, Lernraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.257", "maps": [], @@ -249979,8 +235569,6 @@ }, "description": "2259, Cip-Pool 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.259", "maps": [], @@ -250013,8 +235601,6 @@ }, "description": "2260, Eingang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.260", "maps": [], @@ -250047,8 +235633,6 @@ }, "description": "2269, Erste-Hilfe-Raum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.269", "maps": [], @@ -250081,8 +235665,6 @@ }, "description": "2270, Arbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.270", "maps": [], @@ -250156,8 +235738,6 @@ }, "description": "2274, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.274", "maps": [], @@ -250190,8 +235770,6 @@ }, "description": "2276, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.276", "maps": [], @@ -250224,8 +235802,6 @@ }, "description": "2277, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.277", "maps": [], @@ -250258,8 +235834,6 @@ }, "description": "2278, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.278", "maps": [], @@ -250292,8 +235866,6 @@ }, "description": "2279, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.279", "maps": [], @@ -250326,8 +235898,6 @@ }, "description": "2280, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.280", "maps": [], @@ -250360,8 +235930,6 @@ }, "description": "2281, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.281", "maps": [], @@ -250394,8 +235962,6 @@ }, "description": "2283, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.283", "maps": [], @@ -250428,8 +235994,6 @@ }, "description": "2285, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.285", "maps": [], @@ -250462,8 +236026,6 @@ }, "description": "2289, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.289", "maps": [], @@ -250496,8 +236058,6 @@ }, "description": "2291, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.291", "maps": [], @@ -250530,8 +236090,6 @@ }, "description": "2293, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.293", "maps": [], @@ -250564,8 +236122,6 @@ }, "description": "2295, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.295", "maps": [], @@ -250598,8 +236154,6 @@ }, "description": "2296, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.296", "maps": [], @@ -250632,8 +236186,6 @@ }, "description": "2298, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.298", "maps": [], @@ -250666,8 +236218,6 @@ }, "description": "2299, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.299", "maps": [], @@ -250700,8 +236250,6 @@ }, "description": "2301, Physiklabor (K. B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.301", "maps": [], @@ -250734,8 +236282,6 @@ }, "description": "2302, Optisches Labor (K. B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.302", "maps": [], @@ -250768,8 +236314,6 @@ }, "description": "2302A, Optisches Labor (K. B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.302A", "maps": [], @@ -250802,8 +236346,6 @@ }, "description": "2302B, Optisches Labor (K. B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.302B", "maps": [], @@ -250836,8 +236378,6 @@ }, "description": "2302C, Optisches Labor (K. B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.302C", "maps": [], @@ -250870,8 +236410,6 @@ }, "description": "2312, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.312", "maps": [], @@ -250904,8 +236442,6 @@ }, "description": "2313, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.313", "maps": [], @@ -250938,8 +236474,6 @@ }, "description": "2321, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.321", "maps": [], @@ -250972,8 +236506,6 @@ }, "description": "2322, Lager m. lufttechn. Anforderungen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.322", "maps": [], @@ -251006,8 +236538,6 @@ }, "description": "2325, Feinmechanische Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.325", "maps": [], @@ -251040,8 +236570,6 @@ }, "description": "2326, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.326", "maps": [], @@ -251074,8 +236602,6 @@ }, "description": "2329, Feinmechanische Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.331", "maps": [], @@ -251108,8 +236634,6 @@ }, "description": "2334, Messraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.334", "maps": [], @@ -251142,8 +236666,6 @@ }, "description": "2335, Chemisch-techn. Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.335", "maps": [], @@ -251176,8 +236698,6 @@ }, "description": "2341, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.341", "maps": [], @@ -251210,8 +236730,6 @@ }, "description": "2341A, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.341A", "maps": [], @@ -251244,8 +236762,6 @@ }, "description": "2342, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.342", "maps": [], @@ -251278,8 +236794,6 @@ }, "description": "2352, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.352", "maps": [], @@ -251312,8 +236826,6 @@ }, "description": "2361, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.361", "maps": [], @@ -251346,8 +236858,6 @@ }, "description": "2362, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.362", "maps": [], @@ -251380,8 +236890,6 @@ }, "description": "2367, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.367", "maps": [], @@ -251414,8 +236922,6 @@ }, "description": "2372, Phys. Messraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.372", "maps": [], @@ -251448,8 +236954,6 @@ }, "description": "2372A, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.372A", "maps": [], @@ -251482,8 +236986,6 @@ }, "description": "2373, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.373", "maps": [], @@ -251516,8 +237018,6 @@ }, "description": "2373A, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.373A", "maps": [], @@ -251550,8 +237050,6 @@ }, "description": "2500, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.500", "maps": [], @@ -251667,8 +237165,6 @@ }, "description": "2501A, Projektorraum HS PH 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.501A", "maps": [], @@ -251867,8 +237363,6 @@ }, "description": "2701, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.701", "maps": [], @@ -251901,8 +237395,6 @@ }, "description": "2702, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.702", "maps": [], @@ -251935,8 +237427,6 @@ }, "description": "2707, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.707", "maps": [], @@ -251969,8 +237459,6 @@ }, "description": "2710, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.710", "maps": [], @@ -252003,8 +237491,6 @@ }, "description": "2713, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.713", "maps": [], @@ -252037,8 +237523,6 @@ }, "description": "2720, Elektroniklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.720", "maps": [], @@ -252071,8 +237555,6 @@ }, "description": "2732, Elektroniklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.732", "maps": [], @@ -252105,8 +237587,6 @@ }, "description": "2734, Elektroniklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.734", "maps": [], @@ -252139,8 +237619,6 @@ }, "description": "2735, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.735", "maps": [], @@ -252173,8 +237651,6 @@ }, "description": "2741, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.741", "maps": [], @@ -252207,8 +237683,6 @@ }, "description": "2744, Pysiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.744", "maps": [], @@ -252241,8 +237715,6 @@ }, "description": "2745, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.745", "maps": [], @@ -252275,8 +237747,6 @@ }, "description": "2751, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.751", "maps": [], @@ -252309,8 +237779,6 @@ }, "description": "2752, Laserlabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.752", "maps": [], @@ -252343,8 +237811,6 @@ }, "description": "2760, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.760", "maps": [], @@ -252377,8 +237843,6 @@ }, "description": "2761, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.761", "maps": [], @@ -252411,8 +237875,6 @@ }, "description": "2771, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.771", "maps": [], @@ -252445,8 +237907,6 @@ }, "description": "2774, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.774", "maps": [], @@ -252479,8 +237939,6 @@ }, "description": "2777, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.777", "maps": [], @@ -252513,8 +237971,6 @@ }, "description": "2901, Flur 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.901", "maps": [], @@ -252547,8 +238003,6 @@ }, "description": "2902, Flur 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.902", "maps": [], @@ -252581,8 +238035,6 @@ }, "description": "2903, Flur 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.903", "maps": [], @@ -252615,8 +238067,6 @@ }, "description": "2904, Flur 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.904", "maps": [], @@ -252649,8 +238099,6 @@ }, "description": "2905, Flur 5", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.905", "maps": [], @@ -252683,8 +238131,6 @@ }, "description": "2906, Flur 6", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.906", "maps": [], @@ -252717,8 +238163,6 @@ }, "description": "2907, Flur 7", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.907", "maps": [], @@ -252751,8 +238195,6 @@ }, "description": "2908, Flur 8", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.908", "maps": [], @@ -252785,8 +238227,6 @@ }, "description": "2909, Flur 9", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.909", "maps": [], @@ -252819,8 +238259,6 @@ }, "description": "2910, Flur 10", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.910", "maps": [], @@ -252853,8 +238291,6 @@ }, "description": "2911, Flur 11", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.911", "maps": [], @@ -252887,8 +238323,6 @@ }, "description": "2912, Flur 12", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.912", "maps": [], @@ -252921,8 +238355,6 @@ }, "description": "2913, Flur 13", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.913", "maps": [], @@ -252955,8 +238387,6 @@ }, "description": "2914, Flur 14", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.914", "maps": [], @@ -252989,8 +238419,6 @@ }, "description": "2915, Flur 15", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.915", "maps": [], @@ -253023,8 +238451,6 @@ }, "description": "2916, Flur 16", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.916", "maps": [], @@ -253057,8 +238483,6 @@ }, "description": "2917, PH-Foyer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.917", "maps": [], @@ -253091,8 +238515,6 @@ }, "description": "2921, Stiege 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.921", "maps": [], @@ -253125,8 +238547,6 @@ }, "description": "2922, Stiege 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.922", "maps": [], @@ -253159,8 +238579,6 @@ }, "description": "2923, Stiege 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.923", "maps": [], @@ -253193,8 +238611,6 @@ }, "description": "2924, Stiege 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.924", "maps": [], @@ -253227,8 +238643,6 @@ }, "description": "2925, Stiege 5", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.925", "maps": [], @@ -253261,8 +238675,6 @@ }, "description": "2926, Stiege 6", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.926", "maps": [], @@ -253295,8 +238707,6 @@ }, "description": "2927, Stiege 7", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.927", "maps": [], @@ -253329,8 +238739,6 @@ }, "description": "2928, Stiege 8", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.928", "maps": [], @@ -253363,8 +238771,6 @@ }, "description": "2929, Wendeltreppeneingang zur Bibliothek", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.929", "maps": [], @@ -253397,8 +238803,6 @@ }, "description": "2941, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.941", "maps": [], @@ -253431,8 +238835,6 @@ }, "description": "2942, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5101.EG.942", "maps": [], @@ -253465,8 +238867,6 @@ }, "description": "1001, Abstellraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.001", "maps": [], @@ -253499,8 +238899,6 @@ }, "description": "1003, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.003", "maps": [], @@ -253533,8 +238931,6 @@ }, "description": "1005, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.005", "maps": [], @@ -253567,8 +238963,6 @@ }, "description": "1006, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.006", "maps": [], @@ -253601,8 +238995,6 @@ }, "description": "1007, Feinmechanische Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.007", "maps": [], @@ -253635,8 +239027,6 @@ }, "description": "1012, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.012", "maps": [], @@ -253669,8 +239059,6 @@ }, "description": "1014, Umkleide", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.014", "maps": [], @@ -253703,8 +239091,6 @@ }, "description": "1014A, Waschraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.014A", "maps": [], @@ -253737,8 +239123,6 @@ }, "description": "1014B, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.014B", "maps": [], @@ -253771,8 +239155,6 @@ }, "description": "1019, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.019", "maps": [], @@ -253805,8 +239187,6 @@ }, "description": "1020, Arbeitsraum/mit Bespr.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.020", "maps": [], @@ -253839,8 +239219,6 @@ }, "description": "1021, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.021", "maps": [], @@ -253873,8 +239251,6 @@ }, "description": "1022, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.022", "maps": [], @@ -253907,8 +239283,6 @@ }, "description": "1022A, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.022A", "maps": [], @@ -253941,8 +239315,6 @@ }, "description": "1022B, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.022B", "maps": [], @@ -253975,8 +239347,6 @@ }, "description": "1023, Post", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.023", "maps": [], @@ -254009,8 +239379,6 @@ }, "description": "1026, Arbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.026", "maps": [], @@ -254043,8 +239411,6 @@ }, "description": "1029, Warenannahme / -ausgabe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.029", "maps": [], @@ -254077,8 +239443,6 @@ }, "description": "1041, Versorgung m.Gasen u.Fl\u00fcssigkeiten", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.041", "maps": [], @@ -254111,8 +239475,6 @@ }, "description": "1041A, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.041A", "maps": [], @@ -254145,8 +239507,6 @@ }, "description": "1042, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.042", "maps": [], @@ -254179,8 +239539,6 @@ }, "description": "1044, Messraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.044", "maps": [], @@ -254213,8 +239571,6 @@ }, "description": "1048, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.048", "maps": [], @@ -254247,8 +239603,6 @@ }, "description": "1050, Isotopenlabor m. Dekontamination", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.050", "maps": [], @@ -254281,8 +239635,6 @@ }, "description": "1051, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.051", "maps": [], @@ -254315,8 +239667,6 @@ }, "description": "1054, R\u00f6ntgenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.054", "maps": [], @@ -254349,8 +239699,6 @@ }, "description": "1055, Grobmetallwerkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.055", "maps": [], @@ -254383,8 +239731,6 @@ }, "description": "1056, Ofenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.056", "maps": [], @@ -254417,8 +239763,6 @@ }, "description": "1057, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.057", "maps": [], @@ -254451,8 +239795,6 @@ }, "description": "1061, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.061", "maps": [], @@ -254485,8 +239827,6 @@ }, "description": "1065, Physiklabor m. lufttechn. Anf.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.065", "maps": [], @@ -254519,8 +239859,6 @@ }, "description": "1066, Messraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.066", "maps": [], @@ -254553,8 +239891,6 @@ }, "description": "1067, Physiklabor m. lufttechn. Anf.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.067", "maps": [], @@ -254587,8 +239923,6 @@ }, "description": "1068, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.068", "maps": [], @@ -254621,8 +239955,6 @@ }, "description": "1069, Physiklabor m. lufttechn. Anf.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.069", "maps": [], @@ -254655,8 +239987,6 @@ }, "description": "1070, Phys. Messraum m. lufttechn. Anf.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.070", "maps": [], @@ -254689,8 +240019,6 @@ }, "description": "1070A, Phys. Messraum m. lufttechn. Anf.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.070A", "maps": [], @@ -254723,8 +240051,6 @@ }, "description": "1072, Messraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.072", "maps": [], @@ -254757,8 +240083,6 @@ }, "description": "1074, Messraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.074", "maps": [], @@ -254791,8 +240115,6 @@ }, "description": "1076, Messraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.076", "maps": [], @@ -254825,8 +240147,6 @@ }, "description": "1077, Reinlabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.077", "maps": [], @@ -254859,8 +240179,6 @@ }, "description": "1078, Messraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.078", "maps": [], @@ -254893,8 +240211,6 @@ }, "description": "1081, Messraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.081", "maps": [], @@ -254927,8 +240243,6 @@ }, "description": "1082, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.082", "maps": [], @@ -254961,8 +240275,6 @@ }, "description": "1082A, K\u00fchlraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.082A", "maps": [], @@ -254995,8 +240307,6 @@ }, "description": "1082B, K\u00fchlraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.082B", "maps": [], @@ -255029,8 +240339,6 @@ }, "description": "1085, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.085", "maps": [], @@ -255063,8 +240371,6 @@ }, "description": "1091, Messraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.091", "maps": [], @@ -255097,8 +240403,6 @@ }, "description": "1092, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.092", "maps": [], @@ -255131,8 +240435,6 @@ }, "description": "1092A, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.092A", "maps": [], @@ -255165,8 +240467,6 @@ }, "description": "1093, Messraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.093", "maps": [], @@ -255199,8 +240499,6 @@ }, "description": "1096, Elektrische Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.096", "maps": [], @@ -255233,8 +240531,6 @@ }, "description": "1101, Windfang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.101", "maps": [], @@ -255267,8 +240563,6 @@ }, "description": "1101A, Eingang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.101A", "maps": [], @@ -255301,8 +240595,6 @@ }, "description": "1111, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.111", "maps": [], @@ -255335,8 +240627,6 @@ }, "description": "1112, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.112", "maps": [], @@ -255410,8 +240700,6 @@ }, "description": "1122, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.122", "maps": [], @@ -255444,8 +240732,6 @@ }, "description": "1131, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.131", "maps": [], @@ -255478,8 +240764,6 @@ }, "description": "1132, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.132", "maps": [], @@ -255512,8 +240796,6 @@ }, "description": "PH 1141, Doktorand(inn)en-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.141", "maps": [], @@ -255546,8 +240828,6 @@ }, "description": "1142, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.142", "maps": [], @@ -255621,8 +240901,6 @@ }, "description": "1152, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.152", "maps": [], @@ -255696,8 +240974,6 @@ }, "description": "1162, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.162", "maps": [], @@ -255730,8 +241006,6 @@ }, "description": "1172, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.172", "maps": [], @@ -255764,8 +241038,6 @@ }, "description": "1182, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.182", "maps": [], @@ -255798,8 +241070,6 @@ }, "description": "1201, Abstellraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.201", "maps": [], @@ -255832,8 +241102,6 @@ }, "description": "1202, Eingang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.202", "maps": [], @@ -255866,8 +241134,6 @@ }, "description": "1203, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.203", "maps": [], @@ -255900,8 +241166,6 @@ }, "description": "1205, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.205", "maps": [], @@ -255934,8 +241198,6 @@ }, "description": "1206A, WC-Vorraum Damen u. Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.206A", "maps": [], @@ -255968,8 +241230,6 @@ }, "description": "1206B, WC-Damen u. Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.206B", "maps": [], @@ -256002,8 +241262,6 @@ }, "description": "1206C, Sanit\u00e4rraum H/D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.206C", "maps": [], @@ -256036,8 +241294,6 @@ }, "description": "1206D, WC-Damen u. Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.206D", "maps": [], @@ -256070,8 +241326,6 @@ }, "description": "1211, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.211", "maps": [], @@ -256104,8 +241358,6 @@ }, "description": "1212, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.212", "maps": [], @@ -256138,8 +241390,6 @@ }, "description": "1213, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.213", "maps": [], @@ -256172,8 +241422,6 @@ }, "description": "1214, Waschraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.214", "maps": [], @@ -256206,8 +241454,6 @@ }, "description": "1218, Aufenthalt/Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.218", "maps": [], @@ -256240,8 +241486,6 @@ }, "description": "1220, Aufenthalt/Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.220", "maps": [], @@ -256274,8 +241518,6 @@ }, "description": "1223, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.223", "maps": [], @@ -256308,8 +241550,6 @@ }, "description": "1227, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.227", "maps": [], @@ -256342,8 +241582,6 @@ }, "description": "1229, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.229", "maps": [], @@ -256376,8 +241614,6 @@ }, "description": "1231, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.231", "maps": [], @@ -256410,8 +241646,6 @@ }, "description": "1235, Magazin", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.235", "maps": [], @@ -256444,8 +241678,6 @@ }, "description": "1235A, Eingangsflur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.235A", "maps": [], @@ -256478,8 +241710,6 @@ }, "description": "1235B, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.235B", "maps": [], @@ -256512,8 +241742,6 @@ }, "description": "1235C, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.235C", "maps": [], @@ -256546,8 +241774,6 @@ }, "description": "1235D, Treppe Bibliothek", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.235D", "maps": [], @@ -256580,8 +241806,6 @@ }, "description": "1237, H\u00e4rteraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.237", "maps": [], @@ -256614,8 +241838,6 @@ }, "description": "1241, Gro\u00dfserver", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.241", "maps": [], @@ -256648,8 +241870,6 @@ }, "description": "1242, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.242", "maps": [], @@ -256682,8 +241902,6 @@ }, "description": "1244, TBG Neutralisation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.244", "maps": [], @@ -256716,8 +241934,6 @@ }, "description": "1244A, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.244A", "maps": [], @@ -256750,8 +241966,6 @@ }, "description": "1245, Sandstrahlraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.245", "maps": [], @@ -256784,8 +241998,6 @@ }, "description": "1249, Messraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.249", "maps": [], @@ -256818,8 +242030,6 @@ }, "description": "1254, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.254", "maps": [], @@ -256852,8 +242062,6 @@ }, "description": "1257, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.257", "maps": [], @@ -256886,8 +242094,6 @@ }, "description": "1259, Feinmechanische Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.259", "maps": [], @@ -256920,8 +242126,6 @@ }, "description": "1263, Schwei\u00dfraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.263", "maps": [], @@ -256954,8 +242158,6 @@ }, "description": "1265, Wasser-/Gasanlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.265", "maps": [], @@ -256988,8 +242190,6 @@ }, "description": "1266, Gas-Wasser-Z\u00e4hler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.266", "maps": [], @@ -257022,8 +242222,6 @@ }, "description": "1267, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.267", "maps": [], @@ -257056,8 +242254,6 @@ }, "description": "1268, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.268", "maps": [], @@ -257090,8 +242286,6 @@ }, "description": "1269, Messraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.269", "maps": [], @@ -257124,8 +242318,6 @@ }, "description": "1270, Messraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.270", "maps": [], @@ -257158,8 +242350,6 @@ }, "description": "1274, Schwei\u00dfraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.274", "maps": [], @@ -257192,8 +242382,6 @@ }, "description": "1275, Lager m. Strahlenschutz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.275", "maps": [], @@ -257226,8 +242414,6 @@ }, "description": "1277, Isotopenlabor m. Dekontamination", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.277", "maps": [], @@ -257260,8 +242446,6 @@ }, "description": "1278, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.278", "maps": [], @@ -257294,8 +242478,6 @@ }, "description": "1279, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.279", "maps": [], @@ -257328,8 +242510,6 @@ }, "description": "1281, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.281", "maps": [], @@ -257362,8 +242542,6 @@ }, "description": "1282, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.282", "maps": [], @@ -257396,8 +242574,6 @@ }, "description": "1282A, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.282A", "maps": [], @@ -257430,8 +242606,6 @@ }, "description": "1283, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.283", "maps": [], @@ -257464,8 +242638,6 @@ }, "description": "1285, Heizung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.285", "maps": [], @@ -257498,8 +242670,6 @@ }, "description": "1292, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.292", "maps": [], @@ -257532,8 +242702,6 @@ }, "description": "1296, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.296", "maps": [], @@ -257566,8 +242734,6 @@ }, "description": "1301, Grobmechanische Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.301", "maps": [], @@ -257600,8 +242766,6 @@ }, "description": "1302, Installationsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.302", "maps": [], @@ -257634,8 +242798,6 @@ }, "description": "1304, Installationsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.304", "maps": [], @@ -257668,8 +242830,6 @@ }, "description": "1306, Werkzeuglager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.306", "maps": [], @@ -257702,8 +242862,6 @@ }, "description": "1309, Grobmechanische Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.309", "maps": [], @@ -257736,8 +242894,6 @@ }, "description": "1321, Feinmechanische Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.321", "maps": [], @@ -257770,8 +242926,6 @@ }, "description": "1322, Arbeitsraum/ohn.Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.322", "maps": [], @@ -257804,8 +242958,6 @@ }, "description": "1326, Materiallagerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.326", "maps": [], @@ -257838,8 +242990,6 @@ }, "description": "1362, Holzbearbeitungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.362", "maps": [], @@ -257872,8 +243022,6 @@ }, "description": "1376, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.376", "maps": [], @@ -257906,8 +243054,6 @@ }, "description": "1378, B\u00fcro/NC-Maschinen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.378", "maps": [], @@ -257940,8 +243086,6 @@ }, "description": "PH 1380, Vorbereitungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.380", "maps": [], @@ -257974,8 +243118,6 @@ }, "description": "1380A, Luftkanal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.380A", "maps": [], @@ -258008,8 +243150,6 @@ }, "description": "1380B, Luftkanal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.380B", "maps": [], @@ -258042,8 +243182,6 @@ }, "description": "1382, TBG", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.382", "maps": [], @@ -258076,8 +243214,6 @@ }, "description": "1501, Lager/Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.501", "maps": [], @@ -258110,8 +243246,6 @@ }, "description": "1501A, Lager/Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.501A", "maps": [], @@ -258144,8 +243278,6 @@ }, "description": "1502, Telefonzentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.502", "maps": [], @@ -258178,8 +243310,6 @@ }, "description": "1504, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.504", "maps": [], @@ -258212,8 +243342,6 @@ }, "description": "1505, Klimazentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.505", "maps": [], @@ -258246,8 +243374,6 @@ }, "description": "1505A, Klimazentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.505A", "maps": [], @@ -258280,8 +243406,6 @@ }, "description": "1505B, Klimazentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.505B", "maps": [], @@ -258314,8 +243438,6 @@ }, "description": "1506, Batterielager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.506", "maps": [], @@ -258348,8 +243470,6 @@ }, "description": "1508, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.508", "maps": [], @@ -258382,8 +243502,6 @@ }, "description": "1509, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.509", "maps": [], @@ -258416,8 +243534,6 @@ }, "description": "1510, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.510", "maps": [], @@ -258450,8 +243566,6 @@ }, "description": "1701, Radioaktiv-Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.701", "maps": [], @@ -258484,8 +243598,6 @@ }, "description": "1702, Physiklabor (K. B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.702", "maps": [], @@ -258518,8 +243630,6 @@ }, "description": "1709, Physiklabor (K. B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.709", "maps": [], @@ -258552,8 +243662,6 @@ }, "description": "1710, Physiklabor (K. B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.710", "maps": [], @@ -258586,8 +243694,6 @@ }, "description": "1715, Messraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.715", "maps": [], @@ -258620,8 +243726,6 @@ }, "description": "1716, Radioaktiv-Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.716", "maps": [], @@ -258654,8 +243758,6 @@ }, "description": "1724, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.724", "maps": [], @@ -258688,8 +243790,6 @@ }, "description": "1725, Vorlesungs-Betrieb", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.725", "maps": [], @@ -258722,8 +243822,6 @@ }, "description": "1725A, H\u00f6rsaal Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.725A", "maps": [], @@ -258756,8 +243854,6 @@ }, "description": "1725B, H\u00f6rsaal Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.725B", "maps": [], @@ -258790,8 +243886,6 @@ }, "description": "1725C, H\u00f6rsaal Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.725C", "maps": [], @@ -258824,8 +243918,6 @@ }, "description": "1732, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.732", "maps": [], @@ -258858,8 +243950,6 @@ }, "description": "1741, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.741", "maps": [], @@ -258892,8 +243982,6 @@ }, "description": "1742, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.742", "maps": [], @@ -258926,8 +244014,6 @@ }, "description": "1751, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.751", "maps": [], @@ -258960,8 +244046,6 @@ }, "description": "1752, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.752", "maps": [], @@ -258994,8 +244078,6 @@ }, "description": "1760, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.760", "maps": [], @@ -259028,8 +244110,6 @@ }, "description": "1760A, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.760A", "maps": [], @@ -259062,8 +244142,6 @@ }, "description": "1760B, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.760B", "maps": [], @@ -259096,8 +244174,6 @@ }, "description": "1760C, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.760C", "maps": [], @@ -259130,8 +244206,6 @@ }, "description": "1761, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.761", "maps": [], @@ -259164,8 +244238,6 @@ }, "description": "1771, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.771", "maps": [], @@ -259198,8 +244270,6 @@ }, "description": "1774, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.774", "maps": [], @@ -259232,8 +244302,6 @@ }, "description": "1901, Flur 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.901", "maps": [], @@ -259266,8 +244334,6 @@ }, "description": "1902, Flur 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.902", "maps": [], @@ -259300,8 +244366,6 @@ }, "description": "1903, Flur 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.903", "maps": [], @@ -259334,8 +244398,6 @@ }, "description": "1904, Flur 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.904", "maps": [], @@ -259368,8 +244430,6 @@ }, "description": "1905, Flur 5", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.905", "maps": [], @@ -259402,8 +244462,6 @@ }, "description": "1906, Flur 6", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.906", "maps": [], @@ -259436,8 +244494,6 @@ }, "description": "1907, Flur 7", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.907", "maps": [], @@ -259470,8 +244526,6 @@ }, "description": "1908, Flur 8", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.908", "maps": [], @@ -259504,8 +244558,6 @@ }, "description": "1909, Flur 9", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.909", "maps": [], @@ -259538,8 +244590,6 @@ }, "description": "1910, Flur 10", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.910", "maps": [], @@ -259572,8 +244622,6 @@ }, "description": "1911, Flur 11", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.911", "maps": [], @@ -259606,8 +244654,6 @@ }, "description": "1912, Flur 12", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.912", "maps": [], @@ -259640,8 +244686,6 @@ }, "description": "1913, Flur 13", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.913", "maps": [], @@ -259674,8 +244718,6 @@ }, "description": "1921, Stiege 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.921", "maps": [], @@ -259708,8 +244750,6 @@ }, "description": "1922, Stiege 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.922", "maps": [], @@ -259742,8 +244782,6 @@ }, "description": "1923, Stiege 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.923", "maps": [], @@ -259776,8 +244814,6 @@ }, "description": "1924, Stiege 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.924", "maps": [], @@ -259810,8 +244846,6 @@ }, "description": "1925, Stiege 5", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.925", "maps": [], @@ -259844,8 +244878,6 @@ }, "description": "1926, Stiege 6", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.926", "maps": [], @@ -259878,8 +244910,6 @@ }, "description": "1927, Stiege 7", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.927", "maps": [], @@ -259912,8 +244942,6 @@ }, "description": "1928, Stiege 7", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.928", "maps": [], @@ -259946,8 +244974,6 @@ }, "description": "1941, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.941", "maps": [], @@ -259980,8 +245006,6 @@ }, "description": "1942, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5101.U1.942", "maps": [], @@ -260014,8 +245038,6 @@ }, "description": "0901, Installationskanal 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "5101.U2.901", "maps": [], @@ -260048,8 +245070,6 @@ }, "description": "0902, Installationskanal 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "5101.U2.902", "maps": [], @@ -260082,8 +245102,6 @@ }, "description": "0903, Installationskanal 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "5101.U2.903", "maps": [], @@ -260116,8 +245134,6 @@ }, "description": "0904, Installationskanal 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "5101.U2.904", "maps": [], @@ -260150,8 +245166,6 @@ }, "description": "0905, Installationskanal 5", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "5101.U2.905", "maps": [], @@ -260184,8 +245198,6 @@ }, "description": "0906, Installationskanal 6", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "5101.U2.906", "maps": [], @@ -260218,8 +245230,6 @@ }, "description": "0907, Installationskanal 7", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "5101.U2.907", "maps": [], @@ -260252,8 +245262,6 @@ }, "description": "0922, Stiege 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "5101.U2.922", "maps": [], @@ -260286,8 +245294,6 @@ }, "description": "0923, Stiege 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "5101.U2.923", "maps": [], @@ -260320,8 +245326,6 @@ }, "description": "R01, Lager / Durchgang 5130", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5103.EG.001", "maps": [], @@ -260354,8 +245358,6 @@ }, "description": "R02, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5103.EG.002", "maps": [], @@ -260388,8 +245390,6 @@ }, "description": "R03, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5103.EG.003", "maps": [], @@ -260422,8 +245422,6 @@ }, "description": "R05, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5103.EG.005", "maps": [], @@ -260456,8 +245454,6 @@ }, "description": "R06, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5103.EG.006", "maps": [], @@ -260490,8 +245486,6 @@ }, "description": "R07-R11, Poststelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5103.EG.007", "maps": [], @@ -260524,8 +245518,6 @@ }, "description": "R08, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5103.EG.008", "maps": [], @@ -260558,8 +245550,6 @@ }, "description": "R10, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5103.EG.010", "maps": [], @@ -260592,8 +245582,6 @@ }, "description": "R13, Poststelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5103.EG.013", "maps": [], @@ -260626,8 +245614,6 @@ }, "description": "R14, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5103.EG.014", "maps": [], @@ -260660,8 +245646,6 @@ }, "description": "R15, Aufenthalt / Poststelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5103.EG.015", "maps": [], @@ -260694,8 +245678,6 @@ }, "description": "R15A, Ablage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5103.EG.015A", "maps": [], @@ -260728,8 +245710,6 @@ }, "description": "R16, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5103.EG.016", "maps": [], @@ -260762,8 +245742,6 @@ }, "description": "R017, Poststelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5103.EG.017", "maps": [], @@ -260796,8 +245774,6 @@ }, "description": "R018, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5103.EG.018", "maps": [], @@ -260830,8 +245806,6 @@ }, "description": "R19, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5103.EG.019", "maps": [], @@ -260864,8 +245838,6 @@ }, "description": "R19A, Beh.-WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5103.EG.019A", "maps": [], @@ -260898,8 +245870,6 @@ }, "description": "R20, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5103.EG.020", "maps": [], @@ -260932,8 +245902,6 @@ }, "description": "R21, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5103.EG.021", "maps": [], @@ -260966,8 +245934,6 @@ }, "description": "R22, K\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5103.EG.022", "maps": [], @@ -261000,8 +245966,6 @@ }, "description": "R23, Putzraum / LRZ-K\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5103.EG.023", "maps": [], @@ -261034,8 +245998,6 @@ }, "description": "R24, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5103.EG.024", "maps": [], @@ -261068,8 +246030,6 @@ }, "description": "R25, Wasserversorgung, -aufbereitung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5103.EG.025", "maps": [], @@ -261102,8 +246062,6 @@ }, "description": "R26, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5103.EG.026", "maps": [], @@ -261136,8 +246094,6 @@ }, "description": "R28, Heizungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5103.EG.028", "maps": [], @@ -261170,8 +246126,6 @@ }, "description": "R50, Windfang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5103.EG.050", "maps": [], @@ -261204,8 +246158,6 @@ }, "description": "R51, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5103.EG.051", "maps": [], @@ -261238,8 +246190,6 @@ }, "description": "201, Kristal-Pr\u00e4paration", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5107.EG.201", "maps": [], @@ -261272,8 +246222,6 @@ }, "description": "202, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5107.EG.202", "maps": [], @@ -261306,8 +246254,6 @@ }, "description": "203, Zeichenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5107.EG.203", "maps": [], @@ -261340,8 +246286,6 @@ }, "description": "204, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5107.EG.204", "maps": [], @@ -261374,8 +246318,6 @@ }, "description": "205, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5107.EG.205", "maps": [], @@ -261408,8 +246350,6 @@ }, "description": "206, Betriebstechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5107.EG.206", "maps": [], @@ -261442,8 +246382,6 @@ }, "description": "207, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5107.EG.207", "maps": [], @@ -261476,8 +246414,6 @@ }, "description": "208, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5107.EG.208", "maps": [], @@ -261510,8 +246446,6 @@ }, "description": "209, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5107.EG.209", "maps": [], @@ -261544,8 +246478,6 @@ }, "description": "210, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5107.EG.210", "maps": [], @@ -261578,8 +246510,6 @@ }, "description": "211, B\u00fcro-Institutsleiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5107.EG.211", "maps": [], @@ -261612,8 +246542,6 @@ }, "description": "212, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5107.EG.212", "maps": [], @@ -261646,8 +246574,6 @@ }, "description": "213, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5107.EG.213", "maps": [], @@ -261680,8 +246606,6 @@ }, "description": "214, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5107.EG.214", "maps": [], @@ -261714,8 +246638,6 @@ }, "description": "215, Rechnerraum u. Bibliothek", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5107.EG.215", "maps": [], @@ -261748,8 +246670,6 @@ }, "description": "216, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5107.EG.216", "maps": [], @@ -261782,8 +246702,6 @@ }, "description": "217, Reinraumlabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5107.EG.217", "maps": [], @@ -261816,8 +246734,6 @@ }, "description": "219, Dekektorlabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5107.EG.219", "maps": [], @@ -261850,8 +246766,6 @@ }, "description": "221, Neutrino-Me\u00dflabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5107.EG.221", "maps": [], @@ -261884,8 +246798,6 @@ }, "description": "222, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5107.EG.222", "maps": [], @@ -261918,8 +246830,6 @@ }, "description": "223, B\u00fcro Praktikumsleiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5107.EG.223", "maps": [], @@ -261952,8 +246862,6 @@ }, "description": "224, Dunkelkammer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5107.EG.224", "maps": [], @@ -261986,8 +246894,6 @@ }, "description": "225, Praktikum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5107.EG.225", "maps": [], @@ -262020,8 +246926,6 @@ }, "description": "226, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5107.EG.226", "maps": [], @@ -262107,8 +247011,6 @@ }, "description": "228, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5107.EG.228", "maps": [], @@ -262141,8 +247043,6 @@ }, "description": "230, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5107.EG.230", "maps": [], @@ -262175,8 +247075,6 @@ }, "description": "231, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5107.EG.231", "maps": [], @@ -262209,8 +247107,6 @@ }, "description": "232, Chemielabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5107.EG.232", "maps": [], @@ -262243,8 +247139,6 @@ }, "description": "233, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5107.EG.233", "maps": [], @@ -262277,8 +247171,6 @@ }, "description": "234, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5107.EG.234", "maps": [], @@ -262311,8 +247203,6 @@ }, "description": "235, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5107.EG.235", "maps": [], @@ -262345,8 +247235,6 @@ }, "description": "237, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5107.EG.237", "maps": [], @@ -262379,8 +247267,6 @@ }, "description": "239, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5107.EG.239", "maps": [], @@ -262413,8 +247299,6 @@ }, "description": "241, Optisches Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5107.EG.241", "maps": [], @@ -262447,8 +247331,6 @@ }, "description": "243, Optisches Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5107.EG.243", "maps": [], @@ -262481,8 +247363,6 @@ }, "description": "245, Feinmechanische Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5107.EG.245", "maps": [], @@ -262515,8 +247395,6 @@ }, "description": "245A, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5107.EG.245A", "maps": [], @@ -262549,8 +247427,6 @@ }, "description": "245b, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5107.EG.245B", "maps": [], @@ -262583,8 +247459,6 @@ }, "description": "291A, Flur-West", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5107.EG.291A", "maps": [], @@ -262617,8 +247491,6 @@ }, "description": "291B, Flur-West", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5107.EG.291B", "maps": [], @@ -262651,8 +247523,6 @@ }, "description": "291C, Flur-West", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5107.EG.291C", "maps": [], @@ -262685,8 +247555,6 @@ }, "description": "292A, Flur-Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5107.EG.292A", "maps": [], @@ -262719,8 +247587,6 @@ }, "description": "292B, Flur-Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5107.EG.292B", "maps": [], @@ -262753,8 +247619,6 @@ }, "description": "292C, Flur-Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5107.EG.292C", "maps": [], @@ -262787,8 +247651,6 @@ }, "description": "292D, Flur-Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5107.EG.292D", "maps": [], @@ -262821,8 +247683,6 @@ }, "description": "295, Foyer / Treppe Nord", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5107.EG.295", "maps": [], @@ -262855,8 +247715,6 @@ }, "description": "296, Flur-Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5107.EG.296", "maps": [], @@ -262889,8 +247747,6 @@ }, "description": "297, Foyer / Treppe S\u00fcd", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5107.EG.297", "maps": [], @@ -262923,8 +247779,6 @@ }, "description": "298, Flur-West", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5107.EG.298", "maps": [], @@ -262957,8 +247811,6 @@ }, "description": "299, Flur/\u00dcbergang zu PH 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5107.EG.299", "maps": [], @@ -262991,8 +247843,6 @@ }, "description": "101, Optisches Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5107.U1.101", "maps": [], @@ -263025,8 +247875,6 @@ }, "description": "102, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5107.U1.102", "maps": [], @@ -263059,8 +247907,6 @@ }, "description": "104, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5107.U1.104", "maps": [], @@ -263093,8 +247939,6 @@ }, "description": "106, Betriebstechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5107.U1.106", "maps": [], @@ -263127,8 +247971,6 @@ }, "description": "106A, Kellertreppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5107.U1.106A", "maps": [], @@ -263161,8 +248003,6 @@ }, "description": "107, Optisches Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5107.U1.107", "maps": [], @@ -263195,8 +248035,6 @@ }, "description": "108, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5107.U1.108", "maps": [], @@ -263229,8 +248067,6 @@ }, "description": "109, Optisches Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5107.U1.109", "maps": [], @@ -263263,8 +248099,6 @@ }, "description": "109A, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5107.U1.109A", "maps": [], @@ -263297,8 +248131,6 @@ }, "description": "110, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5107.U1.110", "maps": [], @@ -263331,8 +248163,6 @@ }, "description": "111, Bibliothek", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5107.U1.111", "maps": [], @@ -263365,8 +248195,6 @@ }, "description": "112, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5107.U1.112", "maps": [], @@ -263399,8 +248227,6 @@ }, "description": "113, Chef-B\u00fcro m. Besprechungsgruppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5107.U1.113", "maps": [], @@ -263433,8 +248259,6 @@ }, "description": "114, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5107.U1.114", "maps": [], @@ -263467,8 +248291,6 @@ }, "description": "115, Sekretariat m. Registratur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5107.U1.115", "maps": [], @@ -263501,8 +248323,6 @@ }, "description": "116, Beh.-WC / Wickeltisch", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5107.U1.116", "maps": [], @@ -263535,8 +248355,6 @@ }, "description": "117, Praktikum gemein. Nutz. 1102020400", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5107.U1.117", "maps": [], @@ -263569,8 +248387,6 @@ }, "description": "118, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5107.U1.118", "maps": [], @@ -263603,8 +248419,6 @@ }, "description": "119, Praktikum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5107.U1.119", "maps": [], @@ -263637,8 +248451,6 @@ }, "description": "120, WC-Damen / Wickeltisch", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5107.U1.120", "maps": [], @@ -263671,8 +248483,6 @@ }, "description": "121, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5107.U1.121", "maps": [], @@ -263705,8 +248515,6 @@ }, "description": "121A, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5107.U1.121A", "maps": [], @@ -263739,8 +248547,6 @@ }, "description": "122, B\u00fcro E11", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5107.U1.122", "maps": [], @@ -263773,8 +248579,6 @@ }, "description": "122A, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5107.U1.122A", "maps": [], @@ -263807,8 +248611,6 @@ }, "description": "123, Praktikum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5107.U1.123", "maps": [], @@ -263841,8 +248643,6 @@ }, "description": "124, Optisches Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5107.U1.124", "maps": [], @@ -263875,8 +248675,6 @@ }, "description": "125, Praktikum gemein. Nutz. 1101020800", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5107.U1.125", "maps": [], @@ -263909,8 +248707,6 @@ }, "description": "126, Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5107.U1.126", "maps": [], @@ -263996,8 +248792,6 @@ }, "description": "128, Optisches Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5107.U1.128", "maps": [], @@ -264030,8 +248824,6 @@ }, "description": "129, Optisches Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5107.U1.129", "maps": [], @@ -264064,8 +248856,6 @@ }, "description": "130, Aufenthaltsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5107.U1.130", "maps": [], @@ -264098,8 +248888,6 @@ }, "description": "132, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5107.U1.132", "maps": [], @@ -264132,8 +248920,6 @@ }, "description": "133, Optisches Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5107.U1.133", "maps": [], @@ -264166,8 +248952,6 @@ }, "description": "134, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5107.U1.134", "maps": [], @@ -264200,8 +248984,6 @@ }, "description": "135, Optisches Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5107.U1.135", "maps": [], @@ -264234,8 +249016,6 @@ }, "description": "136, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5107.U1.136", "maps": [], @@ -264268,8 +249048,6 @@ }, "description": "141, Optisches Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5107.U1.141", "maps": [], @@ -264302,8 +249080,6 @@ }, "description": "143, Chemielabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5107.U1.143", "maps": [], @@ -264336,8 +249112,6 @@ }, "description": "145, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5107.U1.145", "maps": [], @@ -264370,8 +249144,6 @@ }, "description": "147, Schwei\u00dfraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5107.U1.147", "maps": [], @@ -264404,8 +249176,6 @@ }, "description": "149, Werkstatt (gem.N. E20)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5107.U1.149", "maps": [], @@ -264438,8 +249208,6 @@ }, "description": "195, Foyer/Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5107.U1.195", "maps": [], @@ -264472,8 +249240,6 @@ }, "description": "196, Flur/Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5107.U1.196", "maps": [], @@ -264506,8 +249272,6 @@ }, "description": "197, Foyer/Treppe S\u00fcd", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5107.U1.197", "maps": [], @@ -264540,8 +249304,6 @@ }, "description": "198, Flur/West", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5107.U1.198", "maps": [], @@ -264574,8 +249336,6 @@ }, "description": "001, Betriebstechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "5107.U2.001", "maps": [], @@ -264608,8 +249368,6 @@ }, "description": "001A, Treppe zum Maschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "5107.U2.001A", "maps": [], @@ -264642,8 +249400,6 @@ }, "description": "002, Aufzugs/F\u00f6rderanlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "5107.U2.002", "maps": [], @@ -264676,8 +249432,6 @@ }, "description": "003, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "5107.U2.003", "maps": [], @@ -264710,8 +249464,6 @@ }, "description": "004, Keller/Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "5107.U2.004", "maps": [], @@ -264744,8 +249496,6 @@ }, "description": "001, Messraum (ersch\u00fctterungsfrei)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5108.U1.001", "maps": [], @@ -264778,8 +249528,6 @@ }, "description": "002, Messraum (ersch\u00fctterungsfrei)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5108.U1.002", "maps": [], @@ -264812,8 +249560,6 @@ }, "description": "003, Messraum (ersch\u00fctterungsfrei)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5108.U1.003", "maps": [], @@ -264846,8 +249592,6 @@ }, "description": "004, Arbeitsraum mit experimentellen Arbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5108.U1.004", "maps": [], @@ -264880,8 +249624,6 @@ }, "description": "006, Sammlungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5108.U1.006", "maps": [], @@ -264914,8 +249656,6 @@ }, "description": "101, M-Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5108.U1.101", "maps": [], @@ -264948,8 +249688,6 @@ }, "description": "102, NSHV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5108.U1.102", "maps": [], @@ -264982,8 +249720,6 @@ }, "description": "103, Mittelspannung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5108.U1.103", "maps": [], @@ -265016,8 +249752,6 @@ }, "description": "104, Untergrundlabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5108.U1.104", "maps": [], @@ -265050,8 +249784,6 @@ }, "description": "105, Schallschutz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5108.U1.105", "maps": [], @@ -265084,8 +249816,6 @@ }, "description": "106, Fluchttunnel", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5108.U1.106", "maps": [], @@ -265118,8 +249848,6 @@ }, "description": "107, UGL Untergrundlabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5108.U1.107", "maps": [], @@ -265152,8 +249880,6 @@ }, "description": "108, Beschleunigergang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5108.U1.108", "maps": [], @@ -265186,8 +249912,6 @@ }, "description": "109, Praktikum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5108.U1.109", "maps": [], @@ -265220,8 +249944,6 @@ }, "description": "Beschleunigergang zu Geb. 5120", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5108.U1.120", "maps": [], @@ -265254,8 +249976,6 @@ }, "description": "-180, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5108.U1.180", "maps": [], @@ -265288,8 +250008,6 @@ }, "description": "-181, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5108.U1.181", "maps": [], @@ -265322,8 +250040,6 @@ }, "description": "-182, Install.Kanal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5108.U1.182", "maps": [], @@ -265356,8 +250072,6 @@ }, "description": "-183, Install.Kanal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5108.U1.183", "maps": [], @@ -265390,8 +250104,6 @@ }, "description": "-184, Install.Kanal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5108.U1.184", "maps": [], @@ -265424,8 +250136,6 @@ }, "description": "-2101, Messbunker Betriebskeller", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "5108.U2.101", "maps": [], @@ -265458,8 +250168,6 @@ }, "description": "213, Drucker/Kopierer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5109.02.213", "maps": [], @@ -265492,8 +250200,6 @@ }, "description": "213A, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5109.02.213A", "maps": [], @@ -265526,8 +250232,6 @@ }, "description": "213B, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5109.02.213B", "maps": [], @@ -265560,8 +250264,6 @@ }, "description": "001, M\u00fclltonnen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5110.EG.001", "maps": [], @@ -265594,8 +250296,6 @@ }, "description": "Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5110.EG.002", "maps": [], @@ -265628,8 +250328,6 @@ }, "description": "Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5110.EG.003", "maps": [], @@ -265662,8 +250360,6 @@ }, "description": "Trafozelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5110.EG.004", "maps": [], @@ -265696,8 +250392,6 @@ }, "description": "Trafozelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5110.EG.005", "maps": [], @@ -265730,8 +250424,6 @@ }, "description": "Trafozelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5110.EG.006", "maps": [], @@ -265764,8 +250456,6 @@ }, "description": "Trafozelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5110.EG.007", "maps": [], @@ -265798,8 +250488,6 @@ }, "description": "Trafozelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5110.EG.008", "maps": [], @@ -265832,8 +250520,6 @@ }, "description": "009, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5110.EG.009", "maps": [], @@ -265866,8 +250552,6 @@ }, "description": "Notstrom - Diesel", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5110.EG.010", "maps": [], @@ -265900,8 +250584,6 @@ }, "description": "-104, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5110.U1.004", "maps": [], @@ -265934,8 +250616,6 @@ }, "description": "-105, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5110.U1.005", "maps": [], @@ -265968,8 +250648,6 @@ }, "description": "-106, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5110.U1.006", "maps": [], @@ -266002,8 +250680,6 @@ }, "description": "-107, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5110.U1.007", "maps": [], @@ -266036,8 +250712,6 @@ }, "description": "-108, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5110.U1.008", "maps": [], @@ -266070,8 +250744,6 @@ }, "description": "-111, Install.Kanal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5110.U1.011", "maps": [], @@ -266104,8 +250776,6 @@ }, "description": "-112, Install.Kanal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5110.U1.012", "maps": [], @@ -266138,8 +250808,6 @@ }, "description": "1116, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5111.01.116", "maps": [], @@ -266172,8 +250840,6 @@ }, "description": "1117, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5111.01.117", "maps": [], @@ -266206,8 +250872,6 @@ }, "description": "2102, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5111.02.202", "maps": [], @@ -266240,8 +250904,6 @@ }, "description": "2103, Klimatechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5111.02.203", "maps": [], @@ -266274,8 +250936,6 @@ }, "description": "2104, Maschinenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5111.02.204", "maps": [], @@ -266308,8 +250968,6 @@ }, "description": "2105, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5111.02.205", "maps": [], @@ -266342,8 +251000,6 @@ }, "description": "2106, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5111.02.206", "maps": [], @@ -266376,8 +251032,6 @@ }, "description": "2107, Speicher f. Erweiterung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5111.02.207", "maps": [], @@ -266410,8 +251064,6 @@ }, "description": "2103, RLT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5111.DG.203", "maps": [], @@ -266444,8 +251096,6 @@ }, "description": "2104, Aufz./F\u00f6rderan.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5111.DG.204", "maps": [], @@ -266478,8 +251128,6 @@ }, "description": "0120, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5111.EG.020", "maps": [], @@ -266512,8 +251160,6 @@ }, "description": "0131, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5111.EG.031", "maps": [], @@ -266546,8 +251192,6 @@ }, "description": "0136, Transformatoren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5111.EG.036", "maps": [], @@ -266580,8 +251224,6 @@ }, "description": "0137, Transformatoren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5111.EG.037", "maps": [], @@ -266614,8 +251256,6 @@ }, "description": "-1110, Technikraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5111.U1.110", "maps": [], @@ -266648,8 +251288,6 @@ }, "description": "-1111, Wasseraufbereitung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5111.U1.111", "maps": [], @@ -266682,8 +251320,6 @@ }, "description": "-1112, Heizung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5111.U1.112", "maps": [], @@ -266716,8 +251352,6 @@ }, "description": "-1113, Kompressorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5111.U1.113", "maps": [], @@ -266750,8 +251384,6 @@ }, "description": "-1114, Niederspannung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5111.U1.114", "maps": [], @@ -266784,8 +251416,6 @@ }, "description": "-1115, Fernmeldetechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5111.U1.115", "maps": [], @@ -266818,8 +251448,6 @@ }, "description": "-1121, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5111.U1.121", "maps": [], @@ -266852,8 +251480,6 @@ }, "description": "N201, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5112.01.201N", "maps": [], @@ -266886,8 +251512,6 @@ }, "description": "S201, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5112.01.201S", "maps": [], @@ -266920,8 +251544,6 @@ }, "description": "N202, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5112.01.202N", "maps": [], @@ -266954,8 +251576,6 @@ }, "description": "S202, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5112.01.202S", "maps": [], @@ -266988,8 +251608,6 @@ }, "description": "N203, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5112.01.203N", "maps": [], @@ -267022,8 +251640,6 @@ }, "description": "S203, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5112.01.203S", "maps": [], @@ -267056,8 +251672,6 @@ }, "description": "N204, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5112.01.204N", "maps": [], @@ -267090,8 +251704,6 @@ }, "description": "S204, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5112.01.204S", "maps": [], @@ -267124,8 +251736,6 @@ }, "description": "N205, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5112.01.205N", "maps": [], @@ -267158,8 +251768,6 @@ }, "description": "S205, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5112.01.205S", "maps": [], @@ -267192,8 +251800,6 @@ }, "description": "N206, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5112.01.206N", "maps": [], @@ -267225,8 +251831,6 @@ }, "description": "S206, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5112.01.206S", "maps": [], @@ -267259,8 +251863,6 @@ }, "description": "N207, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5112.01.207N", "maps": [], @@ -267293,8 +251895,6 @@ }, "description": "S207, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5112.01.207S", "maps": [], @@ -267327,8 +251927,6 @@ }, "description": "N208, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5112.01.208N", "maps": [], @@ -267360,8 +251958,6 @@ }, "description": "S208, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5112.01.208S", "maps": [], @@ -267394,8 +251990,6 @@ }, "description": "S209, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5112.01.209S", "maps": [], @@ -267427,8 +252021,6 @@ }, "description": "N210, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5112.01.210N", "maps": [], @@ -267460,8 +252052,6 @@ }, "description": "S210, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5112.01.210S", "maps": [], @@ -267493,8 +252083,6 @@ }, "description": "211A, Technikraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5112.01.211A", "maps": [], @@ -267527,8 +252115,6 @@ }, "description": "211B, Server", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5112.01.211B", "maps": [], @@ -267561,8 +252147,6 @@ }, "description": "211C, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5112.01.211C", "maps": [], @@ -267595,8 +252179,6 @@ }, "description": "S211, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5112.01.211S", "maps": [], @@ -267629,8 +252211,6 @@ }, "description": "N212, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5112.01.212N", "maps": [], @@ -267663,8 +252243,6 @@ }, "description": "S212, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5112.01.212S", "maps": [], @@ -267696,8 +252274,6 @@ }, "description": "S213, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5112.01.213S", "maps": [], @@ -267729,8 +252305,6 @@ }, "description": "N214, Chemielabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5112.01.214N", "maps": [], @@ -267763,8 +252337,6 @@ }, "description": "S214, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5112.01.214S", "maps": [], @@ -267797,8 +252369,6 @@ }, "description": "S215, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5112.01.215S", "maps": [], @@ -267831,8 +252401,6 @@ }, "description": "N216, Technologielabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5112.01.216N", "maps": [], @@ -267865,8 +252433,6 @@ }, "description": "N218, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5112.01.218N", "maps": [], @@ -267899,8 +252465,6 @@ }, "description": "N220, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5112.01.220N", "maps": [], @@ -267933,8 +252497,6 @@ }, "description": "N222, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5112.01.222N", "maps": [], @@ -267967,8 +252529,6 @@ }, "description": "N223, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5112.01.223N", "maps": [], @@ -268001,8 +252561,6 @@ }, "description": "N224, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5112.01.224N", "maps": [], @@ -268035,8 +252593,6 @@ }, "description": "N225, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5112.01.225N", "maps": [], @@ -268069,8 +252625,6 @@ }, "description": "N250, Treppenflur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5112.01.250N", "maps": [], @@ -268103,8 +252657,6 @@ }, "description": "N251, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5112.01.251N", "maps": [], @@ -268137,8 +252689,6 @@ }, "description": "S251, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5112.01.251S", "maps": [], @@ -268171,8 +252721,6 @@ }, "description": "N260, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5112.01.260N", "maps": [], @@ -268205,8 +252753,6 @@ }, "description": "S301, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5112.02.301S", "maps": [], @@ -268239,8 +252785,6 @@ }, "description": "S302, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5112.02.302S", "maps": [], @@ -268272,8 +252816,6 @@ }, "description": "S303, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5112.02.303S", "maps": [], @@ -268306,8 +252848,6 @@ }, "description": "S304, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5112.02.304S", "maps": [], @@ -268340,8 +252880,6 @@ }, "description": "S305, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5112.02.305S", "maps": [], @@ -268374,8 +252912,6 @@ }, "description": "S306, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5112.02.306S", "maps": [], @@ -268408,8 +252944,6 @@ }, "description": "S307, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5112.02.307S", "maps": [], @@ -268442,8 +252976,6 @@ }, "description": "S308, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5112.02.308S", "maps": [], @@ -268476,8 +253008,6 @@ }, "description": "S309, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5112.02.309S", "maps": [], @@ -268510,8 +253040,6 @@ }, "description": "S310, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5112.02.310S", "maps": [], @@ -268544,8 +253072,6 @@ }, "description": "311A, Technikraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5112.02.311A", "maps": [], @@ -268578,8 +253104,6 @@ }, "description": "311B, Technikraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5112.02.311B", "maps": [], @@ -268612,8 +253136,6 @@ }, "description": "311C, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5112.02.311C", "maps": [], @@ -268646,8 +253168,6 @@ }, "description": "S311, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5112.02.311S", "maps": [], @@ -268679,8 +253199,6 @@ }, "description": "S312, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5112.02.312S", "maps": [], @@ -268712,8 +253230,6 @@ }, "description": "S313, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5112.02.313S", "maps": [], @@ -268745,8 +253261,6 @@ }, "description": "S314, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5112.02.314S", "maps": [], @@ -268778,8 +253292,6 @@ }, "description": "S315, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5112.02.315S", "maps": [], @@ -268811,8 +253323,6 @@ }, "description": "S316, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5112.02.316S", "maps": [], @@ -268845,8 +253355,6 @@ }, "description": "S317, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5112.02.317S", "maps": [], @@ -268879,8 +253387,6 @@ }, "description": "S318, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5112.02.318S", "maps": [], @@ -268913,8 +253419,6 @@ }, "description": "S319, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5112.02.319S", "maps": [], @@ -268947,8 +253451,6 @@ }, "description": "S320, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5112.02.320S", "maps": [], @@ -268981,8 +253483,6 @@ }, "description": "323, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5112.02.323", "maps": [], @@ -269015,8 +253515,6 @@ }, "description": "N324, Abstellraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5112.02.324N", "maps": [], @@ -269049,8 +253547,6 @@ }, "description": "N325, Abstellraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5112.02.325N", "maps": [], @@ -269083,8 +253579,6 @@ }, "description": "N350, Treppenflur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5112.02.350N", "maps": [], @@ -269117,8 +253611,6 @@ }, "description": "S351, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5112.02.351S", "maps": [], @@ -269151,8 +253643,6 @@ }, "description": "N360, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5112.02.360N", "maps": [], @@ -269185,8 +253675,6 @@ }, "description": "N401, Klimazentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5112.03.401N", "maps": [], @@ -269251,8 +253739,6 @@ }, "description": "N450, Treppenflur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5112.03.450N", "maps": [], @@ -269285,8 +253771,6 @@ }, "description": "N451, Technikraum f. Reinraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5112.03.451N", "maps": [], @@ -269319,8 +253803,6 @@ }, "description": "460, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5112.03.460", "maps": [], @@ -269353,8 +253835,6 @@ }, "description": "N100, Fl\u00fcssig-Stickstofftank", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5112.EG.100", "maps": [], @@ -269387,8 +253867,6 @@ }, "description": "N101, Kryo-Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5112.EG.101", "maps": [], @@ -269421,8 +253899,6 @@ }, "description": "N101, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5112.EG.101N", "maps": [], @@ -269495,8 +253971,6 @@ }, "description": "102, Gasflaschenlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5112.EG.102", "maps": [], @@ -269529,8 +254003,6 @@ }, "description": "N102, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5112.EG.102N", "maps": [], @@ -269563,8 +254035,6 @@ }, "description": "WSI S102, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5112.EG.102S", "maps": [], @@ -269597,8 +254067,6 @@ }, "description": "103, Trafo u. Notstrom", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5112.EG.103", "maps": [], @@ -269631,8 +254099,6 @@ }, "description": "N103, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5112.EG.103N", "maps": [], @@ -269664,8 +254130,6 @@ }, "description": "WSI S103, Handbibliothek", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5112.EG.103S", "maps": [], @@ -269698,8 +254162,6 @@ }, "description": "N104, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5112.EG.104N", "maps": [], @@ -269732,8 +254194,6 @@ }, "description": "S104, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5112.EG.104S", "maps": [], @@ -269765,8 +254225,6 @@ }, "description": "N105, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5112.EG.105N", "maps": [], @@ -269798,8 +254256,6 @@ }, "description": "S105, Personal-Aufenthaltsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5112.EG.105S", "maps": [], @@ -269832,8 +254288,6 @@ }, "description": "N106, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5112.EG.106N", "maps": [], @@ -269866,8 +254320,6 @@ }, "description": "S106, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5112.EG.106S", "maps": [], @@ -269900,8 +254352,6 @@ }, "description": "N107, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5112.EG.107N", "maps": [], @@ -269933,8 +254383,6 @@ }, "description": "S107, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5112.EG.107S", "maps": [], @@ -269966,8 +254414,6 @@ }, "description": "N108, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5112.EG.108N", "maps": [], @@ -270000,8 +254446,6 @@ }, "description": "S108, B\u00fcro Stud. Hilfskr\u00e4fte", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5112.EG.108S", "maps": [], @@ -270034,8 +254478,6 @@ }, "description": "S109, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5112.EG.109S", "maps": [], @@ -270068,8 +254510,6 @@ }, "description": "N110, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5112.EG.110N", "maps": [], @@ -270102,8 +254542,6 @@ }, "description": "S110, B\u00fcro Stud. Hilfskr\u00e4fte", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5112.EG.110S", "maps": [], @@ -270136,8 +254574,6 @@ }, "description": "111A, Materialschleuse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5112.EG.111A", "maps": [], @@ -270170,8 +254606,6 @@ }, "description": "111B, Reinraumschleuse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5112.EG.111B", "maps": [], @@ -270204,8 +254638,6 @@ }, "description": "111C, Reinraumschleuse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5112.EG.111C", "maps": [], @@ -270238,8 +254670,6 @@ }, "description": "N111, Reinraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5112.EG.111N", "maps": [], @@ -270272,8 +254702,6 @@ }, "description": "S111, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5112.EG.111S", "maps": [], @@ -270306,8 +254734,6 @@ }, "description": "112, Chemielabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5112.EG.112", "maps": [], @@ -270340,8 +254766,6 @@ }, "description": "S112, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5112.EG.112S", "maps": [], @@ -270373,8 +254797,6 @@ }, "description": "N114, Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5112.EG.114N", "maps": [], @@ -270407,8 +254829,6 @@ }, "description": "N116, Feinmechanische Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5112.EG.116N", "maps": [], @@ -270441,8 +254861,6 @@ }, "description": "118A, Schwei\u00dfraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5112.EG.118A", "maps": [], @@ -270475,8 +254893,6 @@ }, "description": "N118A, Feinmechanische Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5112.EG.118N", "maps": [], @@ -270509,8 +254925,6 @@ }, "description": "N120, Kryo-Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5112.EG.120N", "maps": [], @@ -270543,8 +254957,6 @@ }, "description": "N121, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5112.EG.121N", "maps": [], @@ -270577,8 +254989,6 @@ }, "description": "122, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5112.EG.122", "maps": [], @@ -270611,8 +255021,6 @@ }, "description": "N123, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5112.EG.123N", "maps": [], @@ -270645,8 +255053,6 @@ }, "description": "N124, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5112.EG.124N", "maps": [], @@ -270679,8 +255085,6 @@ }, "description": "N125, Beh.-WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5112.EG.125N", "maps": [], @@ -270713,8 +255117,6 @@ }, "description": "N150, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5112.EG.150N", "maps": [], @@ -270747,8 +255149,6 @@ }, "description": "N151, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5112.EG.151N", "maps": [], @@ -270781,8 +255181,6 @@ }, "description": "S151, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5112.EG.151S", "maps": [], @@ -270815,8 +255213,6 @@ }, "description": "N152, Windfang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5112.EG.152N", "maps": [], @@ -270849,8 +255245,6 @@ }, "description": "S152, Windfang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5112.EG.152S", "maps": [], @@ -270883,8 +255277,6 @@ }, "description": "N160, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5112.EG.160N", "maps": [], @@ -270917,8 +255309,6 @@ }, "description": "N001A, Wasseraufbereitung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5112.U1.001A", "maps": [], @@ -270951,8 +255341,6 @@ }, "description": "N001, Heizzentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5112.U1.001N", "maps": [], @@ -270985,8 +255373,6 @@ }, "description": "N002, K\u00e4lte- u. Druckluftanlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5112.U1.002N", "maps": [], @@ -271019,8 +255405,6 @@ }, "description": "N003, Chemikalienlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5112.U1.003N", "maps": [], @@ -271053,8 +255437,6 @@ }, "description": "N004, Medienversorgung f. Reinraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5112.U1.004N", "maps": [], @@ -271087,8 +255469,6 @@ }, "description": "N005A, Medienstra\u00dfe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5112.U1.005A", "maps": [], @@ -271121,8 +255501,6 @@ }, "description": "N005, Gasflaschenlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5112.U1.005N", "maps": [], @@ -271155,8 +255533,6 @@ }, "description": "N006, Reinigungsdienst", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5112.U1.006N", "maps": [], @@ -271189,8 +255565,6 @@ }, "description": "N007A, Aufzugs-/F\u00f6rderanlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5112.U1.007A", "maps": [], @@ -271223,8 +255597,6 @@ }, "description": "N007B, Telefonanlagenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5112.U1.007B", "maps": [], @@ -271257,8 +255629,6 @@ }, "description": "N007, Niederspannung-HV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5112.U1.007N", "maps": [], @@ -271291,8 +255661,6 @@ }, "description": "N009, Dusche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5112.U1.009N", "maps": [], @@ -271325,8 +255693,6 @@ }, "description": "N021, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5112.U1.021N", "maps": [], @@ -271359,8 +255725,6 @@ }, "description": "N022, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5112.U1.022N", "maps": [], @@ -271393,8 +255757,6 @@ }, "description": "N050, Kellerflur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5112.U1.050N", "maps": [], @@ -271427,8 +255789,6 @@ }, "description": "N060, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5112.U1.060N", "maps": [], @@ -271461,8 +255821,6 @@ }, "description": "1.001, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5115.01.001", "maps": [], @@ -271495,8 +255853,6 @@ }, "description": "1.002, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5115.01.002", "maps": [], @@ -271561,8 +255917,6 @@ }, "description": "1.004, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5115.01.004", "maps": [], @@ -271595,8 +255949,6 @@ }, "description": "1.005, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5115.01.005", "maps": [], @@ -271629,8 +255981,6 @@ }, "description": "1.006, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5115.01.006", "maps": [], @@ -271663,8 +256013,6 @@ }, "description": "1.007, Pantry", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5115.01.007", "maps": [], @@ -271697,8 +256045,6 @@ }, "description": "1.008, Kopierraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5115.01.008", "maps": [], @@ -271731,8 +256077,6 @@ }, "description": "1.008A, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5115.01.008A", "maps": [], @@ -271765,8 +256109,6 @@ }, "description": "1.009, Elt. Transport", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5115.01.009", "maps": [], @@ -271799,8 +256141,6 @@ }, "description": "1.010, Elt. Transport", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5115.01.010", "maps": [], @@ -271833,8 +256173,6 @@ }, "description": "1.011, Chemie Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5115.01.011", "maps": [], @@ -271867,8 +256205,6 @@ }, "description": "1.011A, Chemie Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5115.01.011A", "maps": [], @@ -271901,8 +256237,6 @@ }, "description": "1.012, Post", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5115.01.012", "maps": [], @@ -271935,8 +256269,6 @@ }, "description": "1.013, Post", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5115.01.013", "maps": [], @@ -271969,8 +256301,6 @@ }, "description": "1.014, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5115.01.014", "maps": [], @@ -272003,8 +256333,6 @@ }, "description": "1.015, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5115.01.015", "maps": [], @@ -272037,8 +256365,6 @@ }, "description": "1.016, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5115.01.016", "maps": [], @@ -272071,8 +256397,6 @@ }, "description": "1.017, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5115.01.017", "maps": [], @@ -272105,8 +256429,6 @@ }, "description": "1.018, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5115.01.018", "maps": [], @@ -272139,8 +256461,6 @@ }, "description": "1.019, Spektroskopie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5115.01.019", "maps": [], @@ -272173,8 +256493,6 @@ }, "description": "1.020, Spektroskopie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5115.01.020", "maps": [], @@ -272207,8 +256525,6 @@ }, "description": "1.021, Spektroskopie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5115.01.021", "maps": [], @@ -272241,8 +256557,6 @@ }, "description": "1.022, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5115.01.022", "maps": [], @@ -272275,8 +256589,6 @@ }, "description": "1.023, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5115.01.023", "maps": [], @@ -272309,8 +256621,6 @@ }, "description": "1.501, Elt.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5115.01.501", "maps": [], @@ -272343,8 +256653,6 @@ }, "description": "1.502, Schacht 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5115.01.502", "maps": [], @@ -272377,8 +256685,6 @@ }, "description": "1.503, Elt.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5115.01.503", "maps": [], @@ -272411,8 +256717,6 @@ }, "description": "1.504, Schacht 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5115.01.504", "maps": [], @@ -272445,8 +256749,6 @@ }, "description": "1.505, Schacht 5", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5115.01.505", "maps": [], @@ -272479,8 +256781,6 @@ }, "description": "1.506, Schacht 6", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5115.01.506", "maps": [], @@ -272513,8 +256813,6 @@ }, "description": "1.507, Lastenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5115.01.507", "maps": [], @@ -272547,8 +256845,6 @@ }, "description": "1.600, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5115.01.600", "maps": [], @@ -272581,8 +256877,6 @@ }, "description": "1.601, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5115.01.601", "maps": [], @@ -272615,8 +256909,6 @@ }, "description": "1.601A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5115.01.601A", "maps": [], @@ -272649,8 +256941,6 @@ }, "description": "1.700, Korridor West", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5115.01.700", "maps": [], @@ -272683,8 +256973,6 @@ }, "description": "1.701, Korridor West", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5115.01.701", "maps": [], @@ -272717,8 +257005,6 @@ }, "description": "1.702, Korridor Nord", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5115.01.702", "maps": [], @@ -272751,8 +257037,6 @@ }, "description": "1.703, Korridor Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5115.01.703", "maps": [], @@ -272785,8 +257069,6 @@ }, "description": "1.704, Korridor S\u00fcd-Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5115.01.704", "maps": [], @@ -272819,8 +257101,6 @@ }, "description": "1.800, Treppe S\u00fcd", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5115.01.800", "maps": [], @@ -272853,8 +257133,6 @@ }, "description": "1.801, Treppe Nord", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5115.01.801", "maps": [], @@ -272887,8 +257165,6 @@ }, "description": "2.001, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5115.02.001", "maps": [], @@ -272921,8 +257197,6 @@ }, "description": "2.002, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5115.02.002", "maps": [], @@ -272987,8 +257261,6 @@ }, "description": "2.004, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5115.02.004", "maps": [], @@ -273021,8 +257293,6 @@ }, "description": "2.005, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5115.02.005", "maps": [], @@ -273055,8 +257325,6 @@ }, "description": "2.006, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5115.02.006", "maps": [], @@ -273089,8 +257357,6 @@ }, "description": "2.007, Pantry", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5115.02.007", "maps": [], @@ -273123,8 +257389,6 @@ }, "description": "2.008, Kopierraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5115.02.008", "maps": [], @@ -273157,8 +257421,6 @@ }, "description": "2.008A, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5115.02.008A", "maps": [], @@ -273191,8 +257453,6 @@ }, "description": "2.009, Chemie Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5115.02.009", "maps": [], @@ -273225,8 +257485,6 @@ }, "description": "2.009A, Chemielager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5115.02.009A", "maps": [], @@ -273259,8 +257517,6 @@ }, "description": "2.010, Biochemie/-physik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5115.02.010", "maps": [], @@ -273293,8 +257549,6 @@ }, "description": "2.011, Zellbiologie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5115.02.011", "maps": [], @@ -273327,8 +257581,6 @@ }, "description": "2.011A, Zellbiologie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5115.02.011A", "maps": [], @@ -273361,8 +257613,6 @@ }, "description": "2.012, Post", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5115.02.012", "maps": [], @@ -273395,8 +257645,6 @@ }, "description": "2.013, Post", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5115.02.013", "maps": [], @@ -273429,8 +257677,6 @@ }, "description": "2.014, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5115.02.014", "maps": [], @@ -273463,8 +257709,6 @@ }, "description": "2.015, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5115.02.015", "maps": [], @@ -273497,8 +257741,6 @@ }, "description": "2.016, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5115.02.016", "maps": [], @@ -273531,8 +257773,6 @@ }, "description": "2.017, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5115.02.017", "maps": [], @@ -273565,8 +257805,6 @@ }, "description": "2.018, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5115.02.018", "maps": [], @@ -273599,8 +257837,6 @@ }, "description": "2.019, Bioelektronik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5115.02.019", "maps": [], @@ -273633,8 +257869,6 @@ }, "description": "2.020, Bioelektronik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5115.02.020", "maps": [], @@ -273667,8 +257901,6 @@ }, "description": "2.021, Biochemie/-physik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5115.02.021", "maps": [], @@ -273701,8 +257933,6 @@ }, "description": "2.022, Zellbiologie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5115.02.022", "maps": [], @@ -273735,8 +257965,6 @@ }, "description": "2.501, Elt.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5115.02.501", "maps": [], @@ -273769,8 +257997,6 @@ }, "description": "2.502, Schacht 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5115.02.502", "maps": [], @@ -273803,8 +258029,6 @@ }, "description": "2.503, Elt.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5115.02.503", "maps": [], @@ -273837,8 +258061,6 @@ }, "description": "2.504, Schacht 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5115.02.504", "maps": [], @@ -273871,8 +258093,6 @@ }, "description": "2.505, Schacht 5", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5115.02.505", "maps": [], @@ -273905,8 +258125,6 @@ }, "description": "2.506, Schacht 6", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5115.02.506", "maps": [], @@ -273939,8 +258157,6 @@ }, "description": "2.507, Lastenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5115.02.507", "maps": [], @@ -273973,8 +258189,6 @@ }, "description": "2.600, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5115.02.600", "maps": [], @@ -274007,8 +258221,6 @@ }, "description": "2.601, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5115.02.601", "maps": [], @@ -274041,8 +258253,6 @@ }, "description": "2.601A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5115.02.601A", "maps": [], @@ -274075,8 +258285,6 @@ }, "description": "2.700, Korridor S\u00fcd-West", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5115.02.700", "maps": [], @@ -274109,8 +258317,6 @@ }, "description": "2.701, Korridor West", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5115.02.701", "maps": [], @@ -274143,8 +258349,6 @@ }, "description": "2.702, Korridor Nord", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5115.02.702", "maps": [], @@ -274177,8 +258381,6 @@ }, "description": "2.703, Korridor Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5115.02.703", "maps": [], @@ -274211,8 +258413,6 @@ }, "description": "2.704, Korridor S\u00fcd-Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5115.02.704", "maps": [], @@ -274245,8 +258445,6 @@ }, "description": "2.800, Treppe S\u00fcd", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5115.02.800", "maps": [], @@ -274279,8 +258477,6 @@ }, "description": "2.801, Treppe Nord", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5115.02.801", "maps": [], @@ -274313,8 +258509,6 @@ }, "description": "3.500, Technikzentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5115.DG.500", "maps": [], @@ -274347,8 +258541,6 @@ }, "description": "3.501, MAZ", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5115.DG.501", "maps": [], @@ -274381,8 +258573,6 @@ }, "description": "3.503, Medien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5115.DG.503", "maps": [], @@ -274415,8 +258605,6 @@ }, "description": "3.505, Heizung/K\u00e4lte", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5115.DG.505", "maps": [], @@ -274449,8 +258637,6 @@ }, "description": "3.507, Lastenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5115.DG.507", "maps": [], @@ -274483,8 +258669,6 @@ }, "description": "3.509, Elektro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5115.DG.509", "maps": [], @@ -274517,8 +258701,6 @@ }, "description": "3.510, RWA", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5115.DG.510", "maps": [], @@ -274551,8 +258733,6 @@ }, "description": "3.511, Elektro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5115.DG.511", "maps": [], @@ -274585,8 +258765,6 @@ }, "description": "3.800, Treppe S\u00fcd", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5115.DG.800", "maps": [], @@ -274660,8 +258838,6 @@ }, "description": "0.002, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5115.EG.002", "maps": [], @@ -274694,8 +258870,6 @@ }, "description": "0.003, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5115.EG.003", "maps": [], @@ -274728,8 +258902,6 @@ }, "description": "0.004, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5115.EG.004", "maps": [], @@ -274762,8 +258934,6 @@ }, "description": "0.005, Nanostruk. RR", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5115.EG.005", "maps": [], @@ -274796,8 +258966,6 @@ }, "description": "0.005A, Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5115.EG.005A", "maps": [], @@ -274830,8 +258998,6 @@ }, "description": "0.006, Nanoanalytik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5115.EG.006", "maps": [], @@ -274864,8 +259030,6 @@ }, "description": "0.006A, Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5115.EG.006A", "maps": [], @@ -274898,8 +259062,6 @@ }, "description": "0.007, Elt. Transport", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5115.EG.007", "maps": [], @@ -274932,8 +259094,6 @@ }, "description": "0.007A, Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5115.EG.007A", "maps": [], @@ -274966,8 +259126,6 @@ }, "description": "0.008, Support", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5115.EG.008", "maps": [], @@ -275000,8 +259158,6 @@ }, "description": "0.008A, Mat. Schleuse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5115.EG.008A", "maps": [], @@ -275034,8 +259190,6 @@ }, "description": "0.008B, Schleuse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5115.EG.008B", "maps": [], @@ -275068,8 +259222,6 @@ }, "description": "0.009, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5115.EG.009", "maps": [], @@ -275102,8 +259254,6 @@ }, "description": "0.010, Chem. Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5115.EG.010", "maps": [], @@ -275136,8 +259286,6 @@ }, "description": "0.011, Gasflaschen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5115.EG.011", "maps": [], @@ -275170,8 +259318,6 @@ }, "description": "0.012, Heliumlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5115.EG.012", "maps": [], @@ -275204,8 +259350,6 @@ }, "description": "0.013, Materialtech.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5115.EG.013", "maps": [], @@ -275238,8 +259382,6 @@ }, "description": "0.014, Materialtech.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5115.EG.014", "maps": [], @@ -275272,8 +259414,6 @@ }, "description": "0.016, Materialtech.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5115.EG.016", "maps": [], @@ -275306,8 +259446,6 @@ }, "description": "0.016A, Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5115.EG.016A", "maps": [], @@ -275340,8 +259478,6 @@ }, "description": "0.017, Nanostruk. RR", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5115.EG.017", "maps": [], @@ -275374,8 +259510,6 @@ }, "description": "0.018, Nanostruk. RR", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5115.EG.018", "maps": [], @@ -275408,8 +259542,6 @@ }, "description": "0.018A, Pers. Sitover", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5115.EG.018A", "maps": [], @@ -275442,8 +259574,6 @@ }, "description": "0.018B, Pers. Schleuse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5115.EG.018B", "maps": [], @@ -275476,8 +259606,6 @@ }, "description": "0.018C, Nanostruk. RR", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5115.EG.018C", "maps": [], @@ -275510,8 +259638,6 @@ }, "description": "0.501, Elt.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5115.EG.501", "maps": [], @@ -275544,8 +259670,6 @@ }, "description": "0.502, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5115.EG.502", "maps": [], @@ -275578,8 +259702,6 @@ }, "description": "0.503, Elt.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5115.EG.503", "maps": [], @@ -275612,8 +259734,6 @@ }, "description": "0.507, Aufzugschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5115.EG.507", "maps": [], @@ -275646,8 +259766,6 @@ }, "description": "0.600, Beh.-WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5115.EG.600", "maps": [], @@ -275680,8 +259798,6 @@ }, "description": "0.601, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5115.EG.601", "maps": [], @@ -275714,8 +259830,6 @@ }, "description": "0.602, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5115.EG.602", "maps": [], @@ -275748,8 +259862,6 @@ }, "description": "0.602A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5115.EG.602A", "maps": [], @@ -275782,8 +259894,6 @@ }, "description": "0.700, Foyer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5115.EG.700", "maps": [], @@ -275816,8 +259926,6 @@ }, "description": "0.700A, Windfang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5115.EG.700A", "maps": [], @@ -275850,8 +259958,6 @@ }, "description": "0.700B, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5115.EG.700B", "maps": [], @@ -275884,8 +259990,6 @@ }, "description": "0.701, Korridor West", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5115.EG.701", "maps": [], @@ -275918,8 +260022,6 @@ }, "description": "0.702, Korridor Nord", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5115.EG.702", "maps": [], @@ -275952,8 +260054,6 @@ }, "description": "0.702A, Korridor Mat.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5115.EG.702A", "maps": [], @@ -275986,8 +260086,6 @@ }, "description": "0.703, Korridor Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5115.EG.703", "maps": [], @@ -276020,8 +260118,6 @@ }, "description": "0.800, Treppe S\u00fcd", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5115.EG.800", "maps": [], @@ -276054,8 +260150,6 @@ }, "description": "0.801, Treppe Nord", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5115.EG.801", "maps": [], @@ -276088,8 +260182,6 @@ }, "description": "-1.500, Medienkanal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5115.U1.500", "maps": [], @@ -276122,8 +260214,6 @@ }, "description": "-1.501, Medienkanal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5115.U1.501", "maps": [], @@ -276156,8 +260246,6 @@ }, "description": "0001, Trafostation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5116.EG.001", "maps": [], @@ -276190,8 +260278,6 @@ }, "description": "0002, Trafostation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5116.EG.002", "maps": [], @@ -276224,8 +260310,6 @@ }, "description": "0002, Trafostation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5116.EG.003", "maps": [], @@ -276258,8 +260342,6 @@ }, "description": "101, Seminar", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5120.01.101", "maps": [], @@ -276292,8 +260374,6 @@ }, "description": "019, LMU H\u00f6rsaal im Physik Werkstattgeb\u00e4ude", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5123.EG.019", "maps": [ @@ -276374,8 +260454,6 @@ }, "description": "101, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5124.01.101", "maps": [], @@ -276408,8 +260486,6 @@ }, "description": "102, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5124.01.102", "maps": [], @@ -276442,8 +260518,6 @@ }, "description": "103, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5124.01.103", "maps": [], @@ -276476,8 +260550,6 @@ }, "description": "104, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5124.01.104", "maps": [], @@ -276510,8 +260582,6 @@ }, "description": "105, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5124.01.105", "maps": [], @@ -276544,8 +260614,6 @@ }, "description": "106, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5124.01.106", "maps": [], @@ -276578,8 +260646,6 @@ }, "description": "107, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5124.01.107", "maps": [], @@ -276612,8 +260678,6 @@ }, "description": "001, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5124.EG.001", "maps": [], @@ -276646,8 +260710,6 @@ }, "description": "002, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5124.EG.002", "maps": [], @@ -276680,8 +260742,6 @@ }, "description": "003, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5124.EG.003", "maps": [], @@ -276714,8 +260774,6 @@ }, "description": "004, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5124.EG.004", "maps": [], @@ -276748,8 +260806,6 @@ }, "description": "005, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5124.EG.005", "maps": [], @@ -276782,8 +260838,6 @@ }, "description": "006, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5124.EG.006", "maps": [], @@ -276816,8 +260870,6 @@ }, "description": "007, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5124.EG.007", "maps": [], @@ -276850,8 +260902,6 @@ }, "description": "008, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5124.EG.008", "maps": [], @@ -276884,8 +260934,6 @@ }, "description": "0001, Telefonzentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5130.EG.001", "maps": [], @@ -276918,8 +260966,6 @@ }, "description": "0002, Zeiterfassung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5130.EG.002", "maps": [], @@ -276952,8 +260998,6 @@ }, "description": "0003, B\u00fcro Leiter TZ", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5130.EG.003", "maps": [], @@ -276986,8 +261030,6 @@ }, "description": "0004, Flur/Verbindungsgang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5130.EG.004", "maps": [], @@ -277020,8 +261062,6 @@ }, "description": "0005, Elektrische Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5130.EG.005", "maps": [], @@ -277054,8 +261094,6 @@ }, "description": "001, Poststelle Container 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5131.EG.001", "maps": [], @@ -277088,8 +261126,6 @@ }, "description": "002, Poststelle Container 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5131.EG.002", "maps": [], @@ -277122,8 +261158,6 @@ }, "description": "003, Poststelle Container 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5131.EG.003", "maps": [], @@ -277156,8 +261190,6 @@ }, "description": "004, Poststelle Container 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5131.EG.004", "maps": [], @@ -277304,8 +261336,6 @@ }, "description": "C.3204, CIP-Raum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5140.01.204", "maps": [], @@ -277338,8 +261368,6 @@ }, "description": "C.3205, CIP-Raum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5140.01.205", "maps": [], @@ -277372,8 +261400,6 @@ }, "description": "C.3206, CIP-Raum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5140.01.206", "maps": [], @@ -277406,8 +261432,6 @@ }, "description": "C.3207, CIP-Raum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5140.01.207", "maps": [], @@ -277440,8 +261464,6 @@ }, "description": "C.3208, CIP-Raum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5140.01.208", "maps": [], @@ -277474,8 +261496,6 @@ }, "description": "C.3901, Flur/Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5140.01.901", "maps": [], @@ -277508,8 +261528,6 @@ }, "description": "C.3902, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5140.01.902", "maps": [], @@ -277574,8 +261592,6 @@ }, "description": "C.2202, CIP-Raum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5140.EG.202", "maps": [], @@ -277640,8 +261656,6 @@ }, "description": "C.2204, CIP-Raum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5140.EG.204", "maps": [], @@ -277674,8 +261688,6 @@ }, "description": "C.2205, CIP-Raum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5140.EG.205", "maps": [], @@ -277707,8 +261719,6 @@ }, "description": "C.2206, CIP-Raum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5140.EG.206", "maps": [], @@ -277740,8 +261750,6 @@ }, "description": "C.2207, Kinderraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5140.EG.207", "maps": [], @@ -277774,8 +261782,6 @@ }, "description": "C.2208, CIP-Raum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5140.EG.208", "maps": [], @@ -277807,8 +261813,6 @@ }, "description": "C.2901, Flur/Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5140.EG.901", "maps": [], @@ -277841,8 +261845,6 @@ }, "description": "C.2902, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5140.EG.902", "maps": [], @@ -277875,8 +261877,6 @@ }, "description": "C.2903, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5140.EG.903", "maps": [], @@ -277909,8 +261909,6 @@ }, "description": "C.2904, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5140.EG.904", "maps": [], @@ -277943,8 +261941,6 @@ }, "description": "Stellplatz C1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5142.01.001C", "maps": [], @@ -277977,8 +261973,6 @@ }, "description": "Stellplatz C2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5142.01.002C", "maps": [], @@ -278011,8 +262005,6 @@ }, "description": "Stellplatz C3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5142.01.003C", "maps": [], @@ -278045,8 +262037,6 @@ }, "description": "Stellplatz C4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5142.01.004C", "maps": [], @@ -278079,8 +262069,6 @@ }, "description": "Stellplatz C5", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5142.01.005C", "maps": [], @@ -278113,8 +262101,6 @@ }, "description": "Stellplatz C6", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5142.01.006C", "maps": [], @@ -278147,8 +262133,6 @@ }, "description": "Stellplatz C7", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5142.01.007C", "maps": [], @@ -278181,8 +262165,6 @@ }, "description": "Stellplatz C8", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5142.01.008C", "maps": [], @@ -278215,8 +262197,6 @@ }, "description": "Stellplatz C9", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5142.01.009C", "maps": [], @@ -278249,8 +262229,6 @@ }, "description": "Stellplatz C10", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5142.01.010C", "maps": [], @@ -278283,8 +262261,6 @@ }, "description": "Stellplatz C11", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5142.01.011C", "maps": [], @@ -278317,8 +262293,6 @@ }, "description": "Stellplatz C12", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5142.01.012C", "maps": [], @@ -278351,8 +262325,6 @@ }, "description": "Stellplatz C13", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5142.01.013C", "maps": [], @@ -278385,8 +262357,6 @@ }, "description": "Stellplatz C14", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5142.01.014C", "maps": [], @@ -278419,8 +262389,6 @@ }, "description": "Stellplatz C15", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5142.01.015C", "maps": [], @@ -278453,8 +262421,6 @@ }, "description": "Stellplatz C16", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5142.01.016C", "maps": [], @@ -278487,8 +262453,6 @@ }, "description": "Stellplatz C17", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5142.01.017C", "maps": [], @@ -278521,8 +262485,6 @@ }, "description": "Stellplatz C18", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5142.01.018C", "maps": [], @@ -278555,8 +262517,6 @@ }, "description": "Stellplatz C19", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5142.01.019C", "maps": [], @@ -278589,8 +262549,6 @@ }, "description": "Stellplatz C20", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5142.01.020C", "maps": [], @@ -278623,8 +262581,6 @@ }, "description": "Stellplatz C21", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5142.01.021C", "maps": [], @@ -278657,8 +262613,6 @@ }, "description": "Stellplatz C22", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5142.01.022C", "maps": [], @@ -278691,8 +262645,6 @@ }, "description": "Stellplatz C23", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5142.01.023C", "maps": [], @@ -278725,8 +262677,6 @@ }, "description": "Stellplatz C24", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5142.01.024C", "maps": [], @@ -278759,8 +262709,6 @@ }, "description": "Stellplatz C25", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5142.01.025C", "maps": [], @@ -278793,8 +262741,6 @@ }, "description": "Stellplatz C26", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5142.01.026C", "maps": [], @@ -278827,8 +262773,6 @@ }, "description": "Stellplatz C27", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5142.01.027C", "maps": [], @@ -278861,8 +262805,6 @@ }, "description": "Stellplatz C28", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5142.01.028C", "maps": [], @@ -278895,8 +262837,6 @@ }, "description": "Stellplatz C29", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5142.01.029C", "maps": [], @@ -278929,8 +262869,6 @@ }, "description": "Stellplatz C30", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5142.01.030C", "maps": [], @@ -278963,8 +262901,6 @@ }, "description": "Stellplatz C31", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5142.01.031C", "maps": [], @@ -278997,8 +262933,6 @@ }, "description": "Stellplatz C32", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5142.01.032C", "maps": [], @@ -279031,8 +262965,6 @@ }, "description": "Stellplatz C33", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5142.01.033C", "maps": [], @@ -279065,8 +262997,6 @@ }, "description": "Stellplatz C34", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5142.01.034C", "maps": [], @@ -279099,8 +263029,6 @@ }, "description": "Stellplatz C35", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5142.01.035C", "maps": [], @@ -279133,8 +263061,6 @@ }, "description": "Treppenhaus 1 C51", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5142.01.051C", "maps": [], @@ -279167,8 +263093,6 @@ }, "description": "Treppenhaus 2 C52", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5142.01.052C", "maps": [], @@ -279201,8 +263125,6 @@ }, "description": "Fahrbahn Ebene C60", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5142.01.060C", "maps": [], @@ -279235,8 +263157,6 @@ }, "description": "Personenaufzug Schacht C85", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5142.01.085C", "maps": [], @@ -279269,8 +263189,6 @@ }, "description": "Stellplatz E1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5142.02.001E", "maps": [], @@ -279303,8 +263221,6 @@ }, "description": "Stellplatz E2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5142.02.002E", "maps": [], @@ -279337,8 +263253,6 @@ }, "description": "Stellplatz E3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5142.02.003E", "maps": [], @@ -279371,8 +263285,6 @@ }, "description": "Stellplatz E4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5142.02.004E", "maps": [], @@ -279405,8 +263317,6 @@ }, "description": "Stellplatz E5", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5142.02.005E", "maps": [], @@ -279439,8 +263349,6 @@ }, "description": "Stellplatz E6", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5142.02.006E", "maps": [], @@ -279473,8 +263381,6 @@ }, "description": "Stellplatz E7", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5142.02.007E", "maps": [], @@ -279507,8 +263413,6 @@ }, "description": "Stellplatz E8", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5142.02.008E", "maps": [], @@ -279541,8 +263445,6 @@ }, "description": "Stellplatz E9", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5142.02.009E", "maps": [], @@ -279575,8 +263477,6 @@ }, "description": "Stellplatz E10", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5142.02.010E", "maps": [], @@ -279609,8 +263509,6 @@ }, "description": "Stellplatz E11", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5142.02.011E", "maps": [], @@ -279643,8 +263541,6 @@ }, "description": "Stellplatz E12", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5142.02.012E", "maps": [], @@ -279677,8 +263573,6 @@ }, "description": "Stellplatz E13", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5142.02.013E", "maps": [], @@ -279711,8 +263605,6 @@ }, "description": "Stellplatz E14", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5142.02.014E", "maps": [], @@ -279745,8 +263637,6 @@ }, "description": "Stellplatz E15", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5142.02.015E", "maps": [], @@ -279779,8 +263669,6 @@ }, "description": "Stellplatz E16", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5142.02.016E", "maps": [], @@ -279813,8 +263701,6 @@ }, "description": "Stellplatz E17", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5142.02.017E", "maps": [], @@ -279847,8 +263733,6 @@ }, "description": "Stellplatz E18", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5142.02.018E", "maps": [], @@ -279881,8 +263765,6 @@ }, "description": "Stellplatz E19", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5142.02.019E", "maps": [], @@ -279915,8 +263797,6 @@ }, "description": "Stellplatz E20", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5142.02.020E", "maps": [], @@ -279949,8 +263829,6 @@ }, "description": "Stellplatz E21", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5142.02.021E", "maps": [], @@ -279983,8 +263861,6 @@ }, "description": "Stellplatz E22", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5142.02.022E", "maps": [], @@ -280017,8 +263893,6 @@ }, "description": "Stellplatz E23", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5142.02.023E", "maps": [], @@ -280051,8 +263925,6 @@ }, "description": "Stellplatz E24", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5142.02.024E", "maps": [], @@ -280085,8 +263957,6 @@ }, "description": "Stellplatz E25", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5142.02.025E", "maps": [], @@ -280119,8 +263989,6 @@ }, "description": "Stellplatz E26", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5142.02.026E", "maps": [], @@ -280153,8 +264021,6 @@ }, "description": "Stellplatz E27", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5142.02.027E", "maps": [], @@ -280187,8 +264053,6 @@ }, "description": "Stellplatz E28", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5142.02.028E", "maps": [], @@ -280221,8 +264085,6 @@ }, "description": "Stellplatz E29", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5142.02.029E", "maps": [], @@ -280255,8 +264117,6 @@ }, "description": "Stellplatz E30", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5142.02.030E", "maps": [], @@ -280289,8 +264149,6 @@ }, "description": "Stellplatz E31", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5142.02.031E", "maps": [], @@ -280323,8 +264181,6 @@ }, "description": "Stellplatz E32", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5142.02.032E", "maps": [], @@ -280357,8 +264213,6 @@ }, "description": "Stellplatz E33", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5142.02.033E", "maps": [], @@ -280391,8 +264245,6 @@ }, "description": "Stellplatz E34", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5142.02.034E", "maps": [], @@ -280425,8 +264277,6 @@ }, "description": "Stellplatz E35", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5142.02.035E", "maps": [], @@ -280459,8 +264309,6 @@ }, "description": "Treppenhaus 1 E51", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5142.02.051E", "maps": [], @@ -280493,8 +264341,6 @@ }, "description": "Treppenhaus 1 E52", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5142.02.052E", "maps": [], @@ -280527,8 +264373,6 @@ }, "description": "Fahrbahn E60", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5142.02.060E", "maps": [], @@ -280561,8 +264405,6 @@ }, "description": "Treppenhaus 1 E85", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5142.02.085E", "maps": [], @@ -280595,8 +264437,6 @@ }, "description": "Stellplatz A1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5142.EG.001A", "maps": [], @@ -280629,8 +264469,6 @@ }, "description": "Stellplatz A2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5142.EG.002A", "maps": [], @@ -280663,8 +264501,6 @@ }, "description": "Stellplatz A3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5142.EG.003A", "maps": [], @@ -280697,8 +264533,6 @@ }, "description": "Stellplatz A4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5142.EG.004A", "maps": [], @@ -280731,8 +264565,6 @@ }, "description": "Stellplatz A5", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5142.EG.005A", "maps": [], @@ -280765,8 +264597,6 @@ }, "description": "Stellplatz A6", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5142.EG.006A", "maps": [], @@ -280799,8 +264629,6 @@ }, "description": "Stellplatz A7", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5142.EG.007A", "maps": [], @@ -280833,8 +264661,6 @@ }, "description": "Stellplatz A8", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5142.EG.008A", "maps": [], @@ -280867,8 +264693,6 @@ }, "description": "Stellplatz A9", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5142.EG.009A", "maps": [], @@ -280901,8 +264725,6 @@ }, "description": "Stellplatz A10", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5142.EG.010A", "maps": [], @@ -280935,8 +264757,6 @@ }, "description": "Stellplatz A11", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5142.EG.011A", "maps": [], @@ -280969,8 +264789,6 @@ }, "description": "Stellplatz A12", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5142.EG.012A", "maps": [], @@ -281003,8 +264821,6 @@ }, "description": "Stellplatz A13", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5142.EG.013A", "maps": [], @@ -281037,8 +264853,6 @@ }, "description": "Stellplatz A14", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5142.EG.014A", "maps": [], @@ -281071,8 +264885,6 @@ }, "description": "Stellplatz A15", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5142.EG.015A", "maps": [], @@ -281105,8 +264917,6 @@ }, "description": "Stellplatz A16", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5142.EG.016A", "maps": [], @@ -281139,8 +264949,6 @@ }, "description": "Stellplatz A17", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5142.EG.017A", "maps": [], @@ -281173,8 +264981,6 @@ }, "description": "Stellplatz A18", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5142.EG.018A", "maps": [], @@ -281207,8 +265013,6 @@ }, "description": "Stellplatz A19", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5142.EG.019A", "maps": [], @@ -281241,8 +265045,6 @@ }, "description": "Stellplatz A20", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5142.EG.020A", "maps": [], @@ -281275,8 +265077,6 @@ }, "description": "Stellplatz A21", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5142.EG.021A", "maps": [], @@ -281309,8 +265109,6 @@ }, "description": "Stellplatz A22", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5142.EG.022A", "maps": [], @@ -281343,8 +265141,6 @@ }, "description": "Stellplatz A23", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5142.EG.023A", "maps": [], @@ -281377,8 +265173,6 @@ }, "description": "Stellplatz A24", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5142.EG.024A", "maps": [], @@ -281411,8 +265205,6 @@ }, "description": "Stellplatz A25", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5142.EG.025A", "maps": [], @@ -281445,8 +265237,6 @@ }, "description": "Stellplatz A26", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5142.EG.026A", "maps": [], @@ -281479,8 +265269,6 @@ }, "description": "Stellplatz A27", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5142.EG.027A", "maps": [], @@ -281513,8 +265301,6 @@ }, "description": "Stellplatz A28", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5142.EG.028A", "maps": [], @@ -281547,8 +265333,6 @@ }, "description": "Stellplatz A29", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5142.EG.029A", "maps": [], @@ -281581,8 +265365,6 @@ }, "description": "Stellplatz A30", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5142.EG.030A", "maps": [], @@ -281615,8 +265397,6 @@ }, "description": "Stellplatz A31", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5142.EG.031A", "maps": [], @@ -281649,8 +265429,6 @@ }, "description": "Stellplatz A32", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5142.EG.032A", "maps": [], @@ -281683,8 +265461,6 @@ }, "description": "A51, Treppenhaus 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5142.EG.051A", "maps": [], @@ -281717,8 +265493,6 @@ }, "description": "A52, Treppenhaus 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5142.EG.052A", "maps": [], @@ -281751,8 +265525,6 @@ }, "description": "Fahrbahn Ebene A60", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5142.EG.060A", "maps": [], @@ -281785,8 +265557,6 @@ }, "description": "A85, Personen Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5142.EG.085A", "maps": [], @@ -281819,8 +265589,6 @@ }, "description": "UG.04, Einbringung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5142.U1.004", "maps": [], @@ -281853,8 +265621,6 @@ }, "description": "UG.12, Vorraum-Einbringung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5142.U1.012", "maps": [], @@ -281887,8 +265653,6 @@ }, "description": "UG.13, Vorraum Trafo Aussen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5142.U1.013", "maps": [], @@ -281921,8 +265685,6 @@ }, "description": "UG.18, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5142.U1.018", "maps": [], @@ -281955,8 +265717,6 @@ }, "description": "UG.19, Betriebsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5142.U1.019", "maps": [], @@ -281989,8 +265749,6 @@ }, "description": "UG.20, RLT-Zentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5142.U1.020", "maps": [], @@ -282023,8 +265781,6 @@ }, "description": "UG.22, DL-Erzeugung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5142.U1.022", "maps": [], @@ -282057,8 +265813,6 @@ }, "description": "UG.23, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5142.U1.023", "maps": [], @@ -282091,8 +265845,6 @@ }, "description": "UG.24, BOS", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5142.U1.024", "maps": [], @@ -282125,8 +265877,6 @@ }, "description": "UG.25, BMA", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5142.U1.025", "maps": [], @@ -282159,8 +265909,6 @@ }, "description": "UG.27, FM/GMA", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5142.U1.027", "maps": [], @@ -282193,8 +265941,6 @@ }, "description": "UG.29, SiBel", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5142.U1.029", "maps": [], @@ -282227,8 +265973,6 @@ }, "description": "UG.30, LRZ-Verteilerknoten", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5142.U1.030", "maps": [], @@ -282261,8 +266005,6 @@ }, "description": "UG.31, K\u00e4ltezentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5142.U1.031", "maps": [], @@ -282295,8 +266037,6 @@ }, "description": "UG.33, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5142.U1.033", "maps": [], @@ -282329,8 +266069,6 @@ }, "description": "UG.35, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5142.U1.035", "maps": [], @@ -282363,8 +266101,6 @@ }, "description": "UG.37, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5142.U1.037", "maps": [], @@ -282397,8 +266133,6 @@ }, "description": "UG.41, Medienkanal kalt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5142.U1.041", "maps": [], @@ -282431,8 +266165,6 @@ }, "description": "UG.43, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5142.U1.043", "maps": [], @@ -282465,8 +266197,6 @@ }, "description": "UG.44, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5142.U1.044", "maps": [], @@ -282499,8 +266229,6 @@ }, "description": "UG.51, Treppenhaus 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5142.U1.051", "maps": [], @@ -282533,8 +266261,6 @@ }, "description": "UG.51A, Treppenhaus 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5142.U1.051A", "maps": [], @@ -282567,8 +266293,6 @@ }, "description": "UG.53, Treppenhaus 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5142.U1.053", "maps": [], @@ -282601,8 +266325,6 @@ }, "description": "UG.80, Inst. Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5142.U1.080", "maps": [], @@ -282635,8 +266357,6 @@ }, "description": "UG.81, Inst. Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5142.U1.081", "maps": [], @@ -282669,8 +266389,6 @@ }, "description": "UG.82, Entrauchung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5142.U1.082", "maps": [], @@ -282703,8 +266421,6 @@ }, "description": "UG.83, Entrauchung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5142.U1.083", "maps": [], @@ -282737,8 +266453,6 @@ }, "description": "UG.84, Entrauchung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5142.U1.084", "maps": [], @@ -282771,8 +266485,6 @@ }, "description": "UG.85, Aufzug Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5142.U1.085", "maps": [], @@ -282805,8 +266517,6 @@ }, "description": "Stellplatz B1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "5142.Z1.001B", "maps": [], @@ -282839,8 +266549,6 @@ }, "description": "Stellplatz B2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "5142.Z1.002B", "maps": [], @@ -282873,8 +266581,6 @@ }, "description": "Stellplatz B3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "5142.Z1.003B", "maps": [], @@ -282907,8 +266613,6 @@ }, "description": "Stellplatz B4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "5142.Z1.004B", "maps": [], @@ -282941,8 +266645,6 @@ }, "description": "Stellplatz B5", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "5142.Z1.005B", "maps": [], @@ -282975,8 +266677,6 @@ }, "description": "Stellplatz B6", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "5142.Z1.006B", "maps": [], @@ -283009,8 +266709,6 @@ }, "description": "Stellplatz B7", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "5142.Z1.007B", "maps": [], @@ -283043,8 +266741,6 @@ }, "description": "Stellplatz B8", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "5142.Z1.008B", "maps": [], @@ -283077,8 +266773,6 @@ }, "description": "Stellplatz B9", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "5142.Z1.009B", "maps": [], @@ -283111,8 +266805,6 @@ }, "description": "Stellplatz B10", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "5142.Z1.010B", "maps": [], @@ -283145,8 +266837,6 @@ }, "description": "Stellplatz B11", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "5142.Z1.011B", "maps": [], @@ -283179,8 +266869,6 @@ }, "description": "Stellplatz B12", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "5142.Z1.012B", "maps": [], @@ -283213,8 +266901,6 @@ }, "description": "Stellplatz B13", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "5142.Z1.013B", "maps": [], @@ -283247,8 +266933,6 @@ }, "description": "Stellplatz B14", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "5142.Z1.014B", "maps": [], @@ -283281,8 +266965,6 @@ }, "description": "Stellplatz B15", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "5142.Z1.015B", "maps": [], @@ -283315,8 +266997,6 @@ }, "description": "Stellplatz B16", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "5142.Z1.016B", "maps": [], @@ -283349,8 +267029,6 @@ }, "description": "Stellplatz B17", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "5142.Z1.017B", "maps": [], @@ -283383,8 +267061,6 @@ }, "description": "Stellplatz B18", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "5142.Z1.018B", "maps": [], @@ -283417,8 +267093,6 @@ }, "description": "Stellplatz B19", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "5142.Z1.019B", "maps": [], @@ -283451,8 +267125,6 @@ }, "description": "Stellplatz B20", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "5142.Z1.020B", "maps": [], @@ -283485,8 +267157,6 @@ }, "description": "Stellplatz B21", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "5142.Z1.021B", "maps": [], @@ -283519,8 +267189,6 @@ }, "description": "Stellplatz B22", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "5142.Z1.022B", "maps": [], @@ -283553,8 +267221,6 @@ }, "description": "Stellplatz B23", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "5142.Z1.023B", "maps": [], @@ -283587,8 +267253,6 @@ }, "description": "Stellplatz B24", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "5142.Z1.024B", "maps": [], @@ -283621,8 +267285,6 @@ }, "description": "Stellplatz B25", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "5142.Z1.025B", "maps": [], @@ -283655,8 +267317,6 @@ }, "description": "Stellplatz B26", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "5142.Z1.026B", "maps": [], @@ -283689,8 +267349,6 @@ }, "description": "Stellplatz B27", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "5142.Z1.027B", "maps": [], @@ -283723,8 +267381,6 @@ }, "description": "Stellplatz B28", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "5142.Z1.028B", "maps": [], @@ -283757,8 +267413,6 @@ }, "description": "Stellplatz B29", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "5142.Z1.029B", "maps": [], @@ -283791,8 +267445,6 @@ }, "description": "Stellplatz B30", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "5142.Z1.030B", "maps": [], @@ -283825,8 +267477,6 @@ }, "description": "Stellplatz B31", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "5142.Z1.031B", "maps": [], @@ -283859,8 +267509,6 @@ }, "description": "Stellplatz B32", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "5142.Z1.032B", "maps": [], @@ -283893,8 +267541,6 @@ }, "description": "Stellplatz B33", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "5142.Z1.033B", "maps": [], @@ -283927,8 +267573,6 @@ }, "description": "Stellplatz B34", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "5142.Z1.034B", "maps": [], @@ -283961,8 +267605,6 @@ }, "description": "Stellplatz B35", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "5142.Z1.035B", "maps": [], @@ -283995,8 +267637,6 @@ }, "description": "Treppenhaus 1 B51", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "5142.Z1.051B", "maps": [], @@ -284029,8 +267669,6 @@ }, "description": "Fahrbahn Ebene B60", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "5142.Z1.060B", "maps": [], @@ -284063,8 +267701,6 @@ }, "description": "Install. Schacht B80", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "5142.Z1.080B", "maps": [], @@ -284097,8 +267733,6 @@ }, "description": "Stellplatz D1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z2", "id": "5142.Z2.001D", "maps": [], @@ -284131,8 +267765,6 @@ }, "description": "Stellplatz D2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z2", "id": "5142.Z2.002D", "maps": [], @@ -284165,8 +267797,6 @@ }, "description": "Stellplatz D3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z2", "id": "5142.Z2.003D", "maps": [], @@ -284199,8 +267829,6 @@ }, "description": "Stellplatz D4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z2", "id": "5142.Z2.004D", "maps": [], @@ -284233,8 +267861,6 @@ }, "description": "Stellplatz D5", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z2", "id": "5142.Z2.005D", "maps": [], @@ -284267,8 +267893,6 @@ }, "description": "Stellplatz D6", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z2", "id": "5142.Z2.006D", "maps": [], @@ -284301,8 +267925,6 @@ }, "description": "Stellplatz D7", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z2", "id": "5142.Z2.007D", "maps": [], @@ -284335,8 +267957,6 @@ }, "description": "Stellplatz D8", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z2", "id": "5142.Z2.008D", "maps": [], @@ -284369,8 +267989,6 @@ }, "description": "Stellplatz D9", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z2", "id": "5142.Z2.009D", "maps": [], @@ -284403,8 +268021,6 @@ }, "description": "Stellplatz D10", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z2", "id": "5142.Z2.010D", "maps": [], @@ -284437,8 +268053,6 @@ }, "description": "Stellplatz D11", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z2", "id": "5142.Z2.011D", "maps": [], @@ -284471,8 +268085,6 @@ }, "description": "Stellplatz D12", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z2", "id": "5142.Z2.012D", "maps": [], @@ -284505,8 +268117,6 @@ }, "description": "Stellplatz D13", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z2", "id": "5142.Z2.013D", "maps": [], @@ -284539,8 +268149,6 @@ }, "description": "Stellplatz D14", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z2", "id": "5142.Z2.014D", "maps": [], @@ -284573,8 +268181,6 @@ }, "description": "Stellplatz D15", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z2", "id": "5142.Z2.015D", "maps": [], @@ -284607,8 +268213,6 @@ }, "description": "Stellplatz D16", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z2", "id": "5142.Z2.016D", "maps": [], @@ -284641,8 +268245,6 @@ }, "description": "Stellplatz D17", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z2", "id": "5142.Z2.017D", "maps": [], @@ -284675,8 +268277,6 @@ }, "description": "Stellplatz D18", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z2", "id": "5142.Z2.018D", "maps": [], @@ -284709,8 +268309,6 @@ }, "description": "Stellplatz D19", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z2", "id": "5142.Z2.019D", "maps": [], @@ -284743,8 +268341,6 @@ }, "description": "Stellplatz D20", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z2", "id": "5142.Z2.020D", "maps": [], @@ -284777,8 +268373,6 @@ }, "description": "Stellplatz D21", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z2", "id": "5142.Z2.021D", "maps": [], @@ -284811,8 +268405,6 @@ }, "description": "Stellplatz D22", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z2", "id": "5142.Z2.022D", "maps": [], @@ -284845,8 +268437,6 @@ }, "description": "Stellplatz D23", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z2", "id": "5142.Z2.023D", "maps": [], @@ -284879,8 +268469,6 @@ }, "description": "Stellplatz D24", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z2", "id": "5142.Z2.024D", "maps": [], @@ -284913,8 +268501,6 @@ }, "description": "Stellplatz D25", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z2", "id": "5142.Z2.025D", "maps": [], @@ -284947,8 +268533,6 @@ }, "description": "Stellplatz D26", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z2", "id": "5142.Z2.026D", "maps": [], @@ -284981,8 +268565,6 @@ }, "description": "Stellplatz D27", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z2", "id": "5142.Z2.027D", "maps": [], @@ -285015,8 +268597,6 @@ }, "description": "Stellplatz D28", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z2", "id": "5142.Z2.028D", "maps": [], @@ -285049,8 +268629,6 @@ }, "description": "Stellplatz D29", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z2", "id": "5142.Z2.029D", "maps": [], @@ -285083,8 +268661,6 @@ }, "description": "Stellplatz D30", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z2", "id": "5142.Z2.030D", "maps": [], @@ -285117,8 +268693,6 @@ }, "description": "Stellplatz D31", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z2", "id": "5142.Z2.031D", "maps": [], @@ -285151,8 +268725,6 @@ }, "description": "Stellplatz D32", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z2", "id": "5142.Z2.032D", "maps": [], @@ -285185,8 +268757,6 @@ }, "description": "Stellplatz D33", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z2", "id": "5142.Z2.033D", "maps": [], @@ -285219,8 +268789,6 @@ }, "description": "Stellplatz D34", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z2", "id": "5142.Z2.034D", "maps": [], @@ -285253,8 +268821,6 @@ }, "description": "D35, Stellplatz D34", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z2", "id": "5142.Z2.035D", "maps": [], @@ -285287,8 +268853,6 @@ }, "description": "Treppenhaus 1 D51", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z2", "id": "5142.Z2.051D", "maps": [], @@ -285321,8 +268885,6 @@ }, "description": "Treppenhaus 2 D52", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z2", "id": "5142.Z2.052D", "maps": [], @@ -285355,8 +268917,6 @@ }, "description": "Fahrbahn Ebene D60", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z2", "id": "5142.Z2.060D", "maps": [], @@ -285389,8 +268949,6 @@ }, "description": "D35, Install.Schacht D80", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z2", "id": "5142.Z2.080D", "maps": [], @@ -285423,8 +268981,6 @@ }, "description": "Stellplatz F1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z3", "id": "5142.Z3.001F", "maps": [], @@ -285457,8 +269013,6 @@ }, "description": "Stellplatz F2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z3", "id": "5142.Z3.002F", "maps": [], @@ -285491,8 +269045,6 @@ }, "description": "Stellplatz F3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z3", "id": "5142.Z3.003F", "maps": [], @@ -285525,8 +269077,6 @@ }, "description": "Stellplatz F4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z3", "id": "5142.Z3.004F", "maps": [], @@ -285559,8 +269109,6 @@ }, "description": "Stellplatz F5", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z3", "id": "5142.Z3.005F", "maps": [], @@ -285593,8 +269141,6 @@ }, "description": "Stellplatz F6", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z3", "id": "5142.Z3.006F", "maps": [], @@ -285627,8 +269173,6 @@ }, "description": "Stellplatz F7", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z3", "id": "5142.Z3.007F", "maps": [], @@ -285661,8 +269205,6 @@ }, "description": "Stellplatz F8", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z3", "id": "5142.Z3.008F", "maps": [], @@ -285695,8 +269237,6 @@ }, "description": "Stellplatz F9", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z3", "id": "5142.Z3.009F", "maps": [], @@ -285729,8 +269269,6 @@ }, "description": "Stellplatz F10", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z3", "id": "5142.Z3.010F", "maps": [], @@ -285763,8 +269301,6 @@ }, "description": "Stellplatz F11", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z3", "id": "5142.Z3.011F", "maps": [], @@ -285797,8 +269333,6 @@ }, "description": "Stellplatz F12", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z3", "id": "5142.Z3.012F", "maps": [], @@ -285831,8 +269365,6 @@ }, "description": "Stellplatz F13", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z3", "id": "5142.Z3.013F", "maps": [], @@ -285865,8 +269397,6 @@ }, "description": "Stellplatz F14", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z3", "id": "5142.Z3.014F", "maps": [], @@ -285899,8 +269429,6 @@ }, "description": "Stellplatz F15", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z3", "id": "5142.Z3.015F", "maps": [], @@ -285933,8 +269461,6 @@ }, "description": "Stellplatz F16", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z3", "id": "5142.Z3.016F", "maps": [], @@ -285967,8 +269493,6 @@ }, "description": "Stellplatz F17", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z3", "id": "5142.Z3.017F", "maps": [], @@ -286001,8 +269525,6 @@ }, "description": "Stellplatz F18", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z3", "id": "5142.Z3.018F", "maps": [], @@ -286035,8 +269557,6 @@ }, "description": "Stellplatz F19", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z3", "id": "5142.Z3.019F", "maps": [], @@ -286069,8 +269589,6 @@ }, "description": "Stellplatz F20", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z3", "id": "5142.Z3.020F", "maps": [], @@ -286103,8 +269621,6 @@ }, "description": "Stellplatz F21", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z3", "id": "5142.Z3.021F", "maps": [], @@ -286137,8 +269653,6 @@ }, "description": "Stellplatz F22", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z3", "id": "5142.Z3.022F", "maps": [], @@ -286171,8 +269685,6 @@ }, "description": "Stellplatz F23", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z3", "id": "5142.Z3.023F", "maps": [], @@ -286205,8 +269717,6 @@ }, "description": "Stellplatz F24", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z3", "id": "5142.Z3.024F", "maps": [], @@ -286239,8 +269749,6 @@ }, "description": "Stellplatz F25", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z3", "id": "5142.Z3.025F", "maps": [], @@ -286273,8 +269781,6 @@ }, "description": "Stellplatz F26", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z3", "id": "5142.Z3.026F", "maps": [], @@ -286307,8 +269813,6 @@ }, "description": "Stellplatz F27", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z3", "id": "5142.Z3.027F", "maps": [], @@ -286341,8 +269845,6 @@ }, "description": "Stellplatz F28", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z3", "id": "5142.Z3.028F", "maps": [], @@ -286375,8 +269877,6 @@ }, "description": "Stellplatz F29", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z3", "id": "5142.Z3.029F", "maps": [], @@ -286409,8 +269909,6 @@ }, "description": "Stellplatz F30", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z3", "id": "5142.Z3.030F", "maps": [], @@ -286443,8 +269941,6 @@ }, "description": "Stellplatz F31", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z3", "id": "5142.Z3.031F", "maps": [], @@ -286477,8 +269973,6 @@ }, "description": "Stellplatz F32", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z3", "id": "5142.Z3.032F", "maps": [], @@ -286511,8 +270005,6 @@ }, "description": "Stellplatz F33", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z3", "id": "5142.Z3.033F", "maps": [], @@ -286545,8 +270037,6 @@ }, "description": "Stellplatz F34", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z3", "id": "5142.Z3.034F", "maps": [], @@ -286579,8 +270069,6 @@ }, "description": "Stellplatz F35", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z3", "id": "5142.Z3.035F", "maps": [], @@ -286613,8 +270101,6 @@ }, "description": "Treppenhaus 1 F51", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z3", "id": "5142.Z3.051F", "maps": [], @@ -286647,8 +270133,6 @@ }, "description": "Treppenhaus 2 F52", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z3", "id": "5142.Z3.052F", "maps": [], @@ -286681,8 +270165,6 @@ }, "description": "Fahrbahn F60", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z3", "id": "5142.Z3.060F", "maps": [], @@ -286715,8 +270197,6 @@ }, "description": "Rampe F61", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z3", "id": "5142.Z3.061F", "maps": [], @@ -286749,8 +270229,6 @@ }, "description": "Install. Schacht F80", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z3", "id": "5142.Z3.080F", "maps": [], @@ -286783,8 +270261,6 @@ }, "description": "1.001, Vorraum/Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5143.EG.001", "maps": [], @@ -286817,8 +270293,6 @@ }, "description": "1.002, Hausanschlussraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5143.EG.002", "maps": [], @@ -286851,8 +270325,6 @@ }, "description": "1.004, Server", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5143.EG.004", "maps": [], @@ -286885,8 +270357,6 @@ }, "description": "1.005, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5143.EG.005", "maps": [], @@ -286919,8 +270389,6 @@ }, "description": "1.005A, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5143.EG.005A", "maps": [], @@ -286953,8 +270421,6 @@ }, "description": "1.006, Montageraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5143.EG.006", "maps": [], @@ -286987,8 +270453,6 @@ }, "description": "1.009, Technik-RLT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5143.EG.009", "maps": [], @@ -287021,8 +270485,6 @@ }, "description": "1.011, LKW-Stellplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5143.EG.011", "maps": [], @@ -287055,8 +270517,6 @@ }, "description": "1.012, M\u00fcllentsorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5143.EG.012", "maps": [], @@ -287089,8 +270549,6 @@ }, "description": "1.020, Vorzone/Anlieferungen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5143.EG.013", "maps": [], @@ -287123,8 +270581,6 @@ }, "description": "0001, UCN-Testanlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5160.EG.001", "maps": [], @@ -287157,8 +270613,6 @@ }, "description": "Verteilerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5202.01.101", "maps": [], @@ -287191,8 +270645,6 @@ }, "description": "R\u00e4ume, radioakt., Schw. Ab.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5202.01.102", "maps": [], @@ -287225,8 +270677,6 @@ }, "description": "Schleuse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5202.01.103", "maps": [], @@ -287259,8 +270709,6 @@ }, "description": "Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5202.EG.018", "maps": [], @@ -287293,8 +270741,6 @@ }, "description": "Physiklabor (K. B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5202.EG.024", "maps": [], @@ -287327,8 +270773,6 @@ }, "description": "Installationsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5202.EG.025", "maps": [], @@ -287361,8 +270805,6 @@ }, "description": "R\u00e4ume, radioakt., Schw. Ab.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5202.EG.026", "maps": [], @@ -287395,8 +270837,6 @@ }, "description": "R\u00e4ume, radioakt. Stoffe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5202.EG.028", "maps": [], @@ -287429,8 +270869,6 @@ }, "description": "R\u00e4ume, radioakt., Schw. Ab.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5202.EG.029", "maps": [], @@ -287463,8 +270901,6 @@ }, "description": "Massenspektrometer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5202.EG.030", "maps": [], @@ -287497,8 +270933,6 @@ }, "description": "R\u00e4ume, radioakt. Stoffe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5202.EG.031", "maps": [], @@ -287531,8 +270965,6 @@ }, "description": "R\u00e4ume, radioakt. Stoffe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5202.EG.032", "maps": [], @@ -287565,8 +270997,6 @@ }, "description": "R\u00e4ume, radioakt. Stoffe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5202.EG.033", "maps": [], @@ -287599,8 +271029,6 @@ }, "description": "R\u00e4ume, radioakt. Stoffe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5202.EG.034", "maps": [], @@ -287633,8 +271061,6 @@ }, "description": "Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5202.EG.035", "maps": [], @@ -287667,8 +271093,6 @@ }, "description": "Physiklabor (K. B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5202.EG.036", "maps": [], @@ -287701,8 +271125,6 @@ }, "description": "Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5202.EG.037", "maps": [], @@ -287735,8 +271157,6 @@ }, "description": "Messraum (ersch\u00fctterungsfrei)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5202.EG.038", "maps": [], @@ -287769,8 +271189,6 @@ }, "description": "Ofenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5202.EG.039", "maps": [], @@ -287803,8 +271221,6 @@ }, "description": "Messraum (ersch\u00fctterungsfrei)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5202.EG.040", "maps": [], @@ -287837,8 +271253,6 @@ }, "description": "Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5202.EG.041", "maps": [], @@ -287871,8 +271285,6 @@ }, "description": "Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5202.EG.042", "maps": [], @@ -287905,8 +271317,6 @@ }, "description": "Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5202.EG.043", "maps": [], @@ -287939,8 +271349,6 @@ }, "description": "Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5202.EG.074", "maps": [], @@ -287973,8 +271381,6 @@ }, "description": "Massenspektrometer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5202.EG.270", "maps": [], @@ -288007,8 +271413,6 @@ }, "description": "Massenspektrometer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5202.EG.271", "maps": [], @@ -288041,8 +271445,6 @@ }, "description": "Massenspektrometer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5202.EG.272", "maps": [], @@ -288075,8 +271477,6 @@ }, "description": "Massenspektrometer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5202.EG.273", "maps": [], @@ -288109,8 +271509,6 @@ }, "description": "Massenspektrometer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5202.EG.275", "maps": [], @@ -288143,8 +271541,6 @@ }, "description": "Heizraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5202.U1.001", "maps": [], @@ -288177,8 +271573,6 @@ }, "description": "Installationsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5202.U1.002", "maps": [], @@ -288211,8 +271605,6 @@ }, "description": "Wasserversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5202.U1.003", "maps": [], @@ -288245,8 +271637,6 @@ }, "description": "Gasversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5202.U1.004", "maps": [], @@ -288279,8 +271669,6 @@ }, "description": "Gasversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5202.U1.005", "maps": [], @@ -288313,8 +271701,6 @@ }, "description": "Gasversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5202.U1.006", "maps": [], @@ -288347,8 +271733,6 @@ }, "description": "Targetbahnweiche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5202.U1.007", "maps": [], @@ -288381,8 +271765,6 @@ }, "description": "Gasversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5202.U1.008", "maps": [], @@ -288415,8 +271797,6 @@ }, "description": "Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5202.U1.009", "maps": [], @@ -288449,8 +271829,6 @@ }, "description": "Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5202.U1.010", "maps": [], @@ -288483,8 +271861,6 @@ }, "description": "Gasversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5202.U1.011", "maps": [], @@ -288517,8 +271893,6 @@ }, "description": "Installationskanal Nord", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5202.U1.012", "maps": [], @@ -288551,8 +271925,6 @@ }, "description": "Installationskanal Mitte", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5202.U1.013", "maps": [], @@ -288585,8 +271957,6 @@ }, "description": "Installationskanal S\u00fcd", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5202.U1.014", "maps": [], @@ -288619,8 +271989,6 @@ }, "description": "E01, Eingangshalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5203.EG.001", "maps": [], @@ -288653,8 +272021,6 @@ }, "description": "E02, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5203.EG.002", "maps": [], @@ -288687,8 +272053,6 @@ }, "description": "E06, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5203.EG.006", "maps": [], @@ -288721,8 +272085,6 @@ }, "description": "E12, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5203.EG.012", "maps": [], @@ -288755,8 +272117,6 @@ }, "description": "E14, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5203.EG.014", "maps": [], @@ -288789,8 +272149,6 @@ }, "description": "E15, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5203.EG.015", "maps": [], @@ -288823,8 +272181,6 @@ }, "description": "E16, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5203.EG.016", "maps": [], @@ -288857,8 +272213,6 @@ }, "description": "E19, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5203.EG.019", "maps": [], @@ -288891,8 +272245,6 @@ }, "description": "E20, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5203.EG.020", "maps": [], @@ -288925,8 +272277,6 @@ }, "description": "E22, Poststelle/Drucker/Kopierer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5203.EG.022", "maps": [], @@ -288959,8 +272309,6 @@ }, "description": "E23, Arbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5203.EG.023", "maps": [], @@ -288993,8 +272341,6 @@ }, "description": "E24, Arbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5203.EG.024", "maps": [], @@ -289027,8 +272373,6 @@ }, "description": "E25, Arbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5203.EG.025", "maps": [], @@ -289061,8 +272405,6 @@ }, "description": "E29, Arbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5203.EG.029", "maps": [], @@ -289095,8 +272437,6 @@ }, "description": "E30, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5203.EG.030", "maps": [], @@ -289129,8 +272469,6 @@ }, "description": "E31, Arbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5203.EG.031", "maps": [], @@ -289163,8 +272501,6 @@ }, "description": "E33, Beh.-WC / WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5203.EG.033", "maps": [], @@ -289197,8 +272533,6 @@ }, "description": "E35, Arbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5203.EG.035", "maps": [], @@ -289231,8 +272565,6 @@ }, "description": "E37, Arbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5203.EG.037", "maps": [], @@ -289265,8 +272597,6 @@ }, "description": "E39, Arbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5203.EG.039", "maps": [], @@ -289299,8 +272629,6 @@ }, "description": "E41, Arbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5203.EG.041", "maps": [], @@ -289333,8 +272661,6 @@ }, "description": "E42, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5203.EG.042", "maps": [], @@ -289367,8 +272693,6 @@ }, "description": "E43, Arbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5203.EG.043", "maps": [], @@ -289401,8 +272725,6 @@ }, "description": "E44, Flur zu E40", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5203.EG.044", "maps": [], @@ -289435,8 +272757,6 @@ }, "description": "E45, Arbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5203.EG.045", "maps": [], @@ -289469,8 +272789,6 @@ }, "description": "E46, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5203.EG.046", "maps": [], @@ -289503,8 +272821,6 @@ }, "description": "E47, Arbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5203.EG.047", "maps": [], @@ -289537,8 +272853,6 @@ }, "description": "E49, Arbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5203.EG.049", "maps": [], @@ -289571,8 +272885,6 @@ }, "description": "E51, B\u00fcro/Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5203.EG.051", "maps": [], @@ -289605,8 +272917,6 @@ }, "description": "E53, B\u00fcro/R\u00f6ntgen u. Laser", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5203.EG.053", "maps": [], @@ -289639,8 +272949,6 @@ }, "description": "E58, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5203.EG.058", "maps": [], @@ -289673,8 +272981,6 @@ }, "description": "E59, Windfang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5203.EG.059", "maps": [], @@ -289707,8 +273013,6 @@ }, "description": "E60, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5203.EG.060", "maps": [], @@ -289741,8 +273045,6 @@ }, "description": "E62, Dusche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5203.EG.062", "maps": [], @@ -289775,8 +273077,6 @@ }, "description": "E64, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5203.EG.064", "maps": [], @@ -289809,8 +273109,6 @@ }, "description": "E66, Bibliothek", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5203.EG.066", "maps": [], @@ -289843,8 +273141,6 @@ }, "description": "E70, Konferenzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5203.EG.070", "maps": [], @@ -289877,8 +273173,6 @@ }, "description": "E77, Aktenablage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5203.EG.077", "maps": [], @@ -289911,8 +273205,6 @@ }, "description": "E91, B\u00fcro Emeriti of Excellence", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5203.EG.091", "maps": [], @@ -289945,8 +273237,6 @@ }, "description": "E95, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5203.EG.095", "maps": [], @@ -289979,8 +273269,6 @@ }, "description": "E97, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5203.EG.097", "maps": [], @@ -290013,8 +273301,6 @@ }, "description": "K02, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5203.U1.102", "maps": [], @@ -290047,8 +273333,6 @@ }, "description": "K03, Aktenlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5203.U1.103", "maps": [], @@ -290081,8 +273365,6 @@ }, "description": "K07, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5203.U1.107", "maps": [], @@ -290115,8 +273397,6 @@ }, "description": "K11, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5203.U1.111", "maps": [], @@ -290149,8 +273429,6 @@ }, "description": "K12, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5203.U1.112", "maps": [], @@ -290183,8 +273461,6 @@ }, "description": "K14, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5203.U1.114", "maps": [], @@ -290217,8 +273493,6 @@ }, "description": "K16, Heizzentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5203.U1.116", "maps": [], @@ -290251,8 +273525,6 @@ }, "description": "K17, Schaltraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5203.U1.117", "maps": [], @@ -290285,8 +273557,6 @@ }, "description": "K17a, Notstrom/Nebenraum K17", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5203.U1.117A", "maps": [], @@ -290319,8 +273589,6 @@ }, "description": "K19, Netzwerkzentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5203.U1.121", "maps": [], @@ -290353,8 +273621,6 @@ }, "description": "K23, Arbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5203.U1.123", "maps": [], @@ -290387,8 +273653,6 @@ }, "description": "K25, Arbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5203.U1.125", "maps": [], @@ -290421,8 +273685,6 @@ }, "description": "K29, Arbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5203.U1.129", "maps": [], @@ -290455,8 +273717,6 @@ }, "description": "K30, Lager f\u00fcr Ausstellungsmaterial", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5203.U1.130", "maps": [], @@ -290489,8 +273749,6 @@ }, "description": "K31, Dauerarbeitsplatz/Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5203.U1.131", "maps": [], @@ -290523,8 +273781,6 @@ }, "description": "K35, Dauerarbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5203.U1.135", "maps": [], @@ -290557,8 +273813,6 @@ }, "description": "K42, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5203.U1.142", "maps": [], @@ -290591,8 +273845,6 @@ }, "description": "K43, Dauerarbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5203.U1.143", "maps": [], @@ -290625,8 +273877,6 @@ }, "description": "K45, Putzkammer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5203.U1.145", "maps": [], @@ -290659,8 +273909,6 @@ }, "description": "K46, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5203.U1.146", "maps": [], @@ -290693,8 +273941,6 @@ }, "description": "K47, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5203.U1.147", "maps": [], @@ -290727,8 +273973,6 @@ }, "description": "K48, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5203.U1.148", "maps": [], @@ -290761,8 +274005,6 @@ }, "description": "K49, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5203.U1.149", "maps": [], @@ -290795,8 +274037,6 @@ }, "description": "K51, Lager Fam. Service", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5203.U1.151", "maps": [], @@ -290829,8 +274069,6 @@ }, "description": "K55, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5203.U1.155", "maps": [], @@ -290863,8 +274101,6 @@ }, "description": "K57, Lager/Bauamt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5203.U1.157", "maps": [], @@ -290897,8 +274133,6 @@ }, "description": "K59, Lager/Ausstellungsmaterial", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5203.U1.159", "maps": [], @@ -290931,8 +274165,6 @@ }, "description": "K60, Aktenlager Emeriti of Excellence", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5203.U1.160", "maps": [], @@ -290965,8 +274197,6 @@ }, "description": "K65, Lager/TUFast e. V.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5203.U1.165", "maps": [], @@ -290999,8 +274229,6 @@ }, "description": "K91, Personalakten", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5203.U1.191", "maps": [], @@ -291033,8 +274261,6 @@ }, "description": "1405, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5204.01.005", "maps": [], @@ -291067,8 +274293,6 @@ }, "description": "0424, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5204.EG.024", "maps": [], @@ -291101,8 +274325,6 @@ }, "description": "0425, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5204.EG.025", "maps": [], @@ -291135,8 +274357,6 @@ }, "description": "0426, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5204.EG.026", "maps": [], @@ -291169,8 +274389,6 @@ }, "description": "0427, Lager (Lampen ELT.)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5204.EG.027", "maps": [], @@ -291203,8 +274421,6 @@ }, "description": "0428, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5204.EG.028", "maps": [], @@ -291237,8 +274453,6 @@ }, "description": "0429, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5204.EG.029", "maps": [], @@ -291271,8 +274485,6 @@ }, "description": "0430, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5204.EG.030", "maps": [], @@ -291305,8 +274517,6 @@ }, "description": "U412, Wasserversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5204.U1.012", "maps": [], @@ -291339,8 +274549,6 @@ }, "description": "U416, Verteilerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5204.U1.016", "maps": [], @@ -291373,8 +274581,6 @@ }, "description": "U417, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5204.U1.017", "maps": [], @@ -291407,8 +274613,6 @@ }, "description": "U418, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5204.U1.018", "maps": [], @@ -291441,8 +274645,6 @@ }, "description": "U419, Abstellraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5204.U1.019", "maps": [], @@ -291475,8 +274677,6 @@ }, "description": "U420, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5204.U1.020", "maps": [], @@ -291509,8 +274709,6 @@ }, "description": "U421, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5204.U1.021", "maps": [], @@ -291543,8 +274741,6 @@ }, "description": "U422, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5204.U1.022", "maps": [], @@ -291577,8 +274773,6 @@ }, "description": "202, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5212.02.202", "maps": [], @@ -291611,8 +274805,6 @@ }, "description": "1903, Sozialraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5219.01.903", "maps": [], @@ -291645,8 +274837,6 @@ }, "description": "1911, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5219.01.911", "maps": [], @@ -291679,8 +274869,6 @@ }, "description": "1912, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5219.01.912", "maps": [], @@ -291713,8 +274901,6 @@ }, "description": "1913, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5219.01.913", "maps": [], @@ -291747,8 +274933,6 @@ }, "description": "1981, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5219.01.981", "maps": [], @@ -291781,8 +274965,6 @@ }, "description": "1987, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5219.01.987", "maps": [], @@ -291815,8 +274997,6 @@ }, "description": "1991, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5219.01.991", "maps": [], @@ -291849,8 +275029,6 @@ }, "description": "0901, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5219.EG.901", "maps": [], @@ -291883,8 +275061,6 @@ }, "description": "0902, Elektroraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5219.EG.902", "maps": [], @@ -291917,8 +275093,6 @@ }, "description": "0903, Heizraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5219.EG.903", "maps": [], @@ -291951,8 +275125,6 @@ }, "description": "0911, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5219.EG.911", "maps": [], @@ -291985,8 +275157,6 @@ }, "description": "0912, Beh.-WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5219.EG.912", "maps": [], @@ -292019,8 +275189,6 @@ }, "description": "0913, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5219.EG.913", "maps": [], @@ -292053,8 +275221,6 @@ }, "description": "0914, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5219.EG.914", "maps": [], @@ -292087,8 +275253,6 @@ }, "description": "0915, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5219.EG.915", "maps": [], @@ -292121,8 +275285,6 @@ }, "description": "0916, Kopierer/Drucker", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5219.EG.916", "maps": [], @@ -292155,8 +275317,6 @@ }, "description": "0917, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5219.EG.917", "maps": [], @@ -292189,8 +275349,6 @@ }, "description": "0921, Garage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5219.EG.921", "maps": [], @@ -292223,8 +275381,6 @@ }, "description": "0927, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5219.EG.927", "maps": [], @@ -292257,8 +275413,6 @@ }, "description": "0928, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5219.EG.928", "maps": [], @@ -292291,8 +275445,6 @@ }, "description": "0931, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5219.EG.931", "maps": [], @@ -292325,8 +275477,6 @@ }, "description": "0933, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5219.EG.933", "maps": [], @@ -292359,8 +275509,6 @@ }, "description": "0935, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5219.EG.935", "maps": [], @@ -292393,8 +275541,6 @@ }, "description": "0937, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5219.EG.937", "maps": [], @@ -292427,8 +275573,6 @@ }, "description": "0986, Windfang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5219.EG.986", "maps": [], @@ -292461,8 +275605,6 @@ }, "description": "0987, Eingangshalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5219.EG.987", "maps": [], @@ -292495,8 +275637,6 @@ }, "description": "0988, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5219.EG.988", "maps": [], @@ -292529,8 +275669,6 @@ }, "description": "0991, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5219.EG.991", "maps": [], @@ -292563,8 +275701,6 @@ }, "description": "03 01, Treppenhaus 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5257.01.001", "maps": [], @@ -292597,8 +275733,6 @@ }, "description": "03 02, Treppenhaus 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5257.01.002", "maps": [], @@ -292631,8 +275765,6 @@ }, "description": "03 04, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5257.01.004", "maps": [], @@ -292665,8 +275797,6 @@ }, "description": "03 05, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5257.01.005", "maps": [], @@ -292699,8 +275829,6 @@ }, "description": "03 06, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5257.01.006", "maps": [], @@ -292733,8 +275861,6 @@ }, "description": "03 007, Stahlb\u00fchne", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5257.01.007", "maps": [], @@ -292767,8 +275893,6 @@ }, "description": "03 10, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5257.01.010", "maps": [], @@ -292801,8 +275925,6 @@ }, "description": "03 21, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5257.01.011", "maps": [], @@ -292835,8 +275957,6 @@ }, "description": "03 12, Umkleide Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5257.01.012", "maps": [], @@ -292869,8 +275989,6 @@ }, "description": "03 13, Waschraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5257.01.013", "maps": [], @@ -292903,8 +276021,6 @@ }, "description": "03 20, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5257.01.020", "maps": [], @@ -292937,8 +276053,6 @@ }, "description": "03 21, Sozialraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5257.01.021", "maps": [], @@ -292971,8 +276085,6 @@ }, "description": "03 22, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5257.01.022", "maps": [], @@ -293005,8 +276117,6 @@ }, "description": "03 23, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5257.01.023", "maps": [], @@ -293039,8 +276149,6 @@ }, "description": "03 24, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5257.01.024", "maps": [], @@ -293073,8 +276181,6 @@ }, "description": "03 25, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5257.01.025", "maps": [], @@ -293107,8 +276213,6 @@ }, "description": "03 26, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5257.01.026", "maps": [], @@ -293141,8 +276245,6 @@ }, "description": "03 27, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5257.01.027", "maps": [], @@ -293175,8 +276277,6 @@ }, "description": "03 28, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5257.01.028", "maps": [], @@ -293209,8 +276309,6 @@ }, "description": "04 01, Treppenhaus 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5257.02.001", "maps": [], @@ -293243,8 +276341,6 @@ }, "description": "04 02, Treppenhaus 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5257.02.002", "maps": [], @@ -293277,8 +276373,6 @@ }, "description": "04 04, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5257.02.004", "maps": [], @@ -293311,8 +276405,6 @@ }, "description": "04 05, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5257.02.005", "maps": [], @@ -293345,8 +276437,6 @@ }, "description": "04 06, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5257.02.006", "maps": [], @@ -293379,8 +276469,6 @@ }, "description": "04 07, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5257.02.007", "maps": [], @@ -293413,8 +276501,6 @@ }, "description": "04 10, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5257.02.010", "maps": [], @@ -293447,8 +276533,6 @@ }, "description": "04 11, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5257.02.011", "maps": [], @@ -293481,8 +276565,6 @@ }, "description": "04 12, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5257.02.012", "maps": [], @@ -293515,8 +276597,6 @@ }, "description": "04 13, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5257.02.013", "maps": [], @@ -293549,8 +276629,6 @@ }, "description": "04 21, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5257.02.021", "maps": [], @@ -293583,8 +276661,6 @@ }, "description": "04 22, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5257.02.022", "maps": [], @@ -293617,8 +276693,6 @@ }, "description": "04 23, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5257.02.023", "maps": [], @@ -293651,8 +276725,6 @@ }, "description": "04 24, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5257.02.024", "maps": [], @@ -293685,8 +276757,6 @@ }, "description": "04 25, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5257.02.025", "maps": [], @@ -293719,8 +276789,6 @@ }, "description": "04 26, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5257.02.026", "maps": [], @@ -293753,8 +276821,6 @@ }, "description": "04 27, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5257.02.027", "maps": [], @@ -293787,8 +276853,6 @@ }, "description": "04 28, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5257.02.028", "maps": [], @@ -293821,8 +276885,6 @@ }, "description": "04 29, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5257.02.029", "maps": [], @@ -293855,8 +276917,6 @@ }, "description": "04 30, Kranken u. Ruheraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5257.02.030", "maps": [], @@ -293889,8 +276949,6 @@ }, "description": "04 31, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5257.02.031", "maps": [], @@ -293923,8 +276981,6 @@ }, "description": "04 32, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5257.02.032", "maps": [], @@ -293957,8 +277013,6 @@ }, "description": "04 33, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5257.02.033", "maps": [], @@ -293991,8 +277045,6 @@ }, "description": "04 34, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5257.02.034", "maps": [], @@ -294025,8 +277077,6 @@ }, "description": "04 35, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5257.02.035", "maps": [], @@ -294059,8 +277109,6 @@ }, "description": "04 26, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5257.02.036", "maps": [], @@ -294093,8 +277141,6 @@ }, "description": "04 37, Sozialraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5257.02.037", "maps": [], @@ -294127,8 +277173,6 @@ }, "description": "04 38, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5257.02.038", "maps": [], @@ -294161,8 +277205,6 @@ }, "description": "04 39, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5257.02.039", "maps": [], @@ -294195,8 +277237,6 @@ }, "description": "04 40, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5257.02.040", "maps": [], @@ -294229,8 +277269,6 @@ }, "description": "04 41, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5257.02.041", "maps": [], @@ -294263,8 +277301,6 @@ }, "description": "04 42, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5257.02.042", "maps": [], @@ -294297,8 +277333,6 @@ }, "description": "04 43, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5257.02.043", "maps": [], @@ -294331,8 +277365,6 @@ }, "description": "04 44, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5257.02.044", "maps": [], @@ -294365,8 +277397,6 @@ }, "description": "04 45, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5257.02.045", "maps": [], @@ -294399,8 +277429,6 @@ }, "description": "04 50, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5257.02.050", "maps": [], @@ -294433,8 +277461,6 @@ }, "description": "04 51, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5257.02.051", "maps": [], @@ -294467,8 +277493,6 @@ }, "description": "04 52, Archiv/Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5257.02.052", "maps": [], @@ -294501,8 +277525,6 @@ }, "description": "04 54, Drucker", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5257.02.054", "maps": [], @@ -294535,8 +277557,6 @@ }, "description": "05 01, Treppenhaus 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5257.03.001", "maps": [], @@ -294569,8 +277589,6 @@ }, "description": "05 02, Treppenhaus 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5257.03.002", "maps": [], @@ -294603,8 +277621,6 @@ }, "description": "05 04, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5257.03.004", "maps": [], @@ -294637,8 +277653,6 @@ }, "description": "05 05, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5257.03.005", "maps": [], @@ -294671,8 +277685,6 @@ }, "description": "05 06, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5257.03.006", "maps": [], @@ -294705,8 +277717,6 @@ }, "description": "05 07, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5257.03.007", "maps": [], @@ -294739,8 +277749,6 @@ }, "description": "05 10, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5257.03.010", "maps": [], @@ -294773,8 +277781,6 @@ }, "description": "05 11, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5257.03.011", "maps": [], @@ -294807,8 +277813,6 @@ }, "description": "05 12, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5257.03.012", "maps": [], @@ -294841,8 +277845,6 @@ }, "description": "05 13, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5257.03.013", "maps": [], @@ -294875,8 +277877,6 @@ }, "description": "05 14, Beh.-WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5257.03.014", "maps": [], @@ -294909,8 +277909,6 @@ }, "description": "05 21, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5257.03.021", "maps": [], @@ -294943,8 +277941,6 @@ }, "description": "05 22, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5257.03.022", "maps": [], @@ -294977,8 +277973,6 @@ }, "description": "05 23, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5257.03.023", "maps": [], @@ -295011,8 +278005,6 @@ }, "description": "05 24, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5257.03.024", "maps": [], @@ -295045,8 +278037,6 @@ }, "description": "05 25, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5257.03.025", "maps": [], @@ -295079,8 +278069,6 @@ }, "description": "05 26, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5257.03.026", "maps": [], @@ -295113,8 +278101,6 @@ }, "description": "05 27, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5257.03.027", "maps": [], @@ -295147,8 +278133,6 @@ }, "description": "05 28, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5257.03.028", "maps": [], @@ -295181,8 +278165,6 @@ }, "description": "05 29, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5257.03.029", "maps": [], @@ -295215,8 +278197,6 @@ }, "description": "05 30, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5257.03.030", "maps": [], @@ -295249,8 +278229,6 @@ }, "description": "05 31, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5257.03.031", "maps": [], @@ -295283,8 +278261,6 @@ }, "description": "05 32, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5257.03.032", "maps": [], @@ -295317,8 +278293,6 @@ }, "description": "05 33, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5257.03.033", "maps": [], @@ -295351,8 +278325,6 @@ }, "description": "05 34, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5257.03.034", "maps": [], @@ -295385,8 +278357,6 @@ }, "description": "05 35, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5257.03.035", "maps": [], @@ -295419,8 +278389,6 @@ }, "description": "05 36, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5257.03.036", "maps": [], @@ -295453,8 +278421,6 @@ }, "description": "05 37, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5257.03.037", "maps": [], @@ -295487,8 +278453,6 @@ }, "description": "05 38, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5257.03.038", "maps": [], @@ -295521,8 +278485,6 @@ }, "description": "05 39, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5257.03.039", "maps": [], @@ -295555,8 +278517,6 @@ }, "description": "05 40, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5257.03.040", "maps": [], @@ -295589,8 +278549,6 @@ }, "description": "05 41, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5257.03.041", "maps": [], @@ -295623,8 +278581,6 @@ }, "description": "05 42, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5257.03.042", "maps": [], @@ -295657,8 +278613,6 @@ }, "description": "05 43, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5257.03.043", "maps": [], @@ -295691,8 +278645,6 @@ }, "description": "05 44, Sozialraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5257.03.044", "maps": [], @@ -295725,8 +278677,6 @@ }, "description": "05 45, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5257.03.045", "maps": [], @@ -295759,8 +278709,6 @@ }, "description": "05 46, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5257.03.046", "maps": [], @@ -295793,8 +278741,6 @@ }, "description": "05 47, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5257.03.047", "maps": [], @@ -295827,8 +278773,6 @@ }, "description": "05 48, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5257.03.048", "maps": [], @@ -295861,8 +278805,6 @@ }, "description": "05 49, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5257.03.049", "maps": [], @@ -295895,8 +278837,6 @@ }, "description": "05 50, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5257.03.050", "maps": [], @@ -295929,8 +278869,6 @@ }, "description": "05 51, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5257.03.051", "maps": [], @@ -295963,8 +278901,6 @@ }, "description": "05 52, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5257.03.052", "maps": [], @@ -295997,8 +278933,6 @@ }, "description": "05 60, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5257.03.060", "maps": [], @@ -296031,8 +278965,6 @@ }, "description": "05 61, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5257.03.061", "maps": [], @@ -296065,8 +278997,6 @@ }, "description": "05 72, Versorgungsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5257.03.072", "maps": [], @@ -296099,8 +279029,6 @@ }, "description": "06 01, Treppenhaus 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5257.04.001", "maps": [], @@ -296133,8 +279061,6 @@ }, "description": "06 04, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5257.04.004", "maps": [], @@ -296167,8 +279093,6 @@ }, "description": "06 20, Technikzentrale 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5257.04.020", "maps": [], @@ -296201,8 +279125,6 @@ }, "description": "06 21, Technikzentrale 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5257.04.021", "maps": [], @@ -296235,8 +279157,6 @@ }, "description": "06 22, Technikzentrale 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5257.04.022", "maps": [], @@ -296269,8 +279189,6 @@ }, "description": "06 23, Technikzentrale 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5257.04.023", "maps": [], @@ -296303,8 +279221,6 @@ }, "description": "06 31, Technikzentrale 5", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5257.04.031", "maps": [], @@ -296337,8 +279253,6 @@ }, "description": "06 32, Technikzentrale 6", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5257.04.032", "maps": [], @@ -296371,8 +279285,6 @@ }, "description": "06 70, Medienschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5257.04.070", "maps": [], @@ -296405,8 +279317,6 @@ }, "description": "02 01, Treppenhaus 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5257.EG.001", "maps": [], @@ -296439,8 +279349,6 @@ }, "description": "02 02, Treppenhaus 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5257.EG.002", "maps": [], @@ -296473,8 +279381,6 @@ }, "description": "02 03, Treppenhaus 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5257.EG.003", "maps": [], @@ -296507,8 +279413,6 @@ }, "description": "02 04, Windfang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5257.EG.004", "maps": [], @@ -296541,8 +279445,6 @@ }, "description": "02 05, Foyer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5257.EG.005", "maps": [], @@ -296575,8 +279477,6 @@ }, "description": "02 06, Foyer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5257.EG.006", "maps": [], @@ -296609,8 +279509,6 @@ }, "description": "02 10, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5257.EG.010", "maps": [], @@ -296643,8 +279541,6 @@ }, "description": "02 11, Umkleide Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5257.EG.011", "maps": [], @@ -296677,8 +279573,6 @@ }, "description": "02 12, Waschraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5257.EG.012", "maps": [], @@ -296711,8 +279605,6 @@ }, "description": "02 13, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5257.EG.013", "maps": [], @@ -296745,8 +279637,6 @@ }, "description": "02 14, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5257.EG.014", "maps": [], @@ -296779,8 +279669,6 @@ }, "description": "02 20, Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5257.EG.020", "maps": [], @@ -296813,8 +279701,6 @@ }, "description": "02 20A, Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5257.EG.020A", "maps": [], @@ -296847,8 +279733,6 @@ }, "description": "02 20B, Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5257.EG.020B", "maps": [], @@ -296881,8 +279765,6 @@ }, "description": "02 20C, Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5257.EG.020C", "maps": [], @@ -296915,8 +279797,6 @@ }, "description": "02 21, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5257.EG.021", "maps": [], @@ -296949,8 +279829,6 @@ }, "description": "02 22, Me\u00dfmittelraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5257.EG.022", "maps": [], @@ -296983,8 +279861,6 @@ }, "description": "02 23, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5257.EG.023", "maps": [], @@ -297017,8 +279893,6 @@ }, "description": "02 24, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5257.EG.024", "maps": [], @@ -297051,8 +279925,6 @@ }, "description": "02 25, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5257.EG.025", "maps": [], @@ -297085,8 +279957,6 @@ }, "description": "02 26, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5257.EG.026", "maps": [], @@ -297119,8 +279989,6 @@ }, "description": "02 27, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5257.EG.027", "maps": [], @@ -297153,8 +280021,6 @@ }, "description": "02 28, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5257.EG.028", "maps": [], @@ -297187,8 +280053,6 @@ }, "description": "02 70, Medienschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5257.EG.070", "maps": [], @@ -297221,8 +280085,6 @@ }, "description": "02 71, ELT-Steiger/Verteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5257.EG.071", "maps": [], @@ -297255,8 +280117,6 @@ }, "description": "02 90, Personenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5257.EG.090", "maps": [], @@ -297289,8 +280149,6 @@ }, "description": "01 03, Treppenhaus 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5257.U1.003", "maps": [], @@ -297323,8 +280181,6 @@ }, "description": "01 04, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5257.U1.004", "maps": [], @@ -297357,8 +280213,6 @@ }, "description": "01 20, Technikraum/Elektro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5257.U1.020", "maps": [], @@ -297391,8 +280245,6 @@ }, "description": "01 21, Technikraum/Sanit\u00e4r", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5257.U1.021", "maps": [], @@ -297425,8 +280277,6 @@ }, "description": "01 22, Technikraum/Fernw\u00e4rme", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5257.U1.022", "maps": [], @@ -297459,8 +280309,6 @@ }, "description": "01 90, Personenaufzugsschaucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5257.U1.090", "maps": [], @@ -297493,8 +280341,6 @@ }, "description": "WMI-Raum 101", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5272.01.101", "maps": [], @@ -297527,8 +280373,6 @@ }, "description": "WMI-Raum 128", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5272.01.128", "maps": [], @@ -297561,8 +280405,6 @@ }, "description": "WMI-Bibliothek", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5272.01.142", "maps": [], @@ -297595,8 +280437,6 @@ }, "description": "WMI-Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5272.01.143", "maps": [], @@ -297629,8 +280469,6 @@ }, "description": "WMI-Seminarraum 039: Walther-Meissner-Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5272.EG.039", "maps": [], @@ -297663,8 +280501,6 @@ }, "description": "1.001, Gro\u00dfraumb\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5301.01.001", "maps": [], @@ -297697,8 +280533,6 @@ }, "description": "1.004, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5301.01.004", "maps": [], @@ -297731,8 +280565,6 @@ }, "description": "1.005, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5301.01.005", "maps": [], @@ -297765,8 +280597,6 @@ }, "description": "1.006, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5301.01.006", "maps": [], @@ -297799,8 +280629,6 @@ }, "description": "1.007, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5301.01.007", "maps": [], @@ -297833,8 +280661,6 @@ }, "description": "1.008, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5301.01.008", "maps": [], @@ -297867,8 +280693,6 @@ }, "description": "1.009, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5301.01.009", "maps": [], @@ -297901,8 +280725,6 @@ }, "description": "1.010, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5301.01.010", "maps": [], @@ -297935,8 +280757,6 @@ }, "description": "1.011, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5301.01.011", "maps": [], @@ -297969,8 +280789,6 @@ }, "description": "1.012, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5301.01.012", "maps": [], @@ -298003,8 +280821,6 @@ }, "description": "1.013, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5301.01.013", "maps": [], @@ -298037,8 +280853,6 @@ }, "description": "1.014, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5301.01.014", "maps": [], @@ -298071,8 +280885,6 @@ }, "description": "1.015, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5301.01.015", "maps": [], @@ -298105,8 +280917,6 @@ }, "description": "1.016, Atrium", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5301.01.016", "maps": [], @@ -298139,8 +280949,6 @@ }, "description": "1.020, Lounge", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5301.01.020", "maps": [], @@ -298173,8 +280981,6 @@ }, "description": "1.021, Besprechungsraum 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5301.01.021", "maps": [], @@ -298207,8 +281013,6 @@ }, "description": "1.022, Besprechungsraum 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5301.01.022", "maps": [], @@ -298241,8 +281045,6 @@ }, "description": "1.030, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5301.01.030", "maps": [], @@ -298275,8 +281077,6 @@ }, "description": "1.031, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5301.01.031", "maps": [], @@ -298309,8 +281109,6 @@ }, "description": "1.032, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5301.01.032", "maps": [], @@ -298343,8 +281141,6 @@ }, "description": "1.033, Drucker", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5301.01.033", "maps": [], @@ -298377,8 +281173,6 @@ }, "description": "1.506, Aufzugschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5301.01.506", "maps": [], @@ -298411,8 +281205,6 @@ }, "description": "1.507, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5301.01.507", "maps": [], @@ -298445,8 +281237,6 @@ }, "description": "1.700, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5301.01.700", "maps": [], @@ -298479,8 +281269,6 @@ }, "description": "1.701, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5301.01.701", "maps": [], @@ -298513,8 +281301,6 @@ }, "description": "1.702, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5301.01.702", "maps": [], @@ -298547,8 +281333,6 @@ }, "description": "1.703, Terrasse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5301.01.703", "maps": [], @@ -298581,8 +281365,6 @@ }, "description": "1.800, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5301.01.800", "maps": [], @@ -298615,8 +281397,6 @@ }, "description": "1.801, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5301.01.801", "maps": [], @@ -298649,8 +281429,6 @@ }, "description": "2.001, Gro\u00dfraumb\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5301.02.001", "maps": [], @@ -298683,8 +281461,6 @@ }, "description": "2.004, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5301.02.004", "maps": [], @@ -298717,8 +281493,6 @@ }, "description": "2.005, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5301.02.005", "maps": [], @@ -298751,8 +281525,6 @@ }, "description": "2.006, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5301.02.006", "maps": [], @@ -298785,8 +281557,6 @@ }, "description": "2.007, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5301.02.007", "maps": [], @@ -298819,8 +281589,6 @@ }, "description": "2.008, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5301.02.008", "maps": [], @@ -298853,8 +281621,6 @@ }, "description": "2.009, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5301.02.009", "maps": [], @@ -298887,8 +281653,6 @@ }, "description": "2.010, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5301.02.010", "maps": [], @@ -298921,8 +281685,6 @@ }, "description": "2.011, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5301.02.011", "maps": [], @@ -298955,8 +281717,6 @@ }, "description": "2.012, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5301.02.012", "maps": [], @@ -298989,8 +281749,6 @@ }, "description": "2.013, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5301.02.013", "maps": [], @@ -299023,8 +281781,6 @@ }, "description": "2.014, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5301.02.014", "maps": [], @@ -299057,8 +281813,6 @@ }, "description": "2.015, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5301.02.015", "maps": [], @@ -299091,8 +281845,6 @@ }, "description": "2.020, Besprechungsraum 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5301.02.020", "maps": [], @@ -299125,8 +281877,6 @@ }, "description": "2.021, Lounge 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5301.02.021", "maps": [], @@ -299159,8 +281909,6 @@ }, "description": "2.022, Zeitschriften/Lesesaal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5301.02.022", "maps": [], @@ -299193,8 +281941,6 @@ }, "description": "2.030, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5301.02.030", "maps": [], @@ -299227,8 +281973,6 @@ }, "description": "2.031, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5301.02.031", "maps": [], @@ -299261,8 +282005,6 @@ }, "description": "2.032, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5301.02.032", "maps": [], @@ -299295,8 +282037,6 @@ }, "description": "2.033, Drucker", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5301.02.033", "maps": [], @@ -299329,8 +282069,6 @@ }, "description": "2.506, Aufzugschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5301.02.506", "maps": [], @@ -299363,8 +282101,6 @@ }, "description": "2.507, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5301.02.507", "maps": [], @@ -299397,8 +282133,6 @@ }, "description": "2.700, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5301.02.700", "maps": [], @@ -299431,8 +282165,6 @@ }, "description": "2.701, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5301.02.701", "maps": [], @@ -299465,8 +282197,6 @@ }, "description": "2.702, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5301.02.702", "maps": [], @@ -299499,8 +282229,6 @@ }, "description": "2.703, Galerie-Atrium", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5301.02.703", "maps": [], @@ -299533,8 +282261,6 @@ }, "description": "2.800, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5301.02.800", "maps": [], @@ -299567,8 +282293,6 @@ }, "description": "2.801, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5301.02.801", "maps": [], @@ -299601,8 +282325,6 @@ }, "description": "3.001, Gro\u00dfraumb\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5301.03.001", "maps": [], @@ -299635,8 +282357,6 @@ }, "description": "3.004, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5301.03.004", "maps": [], @@ -299669,8 +282389,6 @@ }, "description": "3.005, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5301.03.005", "maps": [], @@ -299703,8 +282421,6 @@ }, "description": "3.006, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5301.03.006", "maps": [], @@ -299737,8 +282453,6 @@ }, "description": "3.007, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5301.03.007", "maps": [], @@ -299771,8 +282485,6 @@ }, "description": "3.008, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5301.03.008", "maps": [], @@ -299805,8 +282517,6 @@ }, "description": "3.009, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5301.03.009", "maps": [], @@ -299839,8 +282549,6 @@ }, "description": "3.010, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5301.03.010", "maps": [], @@ -299873,8 +282581,6 @@ }, "description": "3.011, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5301.03.011", "maps": [], @@ -299907,8 +282613,6 @@ }, "description": "3.012, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5301.03.012", "maps": [], @@ -299941,8 +282645,6 @@ }, "description": "3.013, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5301.03.013", "maps": [], @@ -299975,8 +282677,6 @@ }, "description": "3.014, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5301.03.014", "maps": [], @@ -300009,8 +282709,6 @@ }, "description": "3.015, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5301.03.015", "maps": [], @@ -300043,8 +282741,6 @@ }, "description": "3.020, Lounge 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5301.03.020", "maps": [], @@ -300077,8 +282773,6 @@ }, "description": "3.021, Besprechungsraum 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5301.03.021", "maps": [], @@ -300111,8 +282805,6 @@ }, "description": "3.030, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5301.03.030", "maps": [], @@ -300145,8 +282837,6 @@ }, "description": "3.031, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5301.03.031", "maps": [], @@ -300179,8 +282869,6 @@ }, "description": "3.032, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5301.03.032", "maps": [], @@ -300213,8 +282901,6 @@ }, "description": "3.033, Drucker", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5301.03.033", "maps": [], @@ -300247,8 +282933,6 @@ }, "description": "3.506, Aufzugschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5301.03.506", "maps": [], @@ -300281,8 +282965,6 @@ }, "description": "3.507, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5301.03.507", "maps": [], @@ -300315,8 +282997,6 @@ }, "description": "3.700, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5301.03.700", "maps": [], @@ -300349,8 +283029,6 @@ }, "description": "3.701, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5301.03.701", "maps": [], @@ -300383,8 +283061,6 @@ }, "description": "3.702, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5301.03.702", "maps": [], @@ -300417,8 +283093,6 @@ }, "description": "3.703, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5301.03.703", "maps": [], @@ -300451,8 +283125,6 @@ }, "description": "3.800, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5301.03.800", "maps": [], @@ -300485,8 +283157,6 @@ }, "description": "3.801, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5301.03.801", "maps": [], @@ -300519,8 +283189,6 @@ }, "description": "4.001, Faculty Club", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5301.04.001", "maps": [], @@ -300553,8 +283221,6 @@ }, "description": "4.001B, Anrichte", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5301.04.001B", "maps": [], @@ -300587,8 +283253,6 @@ }, "description": "4.002, Faculty Club", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5301.04.002", "maps": [], @@ -300621,8 +283285,6 @@ }, "description": "4.003, Kaminzimmer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5301.04.003", "maps": [], @@ -300655,8 +283317,6 @@ }, "description": "4.004, Garderobe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5301.04.004", "maps": [], @@ -300689,8 +283349,6 @@ }, "description": "4.005, K\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5301.04.005", "maps": [], @@ -300723,8 +283381,6 @@ }, "description": "4.006, K\u00fchlung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5301.04.006", "maps": [], @@ -300757,8 +283413,6 @@ }, "description": "4.030, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5301.04.030", "maps": [], @@ -300791,8 +283445,6 @@ }, "description": "4.031, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5301.04.031", "maps": [], @@ -300825,8 +283477,6 @@ }, "description": "4.506, Aufzugschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5301.04.506", "maps": [], @@ -300859,8 +283509,6 @@ }, "description": "4.507, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5301.04.507", "maps": [], @@ -300893,8 +283541,6 @@ }, "description": "4.700, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5301.04.700", "maps": [], @@ -300927,8 +283573,6 @@ }, "description": "4.701, Terrasse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5301.04.701", "maps": [], @@ -300961,8 +283605,6 @@ }, "description": "4.702, Terrasse-Ost", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5301.04.702", "maps": [], @@ -300995,8 +283637,6 @@ }, "description": "4.800, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5301.04.800", "maps": [], @@ -301029,8 +283669,6 @@ }, "description": "4.801, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5301.04.801", "maps": [], @@ -301063,8 +283701,6 @@ }, "description": "0.001, Auditorium", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5301.EG.001", "maps": [], @@ -301097,8 +283733,6 @@ }, "description": "0.002, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5301.EG.002", "maps": [], @@ -301131,8 +283765,6 @@ }, "description": "0.003, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5301.EG.003", "maps": [], @@ -301165,8 +283797,6 @@ }, "description": "0.004, Gro\u00dfraumb\u00fcro IAS", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5301.EG.004", "maps": [], @@ -301199,8 +283829,6 @@ }, "description": "0.007, Cafeteria", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5301.EG.007", "maps": [], @@ -301233,8 +283861,6 @@ }, "description": "0.008, Information", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5301.EG.008", "maps": [], @@ -301267,8 +283893,6 @@ }, "description": "0.009, Cafeteria K\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5301.EG.009", "maps": [], @@ -301301,8 +283925,6 @@ }, "description": "0.010, Kiosk", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5301.EG.010", "maps": [], @@ -301335,8 +283957,6 @@ }, "description": "0.506, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5301.EG.506", "maps": [], @@ -301369,8 +283989,6 @@ }, "description": "0.507, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5301.EG.507", "maps": [], @@ -301403,8 +284021,6 @@ }, "description": "0.701, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5301.EG.701", "maps": [], @@ -301437,8 +284053,6 @@ }, "description": "0.702, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5301.EG.702", "maps": [], @@ -301471,8 +284085,6 @@ }, "description": "0.703, Eingangsbereich", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5301.EG.703", "maps": [], @@ -301505,8 +284117,6 @@ }, "description": "0.800, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5301.EG.800", "maps": [], @@ -301539,8 +284149,6 @@ }, "description": "0.801, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5301.EG.801", "maps": [], @@ -301573,8 +284181,6 @@ }, "description": "-1.001, Gardarobe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5301.U1.001", "maps": [], @@ -301607,8 +284213,6 @@ }, "description": "-1.002, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5301.U1.002", "maps": [], @@ -301641,8 +284245,6 @@ }, "description": "-1.003, Umkleide-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5301.U1.003", "maps": [], @@ -301675,8 +284277,6 @@ }, "description": "-1.004, Umkleide-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5301.U1.004", "maps": [], @@ -301709,8 +284309,6 @@ }, "description": "-1.005, Technik Wasserversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5301.U1.005", "maps": [], @@ -301743,8 +284341,6 @@ }, "description": "-1.006, Getr\u00e4nke", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5301.U1.006", "maps": [], @@ -301777,8 +284373,6 @@ }, "description": "-1.007, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5301.U1.007", "maps": [], @@ -301811,8 +284405,6 @@ }, "description": "-1.008, EDV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5301.U1.008", "maps": [], @@ -301845,8 +284437,6 @@ }, "description": "-1.009, Archiv", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5301.U1.009", "maps": [], @@ -301879,8 +284469,6 @@ }, "description": "-1.030, Beh.-WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5301.U1.030", "maps": [], @@ -301913,8 +284501,6 @@ }, "description": "-1.031, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5301.U1.031", "maps": [], @@ -301947,8 +284533,6 @@ }, "description": "-1.032, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5301.U1.032", "maps": [], @@ -301981,8 +284565,6 @@ }, "description": "-1.502, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5301.U1.502", "maps": [], @@ -302015,8 +284597,6 @@ }, "description": "-1.503, Elt.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5301.U1.503", "maps": [], @@ -302049,8 +284629,6 @@ }, "description": "-1.504, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5301.U1.504", "maps": [], @@ -302083,8 +284661,6 @@ }, "description": "-1.505, Trafo", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5301.U1.505", "maps": [], @@ -302117,8 +284693,6 @@ }, "description": "-1.506, Aufzugsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5301.U1.506", "maps": [], @@ -302151,8 +284725,6 @@ }, "description": "-1.701, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5301.U1.701", "maps": [], @@ -302185,8 +284757,6 @@ }, "description": "-1.702, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5301.U1.702", "maps": [], @@ -302219,8 +284789,6 @@ }, "description": "-1.704, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5301.U1.704", "maps": [], @@ -302253,8 +284821,6 @@ }, "description": "-1.800, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5301.U1.800", "maps": [], @@ -302287,8 +284853,6 @@ }, "description": "1202, Gesch\u00e4ft 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5302.01.102", "maps": [], @@ -302321,8 +284885,6 @@ }, "description": "1202A, Gesch\u00e4ft 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5302.01.102A", "maps": [], @@ -302355,8 +284917,6 @@ }, "description": "1202B, Gesch\u00e4ft 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5302.01.102B", "maps": [], @@ -302389,8 +284949,6 @@ }, "description": "0201, Speisesaal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5302.EG.001", "maps": [ @@ -302444,8 +285002,6 @@ }, "description": "0202, Cafeteria", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5302.EG.002", "maps": [], @@ -302478,8 +285034,6 @@ }, "description": "0202A, WC-Damen / Cafeteria", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5302.EG.002A", "maps": [], @@ -302512,8 +285066,6 @@ }, "description": "0202B, WC-Herren / Cafeteria", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5302.EG.002B", "maps": [], @@ -302546,8 +285098,6 @@ }, "description": "0202C, Flur / Cafeteria", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5302.EG.002C", "maps": [], @@ -302580,8 +285130,6 @@ }, "description": "0202D, Cafeteria-K\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5302.EG.002D", "maps": [], @@ -302614,8 +285162,6 @@ }, "description": "0202E, Lager / Cafeteria", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5302.EG.002E", "maps": [], @@ -302648,8 +285194,6 @@ }, "description": "0202F, Biergarten / Cafeteria", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5302.EG.002F", "maps": [], @@ -302682,8 +285226,6 @@ }, "description": "0260, Install. Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5302.EG.060", "maps": [], @@ -302716,8 +285258,6 @@ }, "description": "0261, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5302.EG.061", "maps": [], @@ -302750,8 +285290,6 @@ }, "description": "0263, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5302.EG.062", "maps": [], @@ -302784,8 +285322,6 @@ }, "description": "0273, Transformatoren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5302.EG.063", "maps": [], @@ -302818,8 +285354,6 @@ }, "description": "0274, Transformatoren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5302.EG.064", "maps": [], @@ -302852,8 +285386,6 @@ }, "description": "0275, Transformatoren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5302.EG.065", "maps": [], @@ -302886,8 +285418,6 @@ }, "description": "-1108, Install.Kanal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "TP", "id": "5302.TP.108", "maps": [], @@ -302920,8 +285450,6 @@ }, "description": "-1.211, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "TP", "id": "5302.TP.211", "maps": [], @@ -302954,8 +285482,6 @@ }, "description": "-1.212, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "TP", "id": "5302.TP.212", "maps": [], @@ -302988,8 +285514,6 @@ }, "description": "2.220, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "5302.Z1.220", "maps": [], @@ -303022,8 +285546,6 @@ }, "description": "1.014, HLS./ELT.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5304.01.014", "maps": [], @@ -303056,8 +285578,6 @@ }, "description": "1.308, ELT.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5304.01.308", "maps": [], @@ -303090,8 +285610,6 @@ }, "description": "2.013, Aufzugsmaschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5304.02.013", "maps": [], @@ -303124,8 +285642,6 @@ }, "description": "2.014, HLS/ELT.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5304.02.014", "maps": [], @@ -303158,8 +285674,6 @@ }, "description": "2.023, Aufzugsmaschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5304.02.023", "maps": [], @@ -303192,8 +285706,6 @@ }, "description": "2.028, Aufzugmaschienenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5304.02.028", "maps": [], @@ -303226,8 +285738,6 @@ }, "description": "2.030, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5304.02.030", "maps": [], @@ -303260,8 +285770,6 @@ }, "description": "2.101, Technik erh\u00f6hter Bereich", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5304.02.101", "maps": [], @@ -303294,8 +285802,6 @@ }, "description": "2.102, Technik niedriger Bereich", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5304.02.102", "maps": [], @@ -303328,8 +285834,6 @@ }, "description": "2.103, Technikbalkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5304.02.103", "maps": [], @@ -303362,8 +285866,6 @@ }, "description": "2.203, ELT.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5304.02.203", "maps": [], @@ -303396,8 +285898,6 @@ }, "description": "2.204, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5304.02.204", "maps": [], @@ -303430,8 +285930,6 @@ }, "description": "2.205, Kleink\u00e4ltemaschinen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5304.02.205", "maps": [], @@ -303464,8 +285962,6 @@ }, "description": "2.206, RWA", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5304.02.206", "maps": [], @@ -303498,8 +285994,6 @@ }, "description": "2.302, ELT.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5304.02.302", "maps": [], @@ -303532,8 +286026,6 @@ }, "description": "2.306, ELT.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5304.02.306", "maps": [], @@ -303566,8 +286058,6 @@ }, "description": "2.307, ELT.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5304.02.307", "maps": [], @@ -303600,8 +286090,6 @@ }, "description": "2.314, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5304.02.314", "maps": [], @@ -303634,8 +286122,6 @@ }, "description": "0.016, Technikraum Cafeteria", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5304.EG.016", "maps": [], @@ -303668,8 +286154,6 @@ }, "description": "0.220, ELT.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5304.EG.220", "maps": [], @@ -303702,8 +286186,6 @@ }, "description": "0.305, ELT.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5304.EG.305", "maps": [], @@ -303736,8 +286218,6 @@ }, "description": "0.331, ELT.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5304.EG.331", "maps": [], @@ -303770,8 +286250,6 @@ }, "description": "0.411, Zentrale Heizung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5304.EG.411", "maps": [], @@ -303804,8 +286282,6 @@ }, "description": "0.412, TW-\u00dcbergabe Wasserv.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5304.EG.412", "maps": [], @@ -303838,8 +286314,6 @@ }, "description": "0.413, ELT.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5304.EG.413", "maps": [], @@ -303872,8 +286346,6 @@ }, "description": "0.414, ELT. f. EDV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5304.EG.414", "maps": [], @@ -303906,8 +286378,6 @@ }, "description": "0.416, BOS", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5304.EG.416", "maps": [], @@ -303940,8 +286410,6 @@ }, "description": "0.417, BMZ", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5304.EG.417", "maps": [], @@ -303974,8 +286442,6 @@ }, "description": "0.418, SiBel", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5304.EG.418", "maps": [], @@ -304008,8 +286474,6 @@ }, "description": "0.419, NSHV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5304.EG.419", "maps": [], @@ -304042,8 +286506,6 @@ }, "description": "0.420, Verteilerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5304.EG.420", "maps": [], @@ -304076,8 +286538,6 @@ }, "description": "0.421, Trafo 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5304.EG.421", "maps": [], @@ -304110,8 +286570,6 @@ }, "description": "0.422, Trafo 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5304.EG.422", "maps": [], @@ -304144,8 +286602,6 @@ }, "description": "0.423, Trafo 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5304.EG.423", "maps": [], @@ -304178,8 +286634,6 @@ }, "description": "0.424, Mittelspannung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5304.EG.424", "maps": [], @@ -304212,8 +286666,6 @@ }, "description": "0.425, Hausanschluss", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5304.EG.425", "maps": [], @@ -304246,8 +286698,6 @@ }, "description": "0.426, SAA HV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5304.EG.426", "maps": [], @@ -304280,8 +286730,6 @@ }, "description": "0.427, GLT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5304.EG.427", "maps": [], @@ -304314,8 +286762,6 @@ }, "description": "0.431, RLT-Zentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5304.EG.431", "maps": [], @@ -304348,8 +286794,6 @@ }, "description": "0.502, UV ELT.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5304.EG.502", "maps": [], @@ -304382,8 +286826,6 @@ }, "description": "0.600, Thekenbereich CampusC.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5304.EG.600", "maps": [], @@ -304416,8 +286858,6 @@ }, "description": "0.601, Gastraum Campus Cneipe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5304.EG.601", "maps": [], @@ -304450,8 +286890,6 @@ }, "description": "0.603, Flur CampusC.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5304.EG.603", "maps": [], @@ -304484,8 +286922,6 @@ }, "description": "0.604, K\u00fcche CampusC.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5304.EG.604", "maps": [], @@ -304518,8 +286954,6 @@ }, "description": "0.605, Lager CampusC.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5304.EG.605", "maps": [], @@ -304552,8 +286986,6 @@ }, "description": "0.606, Flur CampusC.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5304.EG.606", "maps": [], @@ -304586,8 +287018,6 @@ }, "description": "0.607, Lager CampusC.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5304.EG.607", "maps": [], @@ -304620,8 +287050,6 @@ }, "description": "0.608, WC-Vorraum Herren / CampusC.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5304.EG.608", "maps": [], @@ -304654,8 +287082,6 @@ }, "description": "0.609, WC-Herren / CampusC.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5304.EG.609", "maps": [], @@ -304688,8 +287114,6 @@ }, "description": "0.610, Putzraum CampusC.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5304.EG.610", "maps": [], @@ -304722,8 +287146,6 @@ }, "description": "0.611, WC-Vorraum Damen / CampusC.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5304.EG.611", "maps": [], @@ -304756,8 +287178,6 @@ }, "description": "0.612, WC-Damen / CampusC.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5304.EG.612", "maps": [], @@ -304790,8 +287210,6 @@ }, "description": "0.613, WC-Personal / CampusC.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5304.EG.613", "maps": [], @@ -304824,8 +287242,6 @@ }, "description": "0.614, Umkleide Personal CampusC.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5304.EG.614", "maps": [], @@ -304858,8 +287274,6 @@ }, "description": "0.701, Aussenbereich Campus Cneipe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5304.EG.701", "maps": [], @@ -304892,8 +287306,6 @@ }, "description": "U.23, Aufzugsunterfahrt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5304.U1.023", "maps": [], @@ -304926,8 +287338,6 @@ }, "description": "U.24, Aufzugsunterfahrt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5304.U1.024", "maps": [], @@ -304960,8 +287370,6 @@ }, "description": "U.102, Sprinklerzentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5304.U1.102", "maps": [], @@ -304994,8 +287402,6 @@ }, "description": "U.103, Sprinklertank", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5304.U1.103", "maps": [], @@ -305028,8 +287434,6 @@ }, "description": "U.104, Na\u00dfm\u00fcll u. Fettabscheider", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5304.U1.104", "maps": [], @@ -305062,8 +287466,6 @@ }, "description": "U.105, ELT./HLS", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5304.U1.105", "maps": [], @@ -305096,8 +287498,6 @@ }, "description": "U.106, Kriechgang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5304.U1.106", "maps": [], @@ -305130,8 +287530,6 @@ }, "description": "U.107, Aufstieg", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5304.U1.107", "maps": [], @@ -305164,8 +287562,6 @@ }, "description": "21001, Lesesaal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5401.01.100A", "maps": [], @@ -305198,8 +287594,6 @@ }, "description": "21002, Cafeteria", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5401.01.100B", "maps": [], @@ -305232,8 +287626,6 @@ }, "description": "21003, Scannerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5401.01.100C", "maps": [], @@ -305266,8 +287658,6 @@ }, "description": "21004, K\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5401.01.100D", "maps": [], @@ -305300,8 +287690,6 @@ }, "description": "21005, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5401.01.100E", "maps": [], @@ -305334,8 +287722,6 @@ }, "description": "21006, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5401.01.100H", "maps": [], @@ -305368,8 +287754,6 @@ }, "description": "21009, Auskunft / Sicherheitsdienst", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5401.01.100J", "maps": [], @@ -305402,8 +287786,6 @@ }, "description": "21002A, Cafeteria", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5401.01.100K", "maps": [], @@ -305436,8 +287818,6 @@ }, "description": "CH 21011, Bild- und Tonregieraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5401.01.101A", "maps": [], @@ -305470,8 +287850,6 @@ }, "description": "21012, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5401.01.101B", "maps": [], @@ -305504,8 +287882,6 @@ }, "description": "21013, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5401.01.101C", "maps": [], @@ -305538,8 +287914,6 @@ }, "description": "21014, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5401.01.101D", "maps": [], @@ -305572,8 +287946,6 @@ }, "description": "21015, CH-Foyer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5401.01.101E", "maps": [], @@ -305606,8 +287978,6 @@ }, "description": "21016, Aufzugs- und F\u00f6rdermaschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5401.01.101F", "maps": [], @@ -305640,8 +288010,6 @@ }, "description": "21017, Fluchtbalkon / Laubengang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5401.01.101G", "maps": [], @@ -305674,8 +288042,6 @@ }, "description": "21018, Weg", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5401.01.101H", "maps": [], @@ -305740,8 +288106,6 @@ }, "description": "21010, Windfang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5401.01.101J", "maps": [], @@ -305860,8 +288224,6 @@ }, "description": "21020, Gang, Weg im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5401.01.101L", "maps": [], @@ -305894,8 +288256,6 @@ }, "description": "11001, Chemielabor (K.B.,MV,750kg)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5401.EG.100A", "maps": [], @@ -305928,8 +288288,6 @@ }, "description": "11002, Chemielabor (K.B.,MV,750kg)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5401.EG.100B", "maps": [], @@ -305962,8 +288320,6 @@ }, "description": "11003, Messraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5401.EG.100C", "maps": [], @@ -305996,8 +288352,6 @@ }, "description": "11004, Messraum (klimatisiert)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5401.EG.100D", "maps": [], @@ -306030,8 +288384,6 @@ }, "description": "11005, Messraum (klimatisiert)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5401.EG.100E", "maps": [], @@ -306064,8 +288416,6 @@ }, "description": "11006, Messraum (klimatisiert)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5401.EG.100F", "maps": [], @@ -306098,8 +288448,6 @@ }, "description": "11007, Physiklabor (einfach)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5401.EG.100G", "maps": [], @@ -306132,8 +288480,6 @@ }, "description": "11008, Physiklabor (einfach)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5401.EG.100H", "maps": [], @@ -306166,8 +288512,6 @@ }, "description": "11009, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5401.EG.100I", "maps": [], @@ -306200,8 +288544,6 @@ }, "description": "11010, Betriebstechn. Anlagen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5401.EG.100J", "maps": [], @@ -306234,8 +288576,6 @@ }, "description": "11115, Pr\u00fcflabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5401.EG.111E", "maps": [], @@ -306268,8 +288608,6 @@ }, "description": "11110, Technikum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5401.EG.111K", "maps": [], @@ -306302,8 +288640,6 @@ }, "description": "11125, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5401.EG.112A", "maps": [], @@ -306336,8 +288672,6 @@ }, "description": "11126, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5401.EG.112C", "maps": [], @@ -306370,8 +288704,6 @@ }, "description": "11120, Analyt.pr\u00e4parativchemisch. Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5401.EG.112M", "maps": [], @@ -306404,8 +288736,6 @@ }, "description": "11121, Analyt.pr\u00e4parativchemisch.Lab.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5401.EG.112N", "maps": [], @@ -306438,8 +288768,6 @@ }, "description": "11122, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5401.EG.112O", "maps": [], @@ -306472,8 +288800,6 @@ }, "description": "11139, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5401.EG.113A", "maps": [], @@ -306506,8 +288832,6 @@ }, "description": "11131, Treppenzugang zu 11141", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5401.EG.113B", "maps": [], @@ -306540,8 +288864,6 @@ }, "description": "11132, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5401.EG.113C", "maps": [], @@ -306574,8 +288896,6 @@ }, "description": "11133, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5401.EG.113D", "maps": [], @@ -306608,8 +288928,6 @@ }, "description": "11135, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5401.EG.113F", "maps": [], @@ -306642,8 +288960,6 @@ }, "description": "11134, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5401.EG.113G", "maps": [], @@ -306676,8 +288992,6 @@ }, "description": "11146, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5401.EG.114B", "maps": [], @@ -306710,8 +289024,6 @@ }, "description": "11147, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5401.EG.114C", "maps": [], @@ -306744,8 +289056,6 @@ }, "description": "11128, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5401.EG.114I", "maps": [], @@ -306778,8 +289088,6 @@ }, "description": "11140, Lesesaal/Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5401.EG.114K", "maps": [], @@ -306812,8 +289120,6 @@ }, "description": "11156, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5401.EG.114O", "maps": [], @@ -306846,8 +289152,6 @@ }, "description": "11151, Technikraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5401.EG.115A", "maps": [], @@ -306880,8 +289184,6 @@ }, "description": "11152, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5401.EG.115B", "maps": [], @@ -306914,8 +289216,6 @@ }, "description": "11154, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5401.EG.115C", "maps": [], @@ -306948,8 +289248,6 @@ }, "description": "11153, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5401.EG.115J", "maps": [], @@ -306982,8 +289280,6 @@ }, "description": "11150, Lesesaal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5401.EG.115K", "maps": [], @@ -307016,8 +289312,6 @@ }, "description": "11150A, Gruppenarbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5401.EG.115L", "maps": [], @@ -307050,8 +289344,6 @@ }, "description": "11150B, Gruppenarbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5401.EG.115M", "maps": [], @@ -307084,8 +289376,6 @@ }, "description": "11150C, Gruppenarbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5401.EG.115N", "maps": [], @@ -307118,8 +289408,6 @@ }, "description": "11160, Heizraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5401.EG.116A", "maps": [], @@ -307152,8 +289440,6 @@ }, "description": "11165, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5401.EG.116B", "maps": [], @@ -307186,8 +289472,6 @@ }, "description": "11166, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5401.EG.116C", "maps": [], @@ -307220,8 +289504,6 @@ }, "description": "11171, Vorbereitungsraum Chemie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5401.EG.117A", "maps": [], @@ -307254,8 +289536,6 @@ }, "description": "11172, Lehrmittelsammlung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5401.EG.117B", "maps": [], @@ -307288,8 +289568,6 @@ }, "description": "11173, B\u00fcchermagazin", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5401.EG.117C", "maps": [], @@ -307322,8 +289600,6 @@ }, "description": "11170, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5401.EG.117K", "maps": [], @@ -307356,8 +289632,6 @@ }, "description": "11181, Heizraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5401.EG.118A", "maps": [], @@ -307390,8 +289664,6 @@ }, "description": "11180, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5401.EG.118B", "maps": [], @@ -307424,8 +289696,6 @@ }, "description": "11182, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5401.EG.118C", "maps": [], @@ -307458,8 +289728,6 @@ }, "description": "11155, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5401.EG.118E", "maps": [], @@ -307492,8 +289760,6 @@ }, "description": "11184, Raumlufttechnische Anlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5401.EG.118K", "maps": [], @@ -307526,8 +289792,6 @@ }, "description": "11190, WC-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5401.EG.119A", "maps": [], @@ -307560,8 +289824,6 @@ }, "description": "11191, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5401.EG.119B", "maps": [], @@ -307594,8 +289856,6 @@ }, "description": "11192, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5401.EG.119C", "maps": [], @@ -307628,8 +289888,6 @@ }, "description": "11193, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5401.EG.119D", "maps": [], @@ -307662,8 +289920,6 @@ }, "description": "11194, WC-Damen Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5401.EG.119E", "maps": [], @@ -307696,8 +289952,6 @@ }, "description": "11195, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5401.EG.119F", "maps": [], @@ -307730,8 +289984,6 @@ }, "description": "11196, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5401.EG.119G", "maps": [], @@ -307764,8 +290016,6 @@ }, "description": "22001, WC-Damen Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5402.01.200A", "maps": [], @@ -307798,8 +290048,6 @@ }, "description": "22004, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5402.01.200B", "maps": [], @@ -307832,8 +290080,6 @@ }, "description": "22006, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5402.01.200C", "maps": [], @@ -307866,8 +290112,6 @@ }, "description": "22007, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5402.01.200D", "maps": [], @@ -307900,8 +290144,6 @@ }, "description": "22008, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5402.01.200E", "maps": [], @@ -307934,8 +290176,6 @@ }, "description": "22009, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5402.01.200F", "maps": [], @@ -307968,8 +290208,6 @@ }, "description": "22001A, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5402.01.200G", "maps": [], @@ -308002,8 +290240,6 @@ }, "description": "22010A, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5402.01.200H", "maps": [], @@ -308036,8 +290272,6 @@ }, "description": "22003A, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5402.01.200J", "maps": [], @@ -308070,8 +290304,6 @@ }, "description": "22004A, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5402.01.200K", "maps": [], @@ -308104,8 +290336,6 @@ }, "description": "22002, Toilette f. Behinderte", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5402.01.200N", "maps": [], @@ -308138,8 +290368,6 @@ }, "description": "22003, WC-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5402.01.200P", "maps": [], @@ -308172,8 +290400,6 @@ }, "description": "22010, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5402.01.201A", "maps": [], @@ -308206,8 +290432,6 @@ }, "description": "22011, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5402.01.201B", "maps": [], @@ -308240,8 +290464,6 @@ }, "description": "22012, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5402.01.201C", "maps": [], @@ -308274,8 +290496,6 @@ }, "description": "22013, Halle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5402.01.201D", "maps": [], @@ -308308,8 +290528,6 @@ }, "description": "22014, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5402.01.201E", "maps": [], @@ -308342,8 +290560,6 @@ }, "description": "22015, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5402.01.201F", "maps": [], @@ -308376,8 +290592,6 @@ }, "description": "22016, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5402.01.201G", "maps": [], @@ -308410,8 +290624,6 @@ }, "description": "22017, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5402.01.201H", "maps": [], @@ -308444,8 +290656,6 @@ }, "description": "22019, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5402.01.201J", "maps": [], @@ -308478,8 +290688,6 @@ }, "description": "22020, Sonderm\u00fcllzwischenlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5402.01.201K", "maps": [], @@ -308512,8 +290720,6 @@ }, "description": "22022, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5402.01.201M", "maps": [], @@ -308546,8 +290752,6 @@ }, "description": "22030, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5402.01.202A", "maps": [], @@ -308580,8 +290784,6 @@ }, "description": "22031, Gang, Weg im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5402.01.202B", "maps": [], @@ -308614,8 +290816,6 @@ }, "description": "22032, Gang, Weg im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5402.01.202C", "maps": [], @@ -308648,8 +290848,6 @@ }, "description": "22034, Gang, Weg im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5402.01.202D", "maps": [], @@ -308682,8 +290880,6 @@ }, "description": "22035, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5402.01.202E", "maps": [], @@ -308716,8 +290912,6 @@ }, "description": "22101, Labor f\u00fcr chem. Arbeitsweisen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5402.01.210A", "maps": [], @@ -308750,8 +290944,6 @@ }, "description": "22102, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5402.01.210B", "maps": [], @@ -308784,8 +290976,6 @@ }, "description": "22103, Praktikum mit festem Arbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5402.01.210C", "maps": [], @@ -308818,8 +291008,6 @@ }, "description": "22105, Labor f\u00fcr chem. Arbeitsweisen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5402.01.210E", "maps": [], @@ -308852,8 +291040,6 @@ }, "description": "22106, Arbeitsraum/ohne Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5402.01.210F", "maps": [], @@ -308886,8 +291072,6 @@ }, "description": "22107, Praktikum mit festem Arbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5402.01.210G", "maps": [], @@ -308920,8 +291104,6 @@ }, "description": "22110, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5402.01.211", "maps": [], @@ -308954,8 +291136,6 @@ }, "description": "22201, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5402.01.220A", "maps": [], @@ -308988,8 +291168,6 @@ }, "description": "CH 22209, \u00dcbungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5402.01.220J", "maps": [ @@ -309043,8 +291221,6 @@ }, "description": "22202, Technologisches Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5402.01.221A", "maps": [], @@ -309077,8 +291253,6 @@ }, "description": "22212, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5402.01.221H", "maps": [], @@ -309191,8 +291365,6 @@ }, "description": "22301, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5402.01.230", "maps": [], @@ -309225,8 +291397,6 @@ }, "description": "22401, Vorbereitung CH Praktikum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5402.01.240A", "maps": [], @@ -309259,8 +291429,6 @@ }, "description": "22402, Vorbereitung CH Praktikum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5402.01.240B", "maps": [], @@ -309293,8 +291461,6 @@ }, "description": "22403, CH Praktika", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5402.01.240C", "maps": [], @@ -309327,8 +291493,6 @@ }, "description": "22404, CH Praktika", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5402.01.240D", "maps": [], @@ -309361,8 +291525,6 @@ }, "description": "22415, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5402.01.241D", "maps": [], @@ -309395,8 +291557,6 @@ }, "description": "32001, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.200A", "maps": [], @@ -309429,8 +291589,6 @@ }, "description": "32007, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.200D", "maps": [], @@ -309463,8 +291621,6 @@ }, "description": "32008, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.200E", "maps": [], @@ -309497,8 +291653,6 @@ }, "description": "32009, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.200F", "maps": [], @@ -309531,8 +291685,6 @@ }, "description": "32010, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.201A", "maps": [], @@ -309565,8 +291717,6 @@ }, "description": "32011, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.201B", "maps": [], @@ -309599,8 +291749,6 @@ }, "description": "32012, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.201C", "maps": [], @@ -309633,8 +291781,6 @@ }, "description": "32013, Halle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.201D", "maps": [], @@ -309667,8 +291813,6 @@ }, "description": "32014, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.201E", "maps": [], @@ -309701,8 +291845,6 @@ }, "description": "32015, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.201F", "maps": [], @@ -309735,8 +291877,6 @@ }, "description": "32016, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.201G", "maps": [], @@ -309769,8 +291909,6 @@ }, "description": "32017, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.201H", "maps": [], @@ -309803,8 +291941,6 @@ }, "description": "32018, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.201J", "maps": [], @@ -309837,8 +291973,6 @@ }, "description": "32019, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.201K", "maps": [], @@ -309871,8 +292005,6 @@ }, "description": "32003, Server", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.201L", "maps": [], @@ -309905,8 +292037,6 @@ }, "description": "32020, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.201M", "maps": [], @@ -309939,8 +292069,6 @@ }, "description": "32021, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.201N", "maps": [], @@ -309973,8 +292101,6 @@ }, "description": "32025, M\u00fcllsammelraum o.Verarbeitung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.201Q", "maps": [], @@ -310007,8 +292133,6 @@ }, "description": "32023, Installationsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.202C", "maps": [], @@ -310041,8 +292165,6 @@ }, "description": "32024, Installationsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.202D", "maps": [], @@ -310075,8 +292197,6 @@ }, "description": "32025, Installationsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.202E", "maps": [], @@ -310109,8 +292229,6 @@ }, "description": "32026, Installationsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.202F", "maps": [], @@ -310143,8 +292261,6 @@ }, "description": "32027, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.208A", "maps": [], @@ -310177,8 +292293,6 @@ }, "description": "32028, Gang, Weg im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.208B", "maps": [], @@ -310211,8 +292325,6 @@ }, "description": "32029, Gang, Weg im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.208C", "maps": [], @@ -310245,8 +292357,6 @@ }, "description": "32030, Gang, Weg im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.208D", "maps": [], @@ -310279,8 +292389,6 @@ }, "description": "32028, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.208E", "maps": [], @@ -310313,8 +292421,6 @@ }, "description": "32031, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.208F", "maps": [], @@ -310347,8 +292453,6 @@ }, "description": "32101, Raster-EM", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.210A", "maps": [], @@ -310381,8 +292485,6 @@ }, "description": "32102, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.210B", "maps": [], @@ -310415,8 +292517,6 @@ }, "description": "32103, Arbeitsraum/ohne Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.210C", "maps": [], @@ -310449,8 +292549,6 @@ }, "description": "32104, Arbeitsraum/ohne Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.210D", "maps": [], @@ -310483,8 +292581,6 @@ }, "description": "32105, Arbeitsraum/ohne Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.210E", "maps": [], @@ -310517,8 +292613,6 @@ }, "description": "32106, Arbeitsraum/ohne Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.210F", "maps": [], @@ -310551,8 +292645,6 @@ }, "description": "32107, Arbeitsraum/ohne Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.210G", "maps": [], @@ -310585,8 +292677,6 @@ }, "description": "32108, Arbeitsraum/ohne Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.210H", "maps": [], @@ -310619,8 +292709,6 @@ }, "description": "32109, Arbeitsraum/ohne Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.210J", "maps": [], @@ -310653,8 +292741,6 @@ }, "description": "32111, Heide-Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.211A", "maps": [], @@ -310687,8 +292773,6 @@ }, "description": "32117, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.211B", "maps": [], @@ -310721,8 +292805,6 @@ }, "description": "32114, Praktikum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.211D", "maps": [], @@ -310755,8 +292837,6 @@ }, "description": "32110, Probenvorbereitung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.211K", "maps": [], @@ -310789,8 +292869,6 @@ }, "description": "32201, Chemielabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.220A", "maps": [], @@ -310823,8 +292901,6 @@ }, "description": "32203, Org. Ch./Partikellab.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.220B", "maps": [], @@ -310857,8 +292933,6 @@ }, "description": "32202, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.220C", "maps": [], @@ -310891,8 +292965,6 @@ }, "description": "32205, Analyt. Messlab.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.220D", "maps": [], @@ -310925,8 +292997,6 @@ }, "description": "32206, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.220E", "maps": [], @@ -310959,8 +293029,6 @@ }, "description": "32208, Autoklavenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.220I", "maps": [], @@ -310993,8 +293061,6 @@ }, "description": "32204, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.220K", "maps": [], @@ -311027,8 +293093,6 @@ }, "description": "32212, Chemielabor S1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.221B", "maps": [], @@ -311061,8 +293125,6 @@ }, "description": "32213, Chemielabor S1-REM", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.221C", "maps": [], @@ -311095,8 +293157,6 @@ }, "description": "32214, Chemielabor S1-REM", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.221D", "maps": [], @@ -311129,8 +293189,6 @@ }, "description": "32215, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.221F", "maps": [], @@ -311163,8 +293221,6 @@ }, "description": "32214A, Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.221G", "maps": [], @@ -311197,8 +293253,6 @@ }, "description": "32210, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.221K", "maps": [], @@ -311231,8 +293285,6 @@ }, "description": "32213A, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.221L", "maps": [], @@ -311265,8 +293317,6 @@ }, "description": "32220, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.222", "maps": [], @@ -311299,8 +293349,6 @@ }, "description": "32301, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.230A", "maps": [], @@ -311333,8 +293381,6 @@ }, "description": "32302, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.230B", "maps": [], @@ -311367,8 +293413,6 @@ }, "description": "32303, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.230C", "maps": [], @@ -311401,8 +293445,6 @@ }, "description": "32304, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.230D", "maps": [], @@ -311435,8 +293477,6 @@ }, "description": "32306, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.230F", "maps": [], @@ -311469,8 +293509,6 @@ }, "description": "32308, Arbeitsraum/mit Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.230H", "maps": [], @@ -311503,8 +293541,6 @@ }, "description": "32309, Arbeitsraum/ohne Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.230J", "maps": [], @@ -311537,8 +293573,6 @@ }, "description": "32311, Arbeitsraum/mit Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.231A", "maps": [], @@ -311571,8 +293605,6 @@ }, "description": "32312, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.231B", "maps": [], @@ -311605,8 +293637,6 @@ }, "description": "32310, Arbeitsraum/ohne Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.231K", "maps": [], @@ -311639,8 +293669,6 @@ }, "description": "32401, Gas-Chromatografie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.240A", "maps": [], @@ -311673,8 +293701,6 @@ }, "description": "32402, Chemielabor (KNSTL.B.,MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.240B", "maps": [], @@ -311707,8 +293733,6 @@ }, "description": "32405, Chemielabor (KNSTL.B.,MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.240E", "maps": [], @@ -311741,8 +293765,6 @@ }, "description": "32408, Chemielabor (KNSTL.B.,MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.240H", "maps": [], @@ -311775,8 +293797,6 @@ }, "description": "32409, Labor f\u00fcr chem. Arbeitsweisen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.240J", "maps": [], @@ -311809,8 +293829,6 @@ }, "description": "32412, Chemielabor (KNSTL.B.,MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.241B", "maps": [], @@ -311843,8 +293861,6 @@ }, "description": "32415, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5402.02.241C", "maps": [], @@ -311877,8 +293893,6 @@ }, "description": "42001, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.200A", "maps": [], @@ -311911,8 +293925,6 @@ }, "description": "42003, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.200B", "maps": [], @@ -311945,8 +293957,6 @@ }, "description": "42005, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.200C", "maps": [], @@ -311979,8 +293989,6 @@ }, "description": "42007, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.200D", "maps": [], @@ -312013,8 +294021,6 @@ }, "description": "42008, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.200E", "maps": [], @@ -312047,8 +294053,6 @@ }, "description": "42009, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.200F", "maps": [], @@ -312081,8 +294085,6 @@ }, "description": "42002, WC-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.200G", "maps": [], @@ -312115,8 +294117,6 @@ }, "description": "42004, WC-Damen Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.200H", "maps": [], @@ -312149,8 +294149,6 @@ }, "description": "42006, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.200K", "maps": [], @@ -312183,8 +294181,6 @@ }, "description": "42010, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.201A", "maps": [], @@ -312217,8 +294213,6 @@ }, "description": "42011, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.201B", "maps": [], @@ -312251,8 +294245,6 @@ }, "description": "42012, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.201C", "maps": [], @@ -312285,8 +294277,6 @@ }, "description": "42013, Halle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.201D", "maps": [], @@ -312319,8 +294309,6 @@ }, "description": "42014, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.201E", "maps": [], @@ -312353,8 +294341,6 @@ }, "description": "42015, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.201F", "maps": [], @@ -312387,8 +294373,6 @@ }, "description": "42016, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.201G", "maps": [], @@ -312421,8 +294405,6 @@ }, "description": "42017, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.201H", "maps": [], @@ -312455,8 +294437,6 @@ }, "description": "42018, Weg", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.201J", "maps": [], @@ -312489,8 +294469,6 @@ }, "description": "42019, Fluchtbalkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.201K", "maps": [], @@ -312523,8 +294501,6 @@ }, "description": "42013, Sonderm\u00fcllzwischenlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.201L", "maps": [], @@ -312557,8 +294533,6 @@ }, "description": "42020, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.201M", "maps": [], @@ -312591,8 +294565,6 @@ }, "description": "42021, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.201N", "maps": [], @@ -312625,8 +294597,6 @@ }, "description": "42018, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.201P", "maps": [], @@ -312659,8 +294629,6 @@ }, "description": "42019, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.201Q", "maps": [], @@ -312693,8 +294661,6 @@ }, "description": "42020, Fluchtbalkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.202A", "maps": [], @@ -312727,8 +294693,6 @@ }, "description": "42021, Fluchtbalkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.202B", "maps": [], @@ -312761,8 +294725,6 @@ }, "description": "42025, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.208A", "maps": [], @@ -312795,8 +294757,6 @@ }, "description": "42030, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.208F", "maps": [], @@ -312829,8 +294789,6 @@ }, "description": "42101, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.210A", "maps": [], @@ -312863,8 +294821,6 @@ }, "description": "42102, Arbeitsraum/ohne Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.210B", "maps": [], @@ -312897,8 +294853,6 @@ }, "description": "42103, Arbeitsraum/ohne Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.210C", "maps": [], @@ -312931,8 +294885,6 @@ }, "description": "42104, Arbeitsraum/ohne Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.210D", "maps": [], @@ -312965,8 +294917,6 @@ }, "description": "42105, Arbeitsraum/mit Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.210E", "maps": [], @@ -312999,8 +294949,6 @@ }, "description": "42106, Arbeitsraum/ohne Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.210F", "maps": [], @@ -313033,8 +294981,6 @@ }, "description": "42107, Chemielabor (KNSTL.B.,MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.210G", "maps": [], @@ -313067,8 +295013,6 @@ }, "description": "42108, Chemielabor (KNSTL.B.,MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.210H", "maps": [], @@ -313101,8 +295045,6 @@ }, "description": "42112, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.211J", "maps": [], @@ -313135,8 +295077,6 @@ }, "description": "42110, Chemielabor (KNSTL.B.,MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.211K", "maps": [], @@ -313169,8 +295109,6 @@ }, "description": "42201, Chemielabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.220A", "maps": [], @@ -313203,8 +295141,6 @@ }, "description": "42203, Chemielabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.220C", "maps": [], @@ -313237,8 +295173,6 @@ }, "description": "42204, Elektronikwerkstatt 4/50,5/50", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.220D", "maps": [], @@ -313271,8 +295205,6 @@ }, "description": "42206, Aufenthaltsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.220F", "maps": [], @@ -313305,8 +295237,6 @@ }, "description": "42207, Chemielabor / Analyse / Pr\u00e4p.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.220G", "maps": [], @@ -313339,8 +295269,6 @@ }, "description": "42209, Arbeitsraum/ohne Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.220J", "maps": [], @@ -313373,8 +295301,6 @@ }, "description": "42211, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.221A", "maps": [], @@ -313407,8 +295333,6 @@ }, "description": "42212, LRZ-Verteilerknoten", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.221B", "maps": [], @@ -313441,8 +295365,6 @@ }, "description": "42213, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.221C", "maps": [], @@ -313475,8 +295397,6 @@ }, "description": "42215, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.221E", "maps": [], @@ -313509,8 +295429,6 @@ }, "description": "42217, EDV-Raum (ohne Fenster)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.221G", "maps": [], @@ -313543,8 +295461,6 @@ }, "description": "42218, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.221H", "maps": [], @@ -313577,8 +295493,6 @@ }, "description": "42219, Glove-Box", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.221J", "maps": [], @@ -313611,8 +295525,6 @@ }, "description": "42210, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.221K", "maps": [], @@ -313645,8 +295557,6 @@ }, "description": "42223, Chemikalienlabor (ohne Fenster)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.222C", "maps": [], @@ -313679,8 +295589,6 @@ }, "description": "42225, Lager (ohne Fenster)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.222E", "maps": [], @@ -313713,8 +295621,6 @@ }, "description": "42227, R\u00f6ntgen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.222G", "maps": [], @@ -313747,8 +295653,6 @@ }, "description": "42231, Chemielabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.223A", "maps": [], @@ -313781,8 +295685,6 @@ }, "description": "42232, Arbeitsraum/mit Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.223B", "maps": [], @@ -313815,8 +295717,6 @@ }, "description": "42233, Arbeitsraum/mit Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.223C", "maps": [], @@ -313849,8 +295749,6 @@ }, "description": "42234, Chemielabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.223D", "maps": [], @@ -313883,8 +295781,6 @@ }, "description": "42235, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.223E", "maps": [], @@ -313917,8 +295813,6 @@ }, "description": "42236, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.223F", "maps": [], @@ -313951,8 +295845,6 @@ }, "description": "42237, Chemielabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.223G", "maps": [], @@ -313985,8 +295877,6 @@ }, "description": "42238, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.223H", "maps": [], @@ -314019,8 +295909,6 @@ }, "description": "42239, B\u00fcro / Vermietung BTA/LGA", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.223J", "maps": [], @@ -314053,8 +295941,6 @@ }, "description": "42240, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.224A", "maps": [], @@ -314087,8 +295973,6 @@ }, "description": "42241, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.224B", "maps": [], @@ -314121,8 +296005,6 @@ }, "description": "42242, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.224C", "maps": [], @@ -314155,8 +296037,6 @@ }, "description": "42243, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.224D", "maps": [], @@ -314189,8 +296069,6 @@ }, "description": "42301, FL\u00dcSSIGKEITS-CHROMATOGRAFIE", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.230A", "maps": [], @@ -314223,8 +296101,6 @@ }, "description": "42302, Arbeitsraum/ohne Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.230B", "maps": [], @@ -314257,8 +296133,6 @@ }, "description": "42303, Arbeitsraum/mit Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.230C", "maps": [], @@ -314291,8 +296165,6 @@ }, "description": "42304, Arbeitsraum/ohne Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.230D", "maps": [], @@ -314325,8 +296197,6 @@ }, "description": "42305, Arbeitsraum/ohne Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.230E", "maps": [], @@ -314359,8 +296229,6 @@ }, "description": "42306, \u00dcbungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.230F", "maps": [], @@ -314393,8 +296261,6 @@ }, "description": "42308, Bibliothek", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.230H", "maps": [], @@ -314427,8 +296293,6 @@ }, "description": "42309, Arbeitsraum/ohne Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.230J", "maps": [], @@ -314461,8 +296325,6 @@ }, "description": "42312, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.231J", "maps": [], @@ -314495,8 +296357,6 @@ }, "description": "42310, Arbeitsraum/mit Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.231K", "maps": [], @@ -314529,8 +296389,6 @@ }, "description": "42401, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.240A", "maps": [], @@ -314563,8 +296421,6 @@ }, "description": "42402, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.240B", "maps": [], @@ -314597,8 +296453,6 @@ }, "description": "42403, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.240C", "maps": [], @@ -314631,8 +296485,6 @@ }, "description": "42404, Isotopenlabor CH", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.240D", "maps": [], @@ -314665,8 +296517,6 @@ }, "description": "42405, Isotopenlabor CH", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.240E", "maps": [], @@ -314699,8 +296549,6 @@ }, "description": "42406, Isotopenlabor CH", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.240F", "maps": [], @@ -314733,8 +296581,6 @@ }, "description": "42407, Isotopenlabor CH", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.240G", "maps": [], @@ -314767,8 +296613,6 @@ }, "description": "42409, Umkleide mit Schleusenfunktion", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.240J", "maps": [], @@ -314801,8 +296645,6 @@ }, "description": "42410, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.241A", "maps": [], @@ -314835,8 +296677,6 @@ }, "description": "42415, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.241E", "maps": [], @@ -314869,8 +296709,6 @@ }, "description": "42417, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.241G", "maps": [], @@ -314903,8 +296741,6 @@ }, "description": "42419, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.241J", "maps": [], @@ -314937,8 +296773,6 @@ }, "description": "42421, Isotopenlabor CH", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.242A", "maps": [], @@ -314971,8 +296805,6 @@ }, "description": "42423, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.242C", "maps": [], @@ -315005,8 +296837,6 @@ }, "description": "42424, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.242D", "maps": [], @@ -315039,8 +296869,6 @@ }, "description": "42426, R\u00e4ume, radioakt. Stoffe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.242F", "maps": [], @@ -315073,8 +296901,6 @@ }, "description": "42428, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.242H", "maps": [], @@ -315107,8 +296933,6 @@ }, "description": "42430, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.243A", "maps": [], @@ -315141,8 +296965,6 @@ }, "description": "42432, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.243B", "maps": [], @@ -315175,8 +296997,6 @@ }, "description": "42434, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.243D", "maps": [], @@ -315209,8 +297029,6 @@ }, "description": "42433, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5402.03.243E", "maps": [], @@ -315243,8 +297061,6 @@ }, "description": "52001, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.200A", "maps": [], @@ -315277,8 +297093,6 @@ }, "description": "52003, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.200B", "maps": [], @@ -315311,8 +297125,6 @@ }, "description": "52005, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.200C", "maps": [], @@ -315345,8 +297157,6 @@ }, "description": "52007, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.200D", "maps": [], @@ -315379,8 +297189,6 @@ }, "description": "52008, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.200E", "maps": [], @@ -315413,8 +297221,6 @@ }, "description": "52009, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.200F", "maps": [], @@ -315447,8 +297253,6 @@ }, "description": "52002, WC-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.200H", "maps": [], @@ -315481,8 +297285,6 @@ }, "description": "52004, WC-Damen Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.200I", "maps": [], @@ -315515,8 +297317,6 @@ }, "description": "52006, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.200J", "maps": [], @@ -315549,8 +297349,6 @@ }, "description": "52010, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.201A", "maps": [], @@ -315583,8 +297381,6 @@ }, "description": "52011, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.201B", "maps": [], @@ -315617,8 +297413,6 @@ }, "description": "52012, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.201C", "maps": [], @@ -315651,8 +297445,6 @@ }, "description": "52013, Halle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.201D", "maps": [], @@ -315685,8 +297477,6 @@ }, "description": "52014, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.201E", "maps": [], @@ -315719,8 +297509,6 @@ }, "description": "52015, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.201F", "maps": [], @@ -315753,8 +297541,6 @@ }, "description": "52016, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.201G", "maps": [], @@ -315787,8 +297573,6 @@ }, "description": "52017, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.201H", "maps": [], @@ -315821,8 +297605,6 @@ }, "description": "52018, Weg", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.201J", "maps": [], @@ -315855,8 +297637,6 @@ }, "description": "52019, Weg", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.201K", "maps": [], @@ -315889,8 +297669,6 @@ }, "description": "52020, Weg", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.202A", "maps": [], @@ -315923,8 +297701,6 @@ }, "description": "52021, Weg", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.202B", "maps": [], @@ -315957,8 +297733,6 @@ }, "description": "52023, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.202C", "maps": [], @@ -315991,8 +297765,6 @@ }, "description": "52025, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.208A", "maps": [], @@ -316025,8 +297797,6 @@ }, "description": "52026, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.208B", "maps": [], @@ -316059,8 +297829,6 @@ }, "description": "52027, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.208C", "maps": [], @@ -316093,8 +297861,6 @@ }, "description": "52028, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.208D", "maps": [], @@ -316127,8 +297893,6 @@ }, "description": "52029, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.208E", "maps": [], @@ -316161,8 +297925,6 @@ }, "description": "52030, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.208F", "maps": [], @@ -316195,8 +297957,6 @@ }, "description": "52101, Aufenthalt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.210A", "maps": [], @@ -316229,8 +297989,6 @@ }, "description": "52103, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.210C", "maps": [], @@ -316263,8 +298021,6 @@ }, "description": "52104, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.210D", "maps": [], @@ -316297,8 +298053,6 @@ }, "description": "52105, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.210E", "maps": [], @@ -316331,8 +298085,6 @@ }, "description": "52106, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.210F", "maps": [], @@ -316365,8 +298117,6 @@ }, "description": "52107, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.210G", "maps": [], @@ -316399,8 +298149,6 @@ }, "description": "52108, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.210H", "maps": [], @@ -316433,8 +298181,6 @@ }, "description": "52111, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.211A", "maps": [], @@ -316467,8 +298213,6 @@ }, "description": "52112, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.211B", "maps": [], @@ -316501,8 +298245,6 @@ }, "description": "52113, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.211C", "maps": [], @@ -316535,8 +298277,6 @@ }, "description": "52114, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.211D", "maps": [], @@ -316569,8 +298309,6 @@ }, "description": "52110, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.211K", "maps": [], @@ -316603,8 +298341,6 @@ }, "description": "52201, Labor mit bes. lufttechn. Anforderungen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.220A", "maps": [], @@ -316637,8 +298373,6 @@ }, "description": "52203, Labor mit bes. lufttechn. Anforderungen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.220C", "maps": [], @@ -316671,8 +298405,6 @@ }, "description": "52205, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.220E", "maps": [], @@ -316705,8 +298437,6 @@ }, "description": "52207, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.220G", "maps": [], @@ -316739,8 +298469,6 @@ }, "description": "52208, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.220H", "maps": [], @@ -316773,8 +298501,6 @@ }, "description": "52212, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.221B", "maps": [], @@ -316807,8 +298533,6 @@ }, "description": "52214, Labor mit bes. lufttechn. Anforderungen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.221D", "maps": [], @@ -316841,8 +298565,6 @@ }, "description": "52216, Phys. Messraum m. bes. lufttechn. Anford.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.221F", "maps": [], @@ -316875,8 +298597,6 @@ }, "description": "52218, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.221H", "maps": [], @@ -316909,8 +298629,6 @@ }, "description": "52219, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.221J", "maps": [], @@ -316943,8 +298661,6 @@ }, "description": "52210, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.221K", "maps": [], @@ -316977,8 +298693,6 @@ }, "description": "52221, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.222A", "maps": [], @@ -317011,8 +298725,6 @@ }, "description": "52222, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.222B", "maps": [], @@ -317045,8 +298757,6 @@ }, "description": "52224, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.222D", "maps": [], @@ -317079,8 +298789,6 @@ }, "description": "52226, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.222F", "maps": [], @@ -317113,8 +298821,6 @@ }, "description": "52228, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.222H", "maps": [], @@ -317147,8 +298853,6 @@ }, "description": "52220, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.222K", "maps": [], @@ -317181,8 +298885,6 @@ }, "description": "52230, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.223A", "maps": [], @@ -317215,8 +298917,6 @@ }, "description": "52231, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.223B", "maps": [], @@ -317249,8 +298949,6 @@ }, "description": "52301, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.230A", "maps": [], @@ -317283,8 +298981,6 @@ }, "description": "52302, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.230B", "maps": [], @@ -317317,8 +299013,6 @@ }, "description": "52303, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.230C", "maps": [], @@ -317351,8 +299045,6 @@ }, "description": "52305, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.230E", "maps": [], @@ -317385,8 +299077,6 @@ }, "description": "52306, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.230F", "maps": [], @@ -317419,8 +299109,6 @@ }, "description": "52308, B\u00fcro Pressestelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.230H", "maps": [], @@ -317453,8 +299141,6 @@ }, "description": "52309, B\u00fcro Pressestelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.230J", "maps": [], @@ -317487,8 +299173,6 @@ }, "description": "52311, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.231A", "maps": [], @@ -317521,8 +299205,6 @@ }, "description": "52312, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.231B", "maps": [], @@ -317555,8 +299237,6 @@ }, "description": "52310, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.231K", "maps": [], @@ -317589,8 +299269,6 @@ }, "description": "52401, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.240A", "maps": [], @@ -317623,8 +299301,6 @@ }, "description": "52402, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.240B", "maps": [], @@ -317657,8 +299333,6 @@ }, "description": "52404, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.240D", "maps": [], @@ -317691,8 +299365,6 @@ }, "description": "52405, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.240E", "maps": [], @@ -317725,8 +299397,6 @@ }, "description": "52408, Messraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.240H", "maps": [], @@ -317759,8 +299429,6 @@ }, "description": "52412, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.241B", "maps": [], @@ -317793,8 +299461,6 @@ }, "description": "52413, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.241C", "maps": [], @@ -317827,8 +299493,6 @@ }, "description": "52414, K\u00fchlraum f\u00fcr wiss.techn. Zwecke", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.241D", "maps": [], @@ -317861,8 +299525,6 @@ }, "description": "52415, K\u00fchlraum f\u00fcr wiss.techn. Zwecke", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.241E", "maps": [], @@ -317895,8 +299557,6 @@ }, "description": "52417, Phys. Messraum m. bes. lufttechn. Anford.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.241G", "maps": [], @@ -317929,8 +299589,6 @@ }, "description": "52418, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.241H", "maps": [], @@ -317963,8 +299621,6 @@ }, "description": "52410, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.241K", "maps": [], @@ -317997,8 +299653,6 @@ }, "description": "52416, Schleuse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.241L", "maps": [], @@ -318031,8 +299685,6 @@ }, "description": "52422, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.242A", "maps": [], @@ -318065,8 +299717,6 @@ }, "description": "52428, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.242B", "maps": [], @@ -318099,8 +299749,6 @@ }, "description": "52424, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.242D", "maps": [], @@ -318133,8 +299781,6 @@ }, "description": "52427, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.242G", "maps": [], @@ -318167,8 +299813,6 @@ }, "description": "52429, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.242J", "maps": [], @@ -318201,8 +299845,6 @@ }, "description": "52420, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.242K", "maps": [], @@ -318235,8 +299877,6 @@ }, "description": "52431, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.243A", "maps": [], @@ -318269,8 +299909,6 @@ }, "description": "52432, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5402.04.243B", "maps": [], @@ -318303,8 +299941,6 @@ }, "description": "62001, NIP II", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.200A", "maps": [], @@ -318337,8 +299973,6 @@ }, "description": "62003, ZBV ELT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.200B", "maps": [], @@ -318371,8 +300005,6 @@ }, "description": "62002, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.200C", "maps": [], @@ -318405,8 +300037,6 @@ }, "description": "62005, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.200D", "maps": [], @@ -318439,8 +300069,6 @@ }, "description": "62007, Schacht 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.200E", "maps": [], @@ -318473,8 +300101,6 @@ }, "description": "62006, Schacht 2a", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.200F", "maps": [], @@ -318507,8 +300133,6 @@ }, "description": "62009, Schacht 2b", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.200G", "maps": [], @@ -318541,8 +300165,6 @@ }, "description": "62002A, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.200H", "maps": [], @@ -318575,8 +300197,6 @@ }, "description": "62004, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.200I", "maps": [], @@ -318609,8 +300229,6 @@ }, "description": "62010, Schacht 2c", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.201A", "maps": [], @@ -318643,8 +300261,6 @@ }, "description": "62011, Schacht 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.201B", "maps": [], @@ -318677,8 +300293,6 @@ }, "description": "62012, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.201C", "maps": [], @@ -318711,8 +300325,6 @@ }, "description": "62013, Halle/Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.201D", "maps": [], @@ -318745,8 +300357,6 @@ }, "description": "62014, Aufz\u00fcge", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.201E", "maps": [], @@ -318779,8 +300389,6 @@ }, "description": "62015, Schacht 4a", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.201F", "maps": [], @@ -318813,8 +300421,6 @@ }, "description": "62016, Schacht 4b", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.201G", "maps": [], @@ -318847,8 +300453,6 @@ }, "description": "62017, Schacht 4c", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.201H", "maps": [], @@ -318881,8 +300485,6 @@ }, "description": "62018, Fluchtbalkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.201J", "maps": [], @@ -318915,8 +300517,6 @@ }, "description": "62019, Fluchtbalkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.201K", "maps": [], @@ -318949,8 +300549,6 @@ }, "description": "62022, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.201L", "maps": [], @@ -318983,8 +300581,6 @@ }, "description": "62023, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.201M", "maps": [], @@ -319017,8 +300613,6 @@ }, "description": "62020, Fluchtbalkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.202A", "maps": [], @@ -319051,8 +300645,6 @@ }, "description": "62021, Fluchtbalkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.202B", "maps": [], @@ -319085,8 +300677,6 @@ }, "description": "62025, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.208A", "maps": [], @@ -319119,8 +300709,6 @@ }, "description": "62030, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.208F", "maps": [], @@ -319153,8 +300741,6 @@ }, "description": "62101, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.210A", "maps": [], @@ -319187,8 +300773,6 @@ }, "description": "62102, Besprechung/Kommunikation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.210B", "maps": [], @@ -319221,8 +300805,6 @@ }, "description": "62103, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.210C", "maps": [], @@ -319255,8 +300837,6 @@ }, "description": "62104, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.210D", "maps": [], @@ -319289,8 +300869,6 @@ }, "description": "62105, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.210E", "maps": [], @@ -319323,8 +300901,6 @@ }, "description": "62106, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.210F", "maps": [], @@ -319357,8 +300933,6 @@ }, "description": "62107, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.210G", "maps": [], @@ -319391,8 +300965,6 @@ }, "description": "62114, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.210N", "maps": [], @@ -319425,8 +300997,6 @@ }, "description": "62201, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.220A", "maps": [], @@ -319459,8 +301029,6 @@ }, "description": "62202, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.220B", "maps": [], @@ -319493,8 +301061,6 @@ }, "description": "62203, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.220C", "maps": [], @@ -319527,8 +301093,6 @@ }, "description": "62204, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.220D", "maps": [], @@ -319561,8 +301125,6 @@ }, "description": "62205, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.220E", "maps": [], @@ -319595,8 +301157,6 @@ }, "description": "62206, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.220G", "maps": [], @@ -319629,8 +301189,6 @@ }, "description": "62231, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.223B", "maps": [], @@ -319663,8 +301221,6 @@ }, "description": "62301, Kommunikationsbereich", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.230A", "maps": [], @@ -319697,8 +301253,6 @@ }, "description": "62302, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.230B", "maps": [], @@ -319731,8 +301285,6 @@ }, "description": "62303, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.230C", "maps": [], @@ -319765,8 +301317,6 @@ }, "description": "62304, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.230D", "maps": [], @@ -319799,8 +301349,6 @@ }, "description": "62305, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.230E", "maps": [], @@ -319833,8 +301381,6 @@ }, "description": "62306, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.230F", "maps": [], @@ -319867,8 +301413,6 @@ }, "description": "62308, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.230G", "maps": [], @@ -319901,8 +301445,6 @@ }, "description": "62312, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.231B", "maps": [], @@ -319935,8 +301477,6 @@ }, "description": "62401, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.240A", "maps": [], @@ -319969,8 +301509,6 @@ }, "description": "62402, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.240B", "maps": [], @@ -320003,8 +301541,6 @@ }, "description": "62403, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.240C", "maps": [], @@ -320037,8 +301573,6 @@ }, "description": "62404, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.240D", "maps": [], @@ -320071,8 +301605,6 @@ }, "description": "62405, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.240E", "maps": [], @@ -320105,8 +301637,6 @@ }, "description": "62406, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.240F", "maps": [], @@ -320139,8 +301669,6 @@ }, "description": "62432, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.243B", "maps": [], @@ -320173,8 +301701,6 @@ }, "description": "62801, ELT 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.280A", "maps": [], @@ -320207,8 +301733,6 @@ }, "description": "62802, ELT 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.280B", "maps": [], @@ -320241,8 +301765,6 @@ }, "description": "62803, ELT 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.280C", "maps": [], @@ -320275,8 +301797,6 @@ }, "description": "62804, ELT 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.280D", "maps": [], @@ -320309,8 +301829,6 @@ }, "description": "62805, ELT 5", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.280E", "maps": [], @@ -320343,8 +301861,6 @@ }, "description": "62806, ELT 6", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.280F", "maps": [], @@ -320377,8 +301893,6 @@ }, "description": "62807, ELT 7", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.280G", "maps": [], @@ -320411,8 +301925,6 @@ }, "description": "62808, ELT 8", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.280H", "maps": [], @@ -320445,8 +301957,6 @@ }, "description": "62809, ELT 9", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.280I", "maps": [], @@ -320479,8 +301989,6 @@ }, "description": "62810, ELT 10", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.280J", "maps": [], @@ -320513,8 +302021,6 @@ }, "description": "62811, ELT 11", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.280K", "maps": [], @@ -320547,8 +302053,6 @@ }, "description": "62812, ELT 12", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.280L", "maps": [], @@ -320581,8 +302085,6 @@ }, "description": "62813, ELT 13", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.280M", "maps": [], @@ -320615,8 +302117,6 @@ }, "description": "62814, ELT 14", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5402.05.280N", "maps": [], @@ -320649,8 +302149,6 @@ }, "description": "72001, Abluftzentrale 1. Ebene", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "5402.06.200A", "maps": [], @@ -320683,8 +302181,6 @@ }, "description": "72004, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "5402.06.200B", "maps": [], @@ -320717,8 +302213,6 @@ }, "description": "72007, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "5402.06.200C", "maps": [], @@ -320751,8 +302245,6 @@ }, "description": "72008, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "5402.06.200D", "maps": [], @@ -320785,8 +302277,6 @@ }, "description": "72009, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "5402.06.200E", "maps": [], @@ -320819,8 +302309,6 @@ }, "description": "72010, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "5402.06.201A", "maps": [], @@ -320853,8 +302341,6 @@ }, "description": "72011, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "5402.06.201B", "maps": [], @@ -320887,8 +302373,6 @@ }, "description": "72014, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "5402.06.201C", "maps": [], @@ -320921,8 +302405,6 @@ }, "description": "72015, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "5402.06.201D", "maps": [], @@ -320955,8 +302437,6 @@ }, "description": "72016, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "5402.06.201E", "maps": [], @@ -320989,8 +302469,6 @@ }, "description": "72017, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "5402.06.201F", "maps": [], @@ -321023,8 +302501,6 @@ }, "description": "82001, Abluftzentrale 2. Ebene", "eexam": null, - "events_end": null, - "events_start": null, "floor": "07", "id": "5402.07.200A", "maps": [], @@ -321057,8 +302533,6 @@ }, "description": "82004, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "07", "id": "5402.07.200B", "maps": [], @@ -321091,8 +302565,6 @@ }, "description": "82008, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "07", "id": "5402.07.200C", "maps": [], @@ -321125,8 +302597,6 @@ }, "description": "82009, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "07", "id": "5402.07.200D", "maps": [], @@ -321159,8 +302629,6 @@ }, "description": "82010, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "07", "id": "5402.07.201A", "maps": [], @@ -321193,8 +302661,6 @@ }, "description": "82014, Aufzugs- und F\u00f6rdermaschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "07", "id": "5402.07.201B", "maps": [], @@ -321227,8 +302693,6 @@ }, "description": "82015, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "07", "id": "5402.07.201C", "maps": [], @@ -321261,8 +302725,6 @@ }, "description": "82016, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "07", "id": "5402.07.201D", "maps": [], @@ -321295,8 +302757,6 @@ }, "description": "82017, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "07", "id": "5402.07.201E", "maps": [], @@ -321329,8 +302789,6 @@ }, "description": "12001, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5402.EG.200A", "maps": [], @@ -321363,8 +302821,6 @@ }, "description": "12002, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5402.EG.200B", "maps": [], @@ -321397,8 +302853,6 @@ }, "description": "12003, Server", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5402.EG.200C", "maps": [], @@ -321431,8 +302885,6 @@ }, "description": "12004, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5402.EG.200D", "maps": [], @@ -321465,8 +302917,6 @@ }, "description": "12005, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5402.EG.200E", "maps": [], @@ -321499,8 +302949,6 @@ }, "description": "12006, NMR", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5402.EG.200F", "maps": [], @@ -321533,8 +302981,6 @@ }, "description": "12007, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5402.EG.200G", "maps": [], @@ -321567,8 +303013,6 @@ }, "description": "12008, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5402.EG.200H", "maps": [], @@ -321601,8 +303045,6 @@ }, "description": "12009, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5402.EG.200J", "maps": [], @@ -321635,8 +303077,6 @@ }, "description": "12010, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5402.EG.201A", "maps": [], @@ -321669,8 +303109,6 @@ }, "description": "12011, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5402.EG.201B", "maps": [], @@ -321703,8 +303141,6 @@ }, "description": "12012, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5402.EG.201C", "maps": [], @@ -321737,8 +303173,6 @@ }, "description": "12013, Halle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5402.EG.201D", "maps": [], @@ -321771,8 +303205,6 @@ }, "description": "12014, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5402.EG.201E", "maps": [], @@ -321805,8 +303237,6 @@ }, "description": "12015, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5402.EG.201F", "maps": [], @@ -321839,8 +303269,6 @@ }, "description": "12016, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5402.EG.201G", "maps": [], @@ -321873,8 +303301,6 @@ }, "description": "12017, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5402.EG.201H", "maps": [], @@ -321907,8 +303333,6 @@ }, "description": "12014A, Personenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5402.EG.201K", "maps": [], @@ -321941,8 +303365,6 @@ }, "description": "12020, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5402.EG.202A", "maps": [], @@ -321975,8 +303397,6 @@ }, "description": "12201, Be- und Entl\u00fcftung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5402.EG.220A", "maps": [], @@ -322009,8 +303429,6 @@ }, "description": "12202, Lager / LM-Ausgabe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5402.EG.220B", "maps": [], @@ -322043,8 +303461,6 @@ }, "description": "12203, Lager / Glasausgabe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5402.EG.220C", "maps": [], @@ -322077,8 +303493,6 @@ }, "description": "12204, Grobmetallwerkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5402.EG.220D", "maps": [], @@ -322111,8 +303525,6 @@ }, "description": "12205, Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5402.EG.220E", "maps": [], @@ -322145,8 +303557,6 @@ }, "description": "12206, Physiklabor (einfach)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5402.EG.220F", "maps": [], @@ -322179,8 +303589,6 @@ }, "description": "12207, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5402.EG.220G", "maps": [], @@ -322213,8 +303621,6 @@ }, "description": "12208, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5402.EG.220H", "maps": [], @@ -322247,8 +303653,6 @@ }, "description": "12209, Installationsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5402.EG.220K", "maps": [], @@ -322281,8 +303685,6 @@ }, "description": "12210, Installationsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5402.EG.220L", "maps": [], @@ -322315,8 +303717,6 @@ }, "description": "12211, Installationsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5402.EG.220M", "maps": [], @@ -322349,8 +303749,6 @@ }, "description": "12212, Installationsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5402.EG.220N", "maps": [], @@ -322383,8 +303781,6 @@ }, "description": "12213, Installationsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5402.EG.220O", "maps": [], @@ -322417,8 +303813,6 @@ }, "description": "12214, Installationsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5402.EG.220Q", "maps": [], @@ -322451,8 +303845,6 @@ }, "description": "12215, Installationsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5402.EG.220R", "maps": [], @@ -322485,8 +303877,6 @@ }, "description": "12301, Physiklabor (einfach)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5402.EG.230A", "maps": [], @@ -322519,8 +303909,6 @@ }, "description": "12302, Physiklabor (einfach)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5402.EG.230B", "maps": [], @@ -322553,8 +303941,6 @@ }, "description": "12020, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5402.EG.230C", "maps": [], @@ -322587,8 +303973,6 @@ }, "description": "12300, NMR-Spektrometer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5402.EG.230D", "maps": [], @@ -322621,8 +304005,6 @@ }, "description": "12304, Verbindungsgang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5402.EG.230E", "maps": [], @@ -322655,8 +304037,6 @@ }, "description": "12401, Be- und Entl\u00fcftung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5402.EG.240A", "maps": [], @@ -322689,8 +304069,6 @@ }, "description": "12402, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5402.EG.240B", "maps": [], @@ -322723,8 +304101,6 @@ }, "description": "12403, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5402.EG.240C", "maps": [], @@ -322757,8 +304133,6 @@ }, "description": "12404, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5402.EG.240D", "maps": [], @@ -322791,8 +304165,6 @@ }, "description": "12405, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5402.EG.240E", "maps": [], @@ -322825,8 +304197,6 @@ }, "description": "12406, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5402.EG.240F", "maps": [], @@ -322859,8 +304229,6 @@ }, "description": "12408A, Wasserversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5402.EG.240G", "maps": [], @@ -322893,8 +304261,6 @@ }, "description": "12408, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5402.EG.240H", "maps": [], @@ -322927,8 +304293,6 @@ }, "description": "12409, Praktikum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5402.EG.240J", "maps": [], @@ -322961,8 +304325,6 @@ }, "description": "12410, Vorbereitungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5402.EG.241A", "maps": [], @@ -322995,8 +304357,6 @@ }, "description": "12411, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5402.EG.241B", "maps": [], @@ -323029,8 +304389,6 @@ }, "description": "12420, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5402.EG.242A", "maps": [], @@ -323063,8 +304421,6 @@ }, "description": "12421, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5402.EG.242B", "maps": [], @@ -323097,8 +304453,6 @@ }, "description": "23001, WC-Damen Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5403.01.300A", "maps": [], @@ -323131,8 +304485,6 @@ }, "description": "23002, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5403.01.300B", "maps": [], @@ -323165,8 +304517,6 @@ }, "description": "23004, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5403.01.300C", "maps": [], @@ -323199,8 +304549,6 @@ }, "description": "23003, WC-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5403.01.300D", "maps": [], @@ -323233,8 +304581,6 @@ }, "description": "23005, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5403.01.300E", "maps": [], @@ -323267,8 +304613,6 @@ }, "description": "23006, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5403.01.300F", "maps": [], @@ -323301,8 +304645,6 @@ }, "description": "23007, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5403.01.300G", "maps": [], @@ -323335,8 +304677,6 @@ }, "description": "23008, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5403.01.300H", "maps": [], @@ -323369,8 +304709,6 @@ }, "description": "23009, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5403.01.300J", "maps": [], @@ -323403,8 +304741,6 @@ }, "description": "23010, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5403.01.301A", "maps": [], @@ -323437,8 +304773,6 @@ }, "description": "23011, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5403.01.301B", "maps": [], @@ -323471,8 +304805,6 @@ }, "description": "23012, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5403.01.301C", "maps": [], @@ -323505,8 +304837,6 @@ }, "description": "23013, Halle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5403.01.301D", "maps": [], @@ -323539,8 +304869,6 @@ }, "description": "23014, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5403.01.301E", "maps": [], @@ -323573,8 +304901,6 @@ }, "description": "23015, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5403.01.301F", "maps": [], @@ -323607,8 +304933,6 @@ }, "description": "23016, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5403.01.301G", "maps": [], @@ -323641,8 +304965,6 @@ }, "description": "23017, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5403.01.301H", "maps": [], @@ -323675,8 +304997,6 @@ }, "description": "23018, Fluchtweg", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5403.01.301J", "maps": [], @@ -323709,8 +305029,6 @@ }, "description": "23019, Fluchtweg", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5403.01.301K", "maps": [], @@ -323743,8 +305061,6 @@ }, "description": "23013, Sonderm\u00fcllzwischenlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5403.01.301L", "maps": [], @@ -323777,8 +305093,6 @@ }, "description": "23101, Forschung m.fest.Arbeitspl.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5403.01.310A", "maps": [], @@ -323811,8 +305125,6 @@ }, "description": "23103, Chemielabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5403.01.310C", "maps": [], @@ -323845,8 +305157,6 @@ }, "description": "23104, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5403.01.310D", "maps": [], @@ -323879,8 +305189,6 @@ }, "description": "23105, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5403.01.310E", "maps": [], @@ -323913,8 +305221,6 @@ }, "description": "23107, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5403.01.310F", "maps": [], @@ -323947,8 +305253,6 @@ }, "description": "23201, Arbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5403.01.320A", "maps": [], @@ -323981,8 +305285,6 @@ }, "description": "23202, Chemielabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5403.01.320B", "maps": [], @@ -324015,8 +305317,6 @@ }, "description": "23205, Chemielabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5403.01.320E", "maps": [], @@ -324049,8 +305349,6 @@ }, "description": "23207, Reologie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5403.01.320F", "maps": [], @@ -324083,8 +305381,6 @@ }, "description": "23208, Chemielabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5403.01.320H", "maps": [], @@ -324117,8 +305413,6 @@ }, "description": "23209, Chemielabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5403.01.320J", "maps": [], @@ -324151,8 +305445,6 @@ }, "description": "23211, Aufenthalt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5403.01.321A", "maps": [], @@ -324185,8 +305477,6 @@ }, "description": "23212, Chemielabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5403.01.321B", "maps": [], @@ -324219,8 +305509,6 @@ }, "description": "23215, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5403.01.321E", "maps": [], @@ -324253,8 +305541,6 @@ }, "description": "23301, Chemielabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5403.01.330A", "maps": [], @@ -324287,8 +305573,6 @@ }, "description": "23302, Labor f\u00fcr chemische Arbeitsweisen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5403.01.330B", "maps": [], @@ -324321,8 +305605,6 @@ }, "description": "23303, Praktikum m. fest. Arbeitspl.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5403.01.330C", "maps": [], @@ -324355,8 +305637,6 @@ }, "description": "23306, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5403.01.330D", "maps": [], @@ -324389,8 +305669,6 @@ }, "description": "23401, \u00dcbungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5403.01.340A", "maps": [], @@ -324423,8 +305701,6 @@ }, "description": "23402, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5403.01.340B", "maps": [], @@ -324457,8 +305733,6 @@ }, "description": "23403, Phys./Techn. \u00dcbungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5403.01.340C", "maps": [], @@ -324491,8 +305765,6 @@ }, "description": "23408, Pr\u00fcf.-Disput.-R./Em.Schlag", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5403.01.340H", "maps": [], @@ -324525,8 +305797,6 @@ }, "description": "23409, Praktikum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5403.01.340J", "maps": [], @@ -324559,8 +305829,6 @@ }, "description": "23406, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5403.01.340K", "maps": [], @@ -324593,8 +305861,6 @@ }, "description": "23407, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5403.01.340L", "maps": [], @@ -324627,8 +305893,6 @@ }, "description": "23411, Phys./Techn. \u00dcbungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5403.01.341A", "maps": [], @@ -324661,8 +305925,6 @@ }, "description": "33001, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.300A", "maps": [], @@ -324695,8 +305957,6 @@ }, "description": "33003, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.300B", "maps": [], @@ -324729,8 +305989,6 @@ }, "description": "33005, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.300C", "maps": [], @@ -324763,8 +306021,6 @@ }, "description": "33007, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.300D", "maps": [], @@ -324797,8 +306053,6 @@ }, "description": "33008, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.300E", "maps": [], @@ -324831,8 +306085,6 @@ }, "description": "33009, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.300F", "maps": [], @@ -324865,8 +306117,6 @@ }, "description": "33010, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.301A", "maps": [], @@ -324899,8 +306149,6 @@ }, "description": "33011, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.301B", "maps": [], @@ -324933,8 +306181,6 @@ }, "description": "33012, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.301C", "maps": [], @@ -324967,8 +306213,6 @@ }, "description": "33013, Halle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.301D", "maps": [], @@ -325001,8 +306245,6 @@ }, "description": "33014, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.301E", "maps": [], @@ -325035,8 +306277,6 @@ }, "description": "33015, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.301F", "maps": [], @@ -325069,8 +306309,6 @@ }, "description": "33016, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.301G", "maps": [], @@ -325103,8 +306341,6 @@ }, "description": "33017, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.301H", "maps": [], @@ -325137,8 +306373,6 @@ }, "description": "33018, Fluchtweg", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.301J", "maps": [], @@ -325171,8 +306405,6 @@ }, "description": "33019, Fluchtweg", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.301K", "maps": [], @@ -325205,8 +306437,6 @@ }, "description": "33013, Sonderm\u00fcllzwischenlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.301L", "maps": [], @@ -325239,8 +306469,6 @@ }, "description": "33020, Fluchtweg", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.302A", "maps": [], @@ -325273,8 +306501,6 @@ }, "description": "33021, Fluchtweg", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.302B", "maps": [], @@ -325307,8 +306533,6 @@ }, "description": "33101, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.310A", "maps": [], @@ -325341,8 +306565,6 @@ }, "description": "33103, Arbeitsraum mit Besprechungsgruppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.310C", "maps": [], @@ -325375,8 +306597,6 @@ }, "description": "33104, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.310D", "maps": [], @@ -325409,8 +306629,6 @@ }, "description": "33105, Sitzungs-, Konferenzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.310E", "maps": [], @@ -325443,8 +306661,6 @@ }, "description": "33106, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.310F", "maps": [], @@ -325477,8 +306693,6 @@ }, "description": "33107, Phys. Messraum mit lufttechn. Anf.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.310G", "maps": [], @@ -325511,8 +306725,6 @@ }, "description": "33108, Phys. Messraum mit lufttechn. Anf.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.310H", "maps": [], @@ -325545,8 +306757,6 @@ }, "description": "33111, Phys. Messraum mit lufttechn. Anf.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.311A", "maps": [], @@ -325579,8 +306789,6 @@ }, "description": "33112, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.311B", "maps": [], @@ -325613,8 +306821,6 @@ }, "description": "33110, Phys. Messraum mit lufttechn. Anf.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.311K", "maps": [], @@ -325679,8 +306885,6 @@ }, "description": "33202, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.320B", "maps": [], @@ -325713,8 +306917,6 @@ }, "description": "33204, Arbeitsraum mit Besprechungsgruppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.320D", "maps": [], @@ -325747,8 +306949,6 @@ }, "description": "33206, B\u00fcro mit Archivfunktion", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.320F", "maps": [], @@ -325781,8 +306981,6 @@ }, "description": "33207, B\u00fcro mit Archivfunktion", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.320G", "maps": [], @@ -325815,8 +307013,6 @@ }, "description": "33208, LRZ-Verteilerknoten", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.320H", "maps": [], @@ -325849,8 +307045,6 @@ }, "description": "33209, Biochemisches Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.320I", "maps": [], @@ -325883,8 +307077,6 @@ }, "description": "33210, Biochemisches Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.321A", "maps": [], @@ -325917,8 +307109,6 @@ }, "description": "33212, Biochemisches Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.321B", "maps": [], @@ -325951,8 +307141,6 @@ }, "description": "33214, Biochemisches Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.321D", "maps": [], @@ -325985,8 +307173,6 @@ }, "description": "33218, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.321H", "maps": [], @@ -326019,8 +307205,6 @@ }, "description": "33219, Druckerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.321I", "maps": [], @@ -326053,8 +307237,6 @@ }, "description": "33220, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.321K", "maps": [], @@ -326087,8 +307269,6 @@ }, "description": "33221, Lichtschleuse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.321L", "maps": [], @@ -326121,8 +307301,6 @@ }, "description": "33222, Proteinbiochemie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.322B", "maps": [], @@ -326155,8 +307333,6 @@ }, "description": "33226, Auswertung NMR Experimente, Strukturrechnun", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.322F", "maps": [], @@ -326189,8 +307365,6 @@ }, "description": "33227, Auswertung NMR Experimente, Strukturrechnun", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.322G", "maps": [], @@ -326223,8 +307397,6 @@ }, "description": "33228, Auswertung NMR Experimente, Strukturrechnun", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.322H", "maps": [], @@ -326257,8 +307429,6 @@ }, "description": "33230, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.323A", "maps": [], @@ -326291,8 +307461,6 @@ }, "description": "33231, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.323B", "maps": [], @@ -326325,8 +307493,6 @@ }, "description": "33301, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.330A", "maps": [], @@ -326359,8 +307525,6 @@ }, "description": "33302, B\u00fcro mit exp. Arbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.330B", "maps": [], @@ -326393,8 +307557,6 @@ }, "description": "33303, B\u00fcro mit exp. Arbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.330C", "maps": [], @@ -326427,8 +307589,6 @@ }, "description": "33304, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.330D", "maps": [], @@ -326461,8 +307621,6 @@ }, "description": "33305, Elektronische Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.330E", "maps": [], @@ -326495,8 +307653,6 @@ }, "description": "33306, Elektronische Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.330F", "maps": [], @@ -326529,8 +307685,6 @@ }, "description": "33308, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.330H", "maps": [], @@ -326563,8 +307717,6 @@ }, "description": "33309, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.330J", "maps": [], @@ -326597,8 +307749,6 @@ }, "description": "33203, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.330M", "maps": [], @@ -326631,8 +307781,6 @@ }, "description": "33311, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.331A", "maps": [], @@ -326665,8 +307813,6 @@ }, "description": "33312, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.331B", "maps": [], @@ -326699,8 +307845,6 @@ }, "description": "33310, Arbeitsraum ohne Besprechungsgruppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.331K", "maps": [], @@ -326733,8 +307877,6 @@ }, "description": "33401, B\u00fcro mit exp. Arbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.340A", "maps": [], @@ -326767,8 +307909,6 @@ }, "description": "33402, B\u00fcro mit exp. Arbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.340B", "maps": [], @@ -326801,8 +307941,6 @@ }, "description": "33403, B\u00fcro mit exp. Arbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.340C", "maps": [], @@ -326835,8 +307973,6 @@ }, "description": "33404, B\u00fcro mit exp. Arbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.340D", "maps": [], @@ -326869,8 +308005,6 @@ }, "description": "33405, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.340E", "maps": [], @@ -326903,8 +308037,6 @@ }, "description": "33409, Dusche, auch Gruppen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.340K", "maps": [], @@ -326937,8 +308069,6 @@ }, "description": "33408, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.340L", "maps": [], @@ -326971,8 +308101,6 @@ }, "description": "33412, ADV-Kleinrechneranlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.341B", "maps": [], @@ -327005,8 +308133,6 @@ }, "description": "33414/33418, Phys. Messraum mit lufttechn. Anf.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.341D", "maps": [], @@ -327039,8 +308165,6 @@ }, "description": "33410, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.341K", "maps": [], @@ -327073,8 +308197,6 @@ }, "description": "33429, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.342A", "maps": [], @@ -327107,8 +308229,6 @@ }, "description": "33422, B\u00fcro mit exp. Arbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.342B", "maps": [], @@ -327141,8 +308261,6 @@ }, "description": "33423, B\u00fcro mit exp. Arbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.342C", "maps": [], @@ -327175,8 +308293,6 @@ }, "description": "33424, B\u00fcro mit exp. Arbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.342D", "maps": [], @@ -327209,8 +308325,6 @@ }, "description": "33425, Phys. Messraum mit lufttechn. Anf.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.342E", "maps": [], @@ -327243,8 +308357,6 @@ }, "description": "33430, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5403.02.343A", "maps": [], @@ -327277,8 +308389,6 @@ }, "description": "43001, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.300A", "maps": [], @@ -327311,8 +308421,6 @@ }, "description": "43003, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.300B", "maps": [], @@ -327345,8 +308453,6 @@ }, "description": "43005, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.300C", "maps": [], @@ -327379,8 +308485,6 @@ }, "description": "43007, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.300D", "maps": [], @@ -327413,8 +308517,6 @@ }, "description": "43008, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.300E", "maps": [], @@ -327447,8 +308549,6 @@ }, "description": "43009, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.300F", "maps": [], @@ -327481,8 +308581,6 @@ }, "description": "43010, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.301A", "maps": [], @@ -327515,8 +308613,6 @@ }, "description": "43011, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.301B", "maps": [], @@ -327549,8 +308645,6 @@ }, "description": "43012, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.301C", "maps": [], @@ -327583,8 +308677,6 @@ }, "description": "43013, Halle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.301D", "maps": [], @@ -327617,8 +308709,6 @@ }, "description": "43014, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.301E", "maps": [], @@ -327651,8 +308741,6 @@ }, "description": "43015, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.301F", "maps": [], @@ -327685,8 +308773,6 @@ }, "description": "43016, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.301G", "maps": [], @@ -327719,8 +308805,6 @@ }, "description": "43017, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.301H", "maps": [], @@ -327753,8 +308837,6 @@ }, "description": "43018, Fluchtweg", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.301J", "maps": [], @@ -327787,8 +308869,6 @@ }, "description": "43019, Fluchtweg", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.301K", "maps": [], @@ -327821,8 +308901,6 @@ }, "description": "43013, Sonderm\u00fcllzwischenlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.301L", "maps": [], @@ -327855,8 +308933,6 @@ }, "description": "43020, Fluchtweg", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.302A", "maps": [], @@ -327889,8 +308965,6 @@ }, "description": "43021, Fluchtweg", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.302B", "maps": [], @@ -327923,8 +308997,6 @@ }, "description": "43101, \u00dcbungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.310A", "maps": [], @@ -327957,8 +309029,6 @@ }, "description": "43103, Arbeitsraum mit exp. Arbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.310C", "maps": [], @@ -327991,8 +309061,6 @@ }, "description": "43104, Arbeitsraum ohne Besprechungsgruppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.310D", "maps": [], @@ -328025,8 +309093,6 @@ }, "description": "43105, Sitzungs-, Konferenzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.310E", "maps": [], @@ -328059,8 +309125,6 @@ }, "description": "43106, Arbeitsraum mit Besprechungsgruppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.310F", "maps": [], @@ -328093,8 +309157,6 @@ }, "description": "43107, EDV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.310G", "maps": [], @@ -328127,8 +309189,6 @@ }, "description": "43108, Aufenthalt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.310H", "maps": [], @@ -328161,8 +309221,6 @@ }, "description": "43109, B\u00fcro mit exp. Arbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.310J", "maps": [], @@ -328195,8 +309253,6 @@ }, "description": "43110, Phys. Messraum mit lufttechn. Anf.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.311K", "maps": [], @@ -328229,8 +309285,6 @@ }, "description": "43112, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.311L", "maps": [], @@ -328263,8 +309317,6 @@ }, "description": "43201, Physiklabor (einfach)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.320A", "maps": [], @@ -328297,8 +309349,6 @@ }, "description": "43202, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.320B", "maps": [], @@ -328331,8 +309381,6 @@ }, "description": "43203, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.320C", "maps": [], @@ -328365,8 +309413,6 @@ }, "description": "43204, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.320D", "maps": [], @@ -328399,8 +309445,6 @@ }, "description": "43205, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.320E", "maps": [], @@ -328433,8 +309477,6 @@ }, "description": "43206, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.320F", "maps": [], @@ -328467,8 +309509,6 @@ }, "description": "43207, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.320G", "maps": [], @@ -328501,8 +309541,6 @@ }, "description": "43208, Sp\u00fclraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.320H", "maps": [], @@ -328535,8 +309573,6 @@ }, "description": "43212, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.321B", "maps": [], @@ -328569,8 +309605,6 @@ }, "description": "43214, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.321D", "maps": [], @@ -328603,8 +309637,6 @@ }, "description": "43218, K\u00fchlraum f.wiss.-techn.Zwecke", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.321H", "maps": [], @@ -328637,8 +309669,6 @@ }, "description": "43219, Futtermittel-Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.321I", "maps": [], @@ -328671,8 +309701,6 @@ }, "description": "43210, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.321K", "maps": [], @@ -328705,8 +309733,6 @@ }, "description": "43222, Aufenthalt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.322B", "maps": [], @@ -328739,8 +309765,6 @@ }, "description": "43223, Morphologisches Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.322C", "maps": [], @@ -328773,8 +309797,6 @@ }, "description": "43225, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.322E", "maps": [], @@ -328807,8 +309829,6 @@ }, "description": "43227, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.322G", "maps": [], @@ -328841,8 +309861,6 @@ }, "description": "43229, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.322H", "maps": [], @@ -328875,8 +309893,6 @@ }, "description": "43220, Elektromikrokospie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.322K", "maps": [], @@ -328909,8 +309925,6 @@ }, "description": "43230, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.323A", "maps": [], @@ -328943,8 +309957,6 @@ }, "description": "43301, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.330A", "maps": [], @@ -328977,8 +309989,6 @@ }, "description": "43302, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.330B", "maps": [], @@ -329011,8 +310021,6 @@ }, "description": "43303, Phys. Messraum mit lufttechn. Anf.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.330C", "maps": [], @@ -329045,8 +310053,6 @@ }, "description": "43307, Gruppen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.330D", "maps": [], @@ -329079,8 +310085,6 @@ }, "description": "43309, Arbeitsraum mit Besprechungsgruppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.330J", "maps": [], @@ -329113,8 +310117,6 @@ }, "description": "43311, Arbeitsraum mit Besprechungsgruppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.331A", "maps": [], @@ -329147,8 +310149,6 @@ }, "description": "43312, Arbeitsraum mit exp. Arbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.331B", "maps": [], @@ -329181,8 +310181,6 @@ }, "description": "43313, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.331C", "maps": [], @@ -329215,8 +310213,6 @@ }, "description": "43310, Arbeitsraum ohne Besprechungsgruppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.331K", "maps": [], @@ -329249,8 +310245,6 @@ }, "description": "43401, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.340A", "maps": [], @@ -329283,8 +310277,6 @@ }, "description": "43402, B\u00fcro mit exp. Arbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.340B", "maps": [], @@ -329317,8 +310309,6 @@ }, "description": "43403, Labor f\u00fcr chemische Arbeitsweisen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.340C", "maps": [], @@ -329351,8 +310341,6 @@ }, "description": "43404, Labor f\u00fcr chemische Arbeitsweisen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.340D", "maps": [], @@ -329385,8 +310373,6 @@ }, "description": "43406, Chemielabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.340F", "maps": [], @@ -329419,8 +310405,6 @@ }, "description": "43407, Chemielabor (KNSTL.B.,MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.340G", "maps": [], @@ -329453,8 +310437,6 @@ }, "description": "43408, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.340H", "maps": [], @@ -329487,8 +310469,6 @@ }, "description": "43409, Dusche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.340J", "maps": [], @@ -329521,8 +310501,6 @@ }, "description": "43414, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.341D", "maps": [], @@ -329555,8 +310533,6 @@ }, "description": "43410, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.341K", "maps": [], @@ -329589,8 +310565,6 @@ }, "description": "43422, B\u00fcro mit exp. Arbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.342B", "maps": [], @@ -329623,8 +310597,6 @@ }, "description": "43423, B\u00fcro mit exp. Arbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.342C", "maps": [], @@ -329657,8 +310629,6 @@ }, "description": "43424, Phys. Messraum mit lufttechn. Anf.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.342D", "maps": [], @@ -329691,8 +310661,6 @@ }, "description": "43426, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.342F", "maps": [], @@ -329725,8 +310693,6 @@ }, "description": "43429, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.342J", "maps": [], @@ -329759,8 +310725,6 @@ }, "description": "43420, Chemie-Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.342K", "maps": [], @@ -329793,8 +310757,6 @@ }, "description": "43430, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5403.03.342L", "maps": [], @@ -329827,8 +310789,6 @@ }, "description": "53001, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.300A", "maps": [], @@ -329861,8 +310821,6 @@ }, "description": "53003, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.300B", "maps": [], @@ -329895,8 +310853,6 @@ }, "description": "53005, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.300C", "maps": [], @@ -329929,8 +310885,6 @@ }, "description": "53007, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.300D", "maps": [], @@ -329963,8 +310917,6 @@ }, "description": "53008, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.300E", "maps": [], @@ -329997,8 +310949,6 @@ }, "description": "53009, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.300F", "maps": [], @@ -330031,8 +310981,6 @@ }, "description": "53010, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.301A", "maps": [], @@ -330065,8 +311013,6 @@ }, "description": "53011, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.301B", "maps": [], @@ -330099,8 +311045,6 @@ }, "description": "53012, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.301C", "maps": [], @@ -330133,8 +311077,6 @@ }, "description": "53013, Halle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.301D", "maps": [], @@ -330167,8 +311109,6 @@ }, "description": "53014, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.301E", "maps": [], @@ -330201,8 +311141,6 @@ }, "description": "53015, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.301F", "maps": [], @@ -330235,8 +311173,6 @@ }, "description": "53016, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.301G", "maps": [], @@ -330269,8 +311205,6 @@ }, "description": "53017, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.301H", "maps": [], @@ -330303,8 +311237,6 @@ }, "description": "53018, Fluchtweg", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.301J", "maps": [], @@ -330337,8 +311269,6 @@ }, "description": "53019, Fluchtweg", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.301K", "maps": [], @@ -330371,8 +311301,6 @@ }, "description": "53013, Sonderm\u00fcllzwischenlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.301L", "maps": [], @@ -330405,8 +311333,6 @@ }, "description": "53020, Fluchtweg", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.302A", "maps": [], @@ -330439,8 +311365,6 @@ }, "description": "53021, Fluchtweg", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.302B", "maps": [], @@ -330473,8 +311397,6 @@ }, "description": "53101, \u00dcbungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.310A", "maps": [], @@ -330507,8 +311429,6 @@ }, "description": "53102, Arbeitsraum ohne Besprechungsgruppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.310B", "maps": [], @@ -330541,8 +311461,6 @@ }, "description": "53103, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.310C", "maps": [], @@ -330575,8 +311493,6 @@ }, "description": "53104, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.310D", "maps": [], @@ -330609,8 +311525,6 @@ }, "description": "53105, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.310E", "maps": [], @@ -330643,8 +311557,6 @@ }, "description": "53106, Praktikum u. Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.310F", "maps": [], @@ -330677,8 +311589,6 @@ }, "description": "53108, Elektronikwerkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.310H", "maps": [], @@ -330711,8 +311621,6 @@ }, "description": "53109, B\u00fcro mit exp. Arbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.310J", "maps": [], @@ -330745,8 +311653,6 @@ }, "description": "53112, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.311A", "maps": [], @@ -330779,8 +311685,6 @@ }, "description": "53110, Gebetsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.311K", "maps": [], @@ -330813,8 +311717,6 @@ }, "description": "53201, CVD-Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.320A", "maps": [], @@ -330847,8 +311749,6 @@ }, "description": "53202, CVD-Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.320B", "maps": [], @@ -330881,8 +311781,6 @@ }, "description": "53203, B\u00fcro mit exp. Arbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.320C", "maps": [], @@ -330915,8 +311813,6 @@ }, "description": "53204, B\u00fcro Vermietung BTA/LGA", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.320D", "maps": [], @@ -330949,8 +311845,6 @@ }, "description": "53205, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.320E", "maps": [], @@ -330983,8 +311877,6 @@ }, "description": "53206, Feinmechanische Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.320F", "maps": [], @@ -331017,8 +311909,6 @@ }, "description": "53209A, Dunkelkammer-Schleuse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.320G", "maps": [], @@ -331051,8 +311941,6 @@ }, "description": "53209, Archiv", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.320J", "maps": [], @@ -331085,8 +311973,6 @@ }, "description": "53212, Dunkelkammer-Schleuse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.321A", "maps": [], @@ -331119,8 +312005,6 @@ }, "description": "53216, Dunkelkammer-Schleuse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.321B", "maps": [], @@ -331153,8 +312037,6 @@ }, "description": "53213, Messlabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.321C", "maps": [], @@ -331187,8 +312069,6 @@ }, "description": "53217, HL-Reinstraum-Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.321G", "maps": [], @@ -331221,8 +312101,6 @@ }, "description": "53210, Roentgendiffraktraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.321K", "maps": [], @@ -331255,8 +312133,6 @@ }, "description": "53221, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.321L", "maps": [], @@ -331289,8 +312165,6 @@ }, "description": "53229, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.322A", "maps": [], @@ -331323,8 +312197,6 @@ }, "description": "53222, Mess u. Elektroniklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.322B", "maps": [], @@ -331357,8 +312229,6 @@ }, "description": "53223, CVD-Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.322C", "maps": [], @@ -331391,8 +312261,6 @@ }, "description": "53225, ESCA-Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.322E", "maps": [], @@ -331425,8 +312293,6 @@ }, "description": "53227, HL-Reinstraum-Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.322G", "maps": [], @@ -331459,8 +312325,6 @@ }, "description": "53228, HL-Reinstraum-Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.322H", "maps": [], @@ -331493,8 +312357,6 @@ }, "description": "53220, HL-Reinstraum-Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.322K", "maps": [], @@ -331527,8 +312389,6 @@ }, "description": "53230, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.323A", "maps": [], @@ -331593,8 +312453,6 @@ }, "description": "53306, Leseplatz m. B\u00fccherstellfl\u00e4che", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.330F", "maps": [], @@ -331627,8 +312485,6 @@ }, "description": "53305, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.330G", "maps": [], @@ -331661,8 +312517,6 @@ }, "description": "53313, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.331A", "maps": [], @@ -331695,8 +312549,6 @@ }, "description": "53401, B\u00fcro mit exp. Arbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.340A", "maps": [], @@ -331729,8 +312581,6 @@ }, "description": "53402, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.340B", "maps": [], @@ -331763,8 +312613,6 @@ }, "description": "53404, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.340D", "maps": [], @@ -331797,8 +312645,6 @@ }, "description": "53405, Chemielabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.340E", "maps": [], @@ -331831,8 +312677,6 @@ }, "description": "53406, Labor f\u00fcr chemische Arbeitsweisen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.340F", "maps": [], @@ -331865,8 +312709,6 @@ }, "description": "53408, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.340G", "maps": [], @@ -331899,8 +312741,6 @@ }, "description": "53409, Dusche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.340H", "maps": [], @@ -331933,8 +312773,6 @@ }, "description": "53412, Phys. Messraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.341B", "maps": [], @@ -331967,8 +312805,6 @@ }, "description": "53418, Physiklabor einfach", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.341H", "maps": [], @@ -332001,8 +312837,6 @@ }, "description": "53410, Chemielabor (KNSTL.B.,MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.341K", "maps": [], @@ -332035,8 +312869,6 @@ }, "description": "53429, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.342A", "maps": [], @@ -332069,8 +312901,6 @@ }, "description": "53422, B\u00fcro mit exp. Arbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.342B", "maps": [], @@ -332103,8 +312933,6 @@ }, "description": "53423, B\u00fcro mit exp. Arbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.342C", "maps": [], @@ -332137,8 +312965,6 @@ }, "description": "53424, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.342D", "maps": [], @@ -332171,8 +312997,6 @@ }, "description": "53425, Arbeitsraum ohne Besprechungsgruppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.342E", "maps": [], @@ -332205,8 +313029,6 @@ }, "description": "53426, Arbeitsraum ohne Besprechungsgruppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.342F", "maps": [], @@ -332239,8 +313061,6 @@ }, "description": "53427, Labor f\u00fcr chemische Arbeitsweisen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.342G", "maps": [], @@ -332273,8 +313093,6 @@ }, "description": "53430, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5403.04.343A", "maps": [], @@ -332307,8 +313125,6 @@ }, "description": "62108, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.210H", "maps": [], @@ -332341,8 +313157,6 @@ }, "description": "62110, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.210I", "maps": [], @@ -332375,8 +313189,6 @@ }, "description": "62109, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.210J", "maps": [], @@ -332409,8 +313221,6 @@ }, "description": "62111, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.210K", "maps": [], @@ -332443,8 +313253,6 @@ }, "description": "62112, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.210L", "maps": [], @@ -332477,8 +313285,6 @@ }, "description": "62116, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.210M", "maps": [], @@ -332511,8 +313317,6 @@ }, "description": "62115, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.211A", "maps": [], @@ -332545,8 +313349,6 @@ }, "description": "62113, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.211C", "maps": [], @@ -332579,8 +313381,6 @@ }, "description": "62114, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.211D", "maps": [], @@ -332613,8 +313413,6 @@ }, "description": "62117, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.211E", "maps": [], @@ -332647,8 +313445,6 @@ }, "description": "63001, NIP II", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.300A", "maps": [], @@ -332681,8 +313477,6 @@ }, "description": "63002, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.300B", "maps": [], @@ -332715,8 +313509,6 @@ }, "description": "63003, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.300C", "maps": [], @@ -332749,8 +313541,6 @@ }, "description": "63004, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.300D", "maps": [], @@ -332783,8 +313573,6 @@ }, "description": "63007, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.300E", "maps": [], @@ -332817,8 +313605,6 @@ }, "description": "63008, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.300F", "maps": [], @@ -332851,8 +313637,6 @@ }, "description": "63009, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.300G", "maps": [], @@ -332885,8 +313669,6 @@ }, "description": "63010, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.301A", "maps": [], @@ -332919,8 +313701,6 @@ }, "description": "63011, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.301B", "maps": [], @@ -332953,8 +313733,6 @@ }, "description": "63012, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.301C", "maps": [], @@ -332987,8 +313765,6 @@ }, "description": "63013, Halle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.301D", "maps": [], @@ -333021,8 +313797,6 @@ }, "description": "63014, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.301E", "maps": [], @@ -333055,8 +313829,6 @@ }, "description": "63015, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.301F", "maps": [], @@ -333089,8 +313861,6 @@ }, "description": "63016, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.301G", "maps": [], @@ -333123,8 +313893,6 @@ }, "description": "63017, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.301H", "maps": [], @@ -333157,8 +313925,6 @@ }, "description": "63019, Fluchtweg", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.301K", "maps": [], @@ -333191,8 +313957,6 @@ }, "description": "63013, Sonderm\u00fcllzwischenlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.301L", "maps": [], @@ -333225,8 +313989,6 @@ }, "description": "63101, Besprechungsraum/PC-Raum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.310A", "maps": [], @@ -333259,8 +314021,6 @@ }, "description": "63103, Arbeitsraum ohne Besprechungsgruppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.310C", "maps": [], @@ -333293,8 +314053,6 @@ }, "description": "63104, Arbeitsraum ohne Besprechungsgruppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.310D", "maps": [], @@ -333327,8 +314085,6 @@ }, "description": "63105, Arbeitsraum ohne Besprechungsgruppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.310E", "maps": [], @@ -333361,8 +314117,6 @@ }, "description": "63106, Arbeitsraum ohne Besprechungsgruppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.310F", "maps": [], @@ -333395,8 +314149,6 @@ }, "description": "63107, Bibliothek", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.310G", "maps": [], @@ -333461,8 +314213,6 @@ }, "description": "63112, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.311L", "maps": [], @@ -333495,8 +314245,6 @@ }, "description": "63201, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.320A", "maps": [], @@ -333529,8 +314277,6 @@ }, "description": "63202, Aufenthalt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.320B", "maps": [], @@ -333563,8 +314309,6 @@ }, "description": "63204, CIP-Pool", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.320D", "maps": [], @@ -333597,8 +314341,6 @@ }, "description": "63206, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.320F", "maps": [], @@ -333631,8 +314373,6 @@ }, "description": "63208, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.320H", "maps": [], @@ -333665,8 +314405,6 @@ }, "description": "63207, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.320I", "maps": [], @@ -333699,8 +314437,6 @@ }, "description": "63209, Aufenthaltsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.320J", "maps": [], @@ -333733,8 +314469,6 @@ }, "description": "63214, HPLC III", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.321D", "maps": [], @@ -333767,8 +314501,6 @@ }, "description": "63216, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.321F", "maps": [], @@ -333801,8 +314533,6 @@ }, "description": "63218, W\u00e4geraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.321H", "maps": [], @@ -333835,8 +314565,6 @@ }, "description": "63222, Praktikum LC III", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.322B", "maps": [], @@ -333869,8 +314597,6 @@ }, "description": "63223, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.322C", "maps": [], @@ -333903,8 +314629,6 @@ }, "description": "63225, Besprechung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.322E", "maps": [], @@ -333937,8 +314661,6 @@ }, "description": "63229, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.322H", "maps": [], @@ -333971,8 +314693,6 @@ }, "description": "63220, CIP-Pool", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.322K", "maps": [], @@ -334005,8 +314725,6 @@ }, "description": "63230, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.323A", "maps": [], @@ -334039,8 +314757,6 @@ }, "description": "62120, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.331L", "maps": [], @@ -334105,8 +314821,6 @@ }, "description": "63403, Arbeitsraum ohne Besprechungsgruppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.340C", "maps": [], @@ -334139,8 +314853,6 @@ }, "description": "63404, Arbeitsraum ohne Besprechungsgruppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.340D", "maps": [], @@ -334173,8 +314885,6 @@ }, "description": "63405, Arbeitsraum ohne Besprechungsgruppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.340E", "maps": [], @@ -334207,8 +314917,6 @@ }, "description": "63406, Arbeitsraum ohne Besprechungsgruppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.340F", "maps": [], @@ -334241,8 +314949,6 @@ }, "description": "63407, Arbeitsraum ohne Besprechungsgruppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.340G", "maps": [], @@ -334275,8 +314981,6 @@ }, "description": "63408, Kopierer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.340H", "maps": [], @@ -334309,8 +315013,6 @@ }, "description": "63409, Kopierer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.340I", "maps": [], @@ -334343,8 +315045,6 @@ }, "description": "63412, Lesepl. m. B\u00fccherstellpl\u00e4tze", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.341B", "maps": [], @@ -334377,8 +315077,6 @@ }, "description": "63414, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.341D", "maps": [], @@ -334411,8 +315109,6 @@ }, "description": "63415, Tee- u. Kaffeek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.341E", "maps": [], @@ -334445,8 +315141,6 @@ }, "description": "63410, EDV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.341K", "maps": [], @@ -334479,8 +315173,6 @@ }, "description": "63422, Arbeitsraum ohne Besprechungsgruppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.342B", "maps": [], @@ -334513,8 +315205,6 @@ }, "description": "63423, Arbeitsraum ohne Besprechungsgruppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.342C", "maps": [], @@ -334547,8 +315237,6 @@ }, "description": "63424, Arbeitsraum ohne Besprechungsgruppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.342D", "maps": [], @@ -334581,8 +315269,6 @@ }, "description": "63425, Arbeitsraum ohne Besprechungsgruppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.342E", "maps": [], @@ -334615,8 +315301,6 @@ }, "description": "63426, Arbeitsraum ohne Besprechungsgruppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.342F", "maps": [], @@ -334649,8 +315333,6 @@ }, "description": "63427, Arbeitsraum ohne Besprechungsgruppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.342G", "maps": [], @@ -334683,8 +315365,6 @@ }, "description": "63428, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.342H", "maps": [], @@ -334717,8 +315397,6 @@ }, "description": "63429, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.342J", "maps": [], @@ -334751,8 +315429,6 @@ }, "description": "63420, Arbeitsraum mit Besprechungsgruppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.342K", "maps": [], @@ -334785,8 +315461,6 @@ }, "description": "63430, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.343A", "maps": [], @@ -334819,8 +315493,6 @@ }, "description": "63431, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5403.05.343D", "maps": [], @@ -334853,8 +315525,6 @@ }, "description": "73001, Abluftzentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "5403.06.300A", "maps": [], @@ -334887,8 +315557,6 @@ }, "description": "73004, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "5403.06.300B", "maps": [], @@ -334921,8 +315589,6 @@ }, "description": "73007, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "5403.06.300C", "maps": [], @@ -334955,8 +315621,6 @@ }, "description": "73008, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "5403.06.300D", "maps": [], @@ -334989,8 +315653,6 @@ }, "description": "73009, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "5403.06.300E", "maps": [], @@ -335023,8 +315685,6 @@ }, "description": "73010, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "5403.06.301F", "maps": [], @@ -335057,8 +315717,6 @@ }, "description": "73011, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "5403.06.301G", "maps": [], @@ -335091,8 +315749,6 @@ }, "description": "73014, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "5403.06.301H", "maps": [], @@ -335125,8 +315781,6 @@ }, "description": "73015, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "5403.06.301J", "maps": [], @@ -335159,8 +315813,6 @@ }, "description": "73016, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "5403.06.301K", "maps": [], @@ -335193,8 +315845,6 @@ }, "description": "73017, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "5403.06.301L", "maps": [], @@ -335227,8 +315877,6 @@ }, "description": "83001, Abluftzentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "07", "id": "5403.07.300A", "maps": [], @@ -335261,8 +315909,6 @@ }, "description": "83004, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "07", "id": "5403.07.300B", "maps": [], @@ -335295,8 +315941,6 @@ }, "description": "83008, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "07", "id": "5403.07.300C", "maps": [], @@ -335329,8 +315973,6 @@ }, "description": "83009, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "07", "id": "5403.07.300D", "maps": [], @@ -335363,8 +316005,6 @@ }, "description": "83010, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "07", "id": "5403.07.301F", "maps": [], @@ -335397,8 +316037,6 @@ }, "description": "83014, Aufzugs-u. F\u00f6rdermaschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "07", "id": "5403.07.301H", "maps": [], @@ -335431,8 +316069,6 @@ }, "description": "83015, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "07", "id": "5403.07.301J", "maps": [], @@ -335465,8 +316101,6 @@ }, "description": "83016, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "07", "id": "5403.07.301K", "maps": [], @@ -335499,8 +316133,6 @@ }, "description": "83017, Install.Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "07", "id": "5403.07.301L", "maps": [], @@ -335533,8 +316165,6 @@ }, "description": "13001, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5403.EG.300A", "maps": [], @@ -335567,8 +316197,6 @@ }, "description": "13002, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5403.EG.300B", "maps": [], @@ -335601,8 +316229,6 @@ }, "description": "13003, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5403.EG.300C", "maps": [], @@ -335635,8 +316261,6 @@ }, "description": "13004, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5403.EG.300D", "maps": [], @@ -335669,8 +316293,6 @@ }, "description": "13005, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5403.EG.300E", "maps": [], @@ -335703,8 +316325,6 @@ }, "description": "13007, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5403.EG.300F", "maps": [], @@ -335737,8 +316357,6 @@ }, "description": "13008, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5403.EG.300G", "maps": [], @@ -335771,8 +316389,6 @@ }, "description": "13009, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5403.EG.300H", "maps": [], @@ -335805,8 +316421,6 @@ }, "description": "13010, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5403.EG.301A", "maps": [], @@ -335839,8 +316453,6 @@ }, "description": "13011, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5403.EG.301B", "maps": [], @@ -335873,8 +316485,6 @@ }, "description": "13012, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5403.EG.301C", "maps": [], @@ -335907,8 +316517,6 @@ }, "description": "13013, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5403.EG.301D", "maps": [], @@ -335941,8 +316549,6 @@ }, "description": "13014, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5403.EG.301E", "maps": [], @@ -335975,8 +316581,6 @@ }, "description": "13015, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5403.EG.301F", "maps": [], @@ -336009,8 +316613,6 @@ }, "description": "13016, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5403.EG.301G", "maps": [], @@ -336043,8 +316645,6 @@ }, "description": "13017, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5403.EG.301H", "maps": [], @@ -336077,8 +316677,6 @@ }, "description": "13101, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5403.EG.310A", "maps": [], @@ -336111,8 +316709,6 @@ }, "description": "13102, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5403.EG.310B", "maps": [], @@ -336145,8 +316741,6 @@ }, "description": "13103, Lager/Baufirmen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5403.EG.310C", "maps": [], @@ -336179,8 +316773,6 @@ }, "description": "13105, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5403.EG.310E", "maps": [], @@ -336213,8 +316805,6 @@ }, "description": "13106, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5403.EG.310F", "maps": [], @@ -336247,8 +316837,6 @@ }, "description": "13107, Laser-Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5403.EG.310G", "maps": [], @@ -336281,8 +316869,6 @@ }, "description": "13110, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5403.EG.311J", "maps": [], @@ -336315,8 +316901,6 @@ }, "description": "13201, Be- und Entl\u00fcftung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5403.EG.320A", "maps": [], @@ -336349,8 +316933,6 @@ }, "description": "13202, Lager Umbau Hofgeb\u00e4ude", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5403.EG.320B", "maps": [], @@ -336383,8 +316965,6 @@ }, "description": "13203, Lager Umbau Hofgeb\u00e4ude", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5403.EG.320C", "maps": [], @@ -336417,8 +316997,6 @@ }, "description": "13204, Lager Umbau Hofgeb\u00e4ude", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5403.EG.320D", "maps": [], @@ -336451,8 +317029,6 @@ }, "description": "13205, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5403.EG.320E", "maps": [], @@ -336485,8 +317061,6 @@ }, "description": "13206, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5403.EG.320F", "maps": [], @@ -336519,8 +317093,6 @@ }, "description": "13301, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5403.EG.330A", "maps": [], @@ -336553,8 +317125,6 @@ }, "description": "13302, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5403.EG.330B", "maps": [], @@ -336587,8 +317157,6 @@ }, "description": "13304, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5403.EG.330C", "maps": [], @@ -336621,8 +317189,6 @@ }, "description": "13303, Durchfahrt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5403.EG.330D", "maps": [], @@ -336655,8 +317221,6 @@ }, "description": "13301, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5403.EG.330E", "maps": [], @@ -336689,8 +317253,6 @@ }, "description": "13401, Be- und Entl\u00fcftung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5403.EG.340A", "maps": [], @@ -336723,8 +317285,6 @@ }, "description": "13402, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5403.EG.340B", "maps": [], @@ -336757,8 +317317,6 @@ }, "description": "13403, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5403.EG.340C", "maps": [], @@ -336791,8 +317349,6 @@ }, "description": "13404, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5403.EG.340D", "maps": [], @@ -336825,8 +317381,6 @@ }, "description": "13405, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5403.EG.340E", "maps": [], @@ -336859,8 +317413,6 @@ }, "description": "13406, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5403.EG.340F", "maps": [], @@ -336893,8 +317445,6 @@ }, "description": "13407, B\u00fcro f. Hausmeister/Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5403.EG.340G", "maps": [], @@ -336927,8 +317477,6 @@ }, "description": "13408, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5403.EG.340H", "maps": [], @@ -336961,8 +317509,6 @@ }, "description": "13409, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5403.EG.340J", "maps": [], @@ -336995,8 +317541,6 @@ }, "description": "13411, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5403.EG.341A", "maps": [], @@ -337029,8 +317573,6 @@ }, "description": "13415, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5403.EG.341B", "maps": [], @@ -337063,8 +317605,6 @@ }, "description": "13417, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5403.EG.341D", "maps": [], @@ -337097,8 +317637,6 @@ }, "description": "1 HG 201, K\u00e4lteanlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5404.EG.001", "maps": [], @@ -337131,8 +317669,6 @@ }, "description": "1 HG 202, Niederspannung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5404.EG.002", "maps": [], @@ -337165,8 +317701,6 @@ }, "description": "1 HG 203, Trafo I", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5404.EG.003", "maps": [], @@ -337199,8 +317733,6 @@ }, "description": "1 HG 204, Trafo II", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5404.EG.004", "maps": [], @@ -337233,8 +317765,6 @@ }, "description": "1 HG 205, Trafo III", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5404.EG.005", "maps": [], @@ -337267,8 +317797,6 @@ }, "description": "1 HG 206, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5404.EG.006", "maps": [], @@ -337301,8 +317829,6 @@ }, "description": "1 HG 206A, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5404.EG.006A", "maps": [], @@ -337335,8 +317861,6 @@ }, "description": "1 HG 206B, Garage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5404.EG.006B", "maps": [], @@ -337369,8 +317893,6 @@ }, "description": "0 HG 201, K\u00e4lteanlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5404.U1.001", "maps": [], @@ -337403,8 +317925,6 @@ }, "description": "0 HG202, Solebeh\u00e4lter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5404.U1.002", "maps": [], @@ -337437,8 +317957,6 @@ }, "description": "26001, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5406.01.600A", "maps": [], @@ -337471,8 +317989,6 @@ }, "description": "26002, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5406.01.600B", "maps": [], @@ -337505,8 +318021,6 @@ }, "description": "26003, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5406.01.600C", "maps": [], @@ -337539,8 +318053,6 @@ }, "description": "26004, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5406.01.600D", "maps": [], @@ -337573,8 +318085,6 @@ }, "description": "26005, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5406.01.600E", "maps": [], @@ -337607,8 +318117,6 @@ }, "description": "26006, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5406.01.600F", "maps": [], @@ -337641,8 +318149,6 @@ }, "description": "26007, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5406.01.600G", "maps": [], @@ -337675,8 +318181,6 @@ }, "description": "26008, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5406.01.600H", "maps": [], @@ -337709,8 +318213,6 @@ }, "description": "26009, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5406.01.600J", "maps": [], @@ -337743,8 +318245,6 @@ }, "description": "26010, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5406.01.601A", "maps": [], @@ -337777,8 +318277,6 @@ }, "description": "26011, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5406.01.601B", "maps": [], @@ -337811,8 +318309,6 @@ }, "description": "26012, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5406.01.601C", "maps": [], @@ -337845,8 +318341,6 @@ }, "description": "26013, Halle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5406.01.601D", "maps": [], @@ -337879,8 +318373,6 @@ }, "description": "26014, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5406.01.601E", "maps": [], @@ -337913,8 +318405,6 @@ }, "description": "26015, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5406.01.601F", "maps": [], @@ -337947,8 +318437,6 @@ }, "description": "26016, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5406.01.601G", "maps": [], @@ -337981,8 +318469,6 @@ }, "description": "26017, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5406.01.601H", "maps": [], @@ -338015,8 +318501,6 @@ }, "description": "26018, Fluchtweg", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5406.01.601J", "maps": [], @@ -338049,8 +318533,6 @@ }, "description": "26019, Fluchtweg", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5406.01.601K", "maps": [], @@ -338083,8 +318565,6 @@ }, "description": "26020, Sonderm\u00fcllzwischenlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5406.01.601L", "maps": [], @@ -338117,8 +318597,6 @@ }, "description": "26101, Praktikum mit festem Arbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5406.01.610A", "maps": [], @@ -338151,8 +318629,6 @@ }, "description": "26103, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5406.01.610B", "maps": [], @@ -338185,8 +318661,6 @@ }, "description": "26201, Mikrobiologisches Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5406.01.620A", "maps": [], @@ -338219,8 +318693,6 @@ }, "description": "26202, Biochemische & molekulargenetische Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5406.01.620B", "maps": [], @@ -338253,8 +318725,6 @@ }, "description": "26207, Autoklavenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5406.01.620G", "maps": [], @@ -338287,8 +318757,6 @@ }, "description": "26208, GC-Analytiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5406.01.620H", "maps": [], @@ -338321,8 +318789,6 @@ }, "description": "26209, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5406.01.620J", "maps": [], @@ -338355,8 +318821,6 @@ }, "description": "26212, Praktikum mit festem Arbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5406.01.621B", "maps": [], @@ -338389,8 +318853,6 @@ }, "description": "26215, Lager mit Brandschutz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5406.01.621E", "maps": [], @@ -338423,8 +318885,6 @@ }, "description": "26216, Chemielabor (KNSTL.B.,MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5406.01.621F", "maps": [], @@ -338457,8 +318917,6 @@ }, "description": "26210, Biochemische & molekulargenetische Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5406.01.621K", "maps": [], @@ -338491,8 +318949,6 @@ }, "description": "26217, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5406.01.621L", "maps": [], @@ -338525,8 +318981,6 @@ }, "description": "26301, Praktikum mit festem Arbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5406.01.630A", "maps": [], @@ -338559,8 +319013,6 @@ }, "description": "26305, Chemikalienlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5406.01.630E", "maps": [], @@ -338593,8 +319045,6 @@ }, "description": "26306, Vorbereitungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5406.01.630F", "maps": [], @@ -338627,8 +319077,6 @@ }, "description": "26307, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5406.01.630G", "maps": [], @@ -338661,8 +319109,6 @@ }, "description": "26401, B\u00fcro/Mittelbewilligung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5406.01.640A", "maps": [], @@ -338695,8 +319141,6 @@ }, "description": "26403, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5406.01.640B", "maps": [], @@ -338729,8 +319173,6 @@ }, "description": "26404, B\u00fcro/Reisekosten", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5406.01.640D", "maps": [], @@ -338763,8 +319205,6 @@ }, "description": "26405, B\u00fcro/Reisekosten", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5406.01.640E", "maps": [], @@ -338797,8 +319237,6 @@ }, "description": "26406, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5406.01.640F", "maps": [], @@ -338831,8 +319269,6 @@ }, "description": "26407, B\u00fcro/Personalwesen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5406.01.640G", "maps": [], @@ -338865,8 +319301,6 @@ }, "description": "26416, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5406.01.640M", "maps": [], @@ -338979,8 +319413,6 @@ }, "description": "CH 26410, \u00dcbungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5406.01.641K", "maps": [ @@ -339034,8 +319466,6 @@ }, "description": "26415, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5406.01.641L", "maps": [], @@ -339068,8 +319498,6 @@ }, "description": "26501, Wickeltisch/M\u00fctterraumVerbandsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5406.01.650A", "maps": [], @@ -339102,8 +319530,6 @@ }, "description": "26502, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5406.01.650B", "maps": [], @@ -339136,8 +319562,6 @@ }, "description": "26503, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5406.01.650C", "maps": [], @@ -339169,8 +319593,6 @@ }, "description": "26504, Studenten-Aufenthaltsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5406.01.650D", "maps": [], @@ -339235,8 +319657,6 @@ }, "description": "26506, Arbeitsraum/ohne Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5406.01.650F", "maps": [], @@ -339269,8 +319689,6 @@ }, "description": "26507, Arbeitsraum/ohne Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5406.01.650G", "maps": [], @@ -339303,8 +319721,6 @@ }, "description": "26509, Arbeitsraum/ohne Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5406.01.650J", "maps": [], @@ -339337,8 +319753,6 @@ }, "description": "26511, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5406.01.651A", "maps": [], @@ -339371,8 +319785,6 @@ }, "description": "26512, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5406.01.651B", "maps": [], @@ -339405,8 +319817,6 @@ }, "description": "26510, Poststelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5406.01.651K", "maps": [], @@ -339439,8 +319849,6 @@ }, "description": "36001, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.600A", "maps": [], @@ -339473,8 +319881,6 @@ }, "description": "36003, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.600B", "maps": [], @@ -339507,8 +319913,6 @@ }, "description": "36007, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.600D", "maps": [], @@ -339541,8 +319945,6 @@ }, "description": "36008, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.600E", "maps": [], @@ -339575,8 +319977,6 @@ }, "description": "36009, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.600F", "maps": [], @@ -339609,8 +320009,6 @@ }, "description": "36002, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.600G", "maps": [], @@ -339643,8 +320041,6 @@ }, "description": "36004, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.600H", "maps": [], @@ -339677,8 +320073,6 @@ }, "description": "36010, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.601A", "maps": [], @@ -339711,8 +320105,6 @@ }, "description": "36011, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.601B", "maps": [], @@ -339745,8 +320137,6 @@ }, "description": "36012, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.601C", "maps": [], @@ -339779,8 +320169,6 @@ }, "description": "36013, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.601D", "maps": [], @@ -339813,8 +320201,6 @@ }, "description": "36014, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.601E", "maps": [], @@ -339847,8 +320233,6 @@ }, "description": "36015, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.601F", "maps": [], @@ -339881,8 +320265,6 @@ }, "description": "36016, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.601G", "maps": [], @@ -339915,8 +320297,6 @@ }, "description": "36017, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.601H", "maps": [], @@ -339949,8 +320329,6 @@ }, "description": "36019, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.601K", "maps": [], @@ -339983,8 +320361,6 @@ }, "description": "36024, Sonderm\u00fcllzwischenlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.601L", "maps": [], @@ -340017,8 +320393,6 @@ }, "description": "36020, Flucht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.602A", "maps": [], @@ -340051,8 +320425,6 @@ }, "description": "36021, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.602B", "maps": [], @@ -340085,8 +320457,6 @@ }, "description": "36101, Besprechung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.610A", "maps": [], @@ -340119,8 +320489,6 @@ }, "description": "36104, WC-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.610D", "maps": [], @@ -340153,8 +320521,6 @@ }, "description": "36105, Aufenthalt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.610E", "maps": [], @@ -340187,8 +320553,6 @@ }, "description": "36106, Arbeitsraum/ohne Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.610F", "maps": [], @@ -340221,8 +320585,6 @@ }, "description": "36107, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.610G", "maps": [], @@ -340255,8 +320617,6 @@ }, "description": "36108, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.610H", "maps": [], @@ -340289,8 +320649,6 @@ }, "description": "36109, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.610J", "maps": [], @@ -340323,8 +320681,6 @@ }, "description": "36111, Arbeitsraum/ohne Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.611A", "maps": [], @@ -340357,8 +320713,6 @@ }, "description": "36112, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.611B", "maps": [], @@ -340391,8 +320745,6 @@ }, "description": "36110, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.611K", "maps": [], @@ -340425,8 +320777,6 @@ }, "description": "36115, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.611L", "maps": [], @@ -340459,8 +320809,6 @@ }, "description": "36201, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.620A", "maps": [], @@ -340493,8 +320841,6 @@ }, "description": "36202, K\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.620B", "maps": [], @@ -340527,8 +320873,6 @@ }, "description": "36203, Besprechung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.620C", "maps": [], @@ -340561,8 +320905,6 @@ }, "description": "36204, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.620D", "maps": [], @@ -340595,8 +320937,6 @@ }, "description": "36205, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.620E", "maps": [], @@ -340629,8 +320969,6 @@ }, "description": "36206, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.620F", "maps": [], @@ -340663,8 +321001,6 @@ }, "description": "36207, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.620G", "maps": [], @@ -340697,8 +321033,6 @@ }, "description": "36208, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.620H", "maps": [], @@ -340731,8 +321065,6 @@ }, "description": "36209, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.620J", "maps": [], @@ -340765,8 +321097,6 @@ }, "description": "36210, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.620K", "maps": [], @@ -340799,8 +321129,6 @@ }, "description": "36211, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.620L", "maps": [], @@ -340833,8 +321161,6 @@ }, "description": "36212, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.620M", "maps": [], @@ -340867,8 +321193,6 @@ }, "description": "36213, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.620N", "maps": [], @@ -340901,8 +321225,6 @@ }, "description": "36214, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.621D", "maps": [], @@ -340935,8 +321257,6 @@ }, "description": "36215, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.621E", "maps": [], @@ -340969,8 +321289,6 @@ }, "description": "36216, Drucker", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.621F", "maps": [], @@ -341003,8 +321321,6 @@ }, "description": "36217, W\u00e4geraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.621G", "maps": [], @@ -341037,8 +321353,6 @@ }, "description": "36218, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.621H", "maps": [], @@ -341103,8 +321417,6 @@ }, "description": "36230, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.623A", "maps": [], @@ -341137,8 +321449,6 @@ }, "description": "36301, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.630A", "maps": [], @@ -341171,8 +321481,6 @@ }, "description": "36302, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.630B", "maps": [], @@ -341205,8 +321513,6 @@ }, "description": "36303, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.630C", "maps": [], @@ -341239,8 +321545,6 @@ }, "description": "36304, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.630D", "maps": [], @@ -341273,8 +321577,6 @@ }, "description": "36305, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.630E", "maps": [], @@ -341307,8 +321609,6 @@ }, "description": "36306, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.630F", "maps": [], @@ -341341,8 +321641,6 @@ }, "description": "36307, Besprechung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.630G", "maps": [], @@ -341375,8 +321673,6 @@ }, "description": "36308, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.630H", "maps": [], @@ -341409,8 +321705,6 @@ }, "description": "36312, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.631L", "maps": [], @@ -341443,8 +321737,6 @@ }, "description": "36401, Rechnerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.640A", "maps": [], @@ -341477,8 +321769,6 @@ }, "description": "36402, Chemisch-technisches Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.640B", "maps": [], @@ -341511,8 +321801,6 @@ }, "description": "36404, Gro\u00dfraumb\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.640D", "maps": [], @@ -341545,8 +321833,6 @@ }, "description": "36406, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.640F", "maps": [], @@ -341579,8 +321865,6 @@ }, "description": "36408, Chemisch-biochemisches Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.640H", "maps": [], @@ -341613,8 +321897,6 @@ }, "description": "36411, Physiklabor / LS, AFM", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.641A", "maps": [], @@ -341647,8 +321929,6 @@ }, "description": "36412, Physiklabor / TEM", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.641B", "maps": [], @@ -341681,8 +321961,6 @@ }, "description": "36414, Physiklabor / LM, Opt. Bank", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.641D", "maps": [], @@ -341715,8 +321993,6 @@ }, "description": "36416, Phys. Messraum mit lufttechn. Anf.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.641F", "maps": [], @@ -341749,8 +322025,6 @@ }, "description": "36419, Physiklabor / G\u00c4, Bed.Anl.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.641J", "maps": [], @@ -341783,8 +322057,6 @@ }, "description": "36422, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.642B", "maps": [], @@ -341817,8 +322089,6 @@ }, "description": "36423, Chemielabor (KNSTL.B.,MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.642C", "maps": [], @@ -341851,8 +322121,6 @@ }, "description": "36425, Chemielabor (KNSTL.B.,MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.642E", "maps": [], @@ -341885,8 +322153,6 @@ }, "description": "36427, Elektrotechnikwerkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.642G", "maps": [], @@ -341919,8 +322185,6 @@ }, "description": "36428, Physiklabor / G\u00c4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.642H", "maps": [], @@ -341953,8 +322217,6 @@ }, "description": "36429, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.642J", "maps": [], @@ -341987,8 +322249,6 @@ }, "description": "36430, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5406.02.643A", "maps": [], @@ -342021,8 +322281,6 @@ }, "description": "46001, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.600A", "maps": [], @@ -342055,8 +322313,6 @@ }, "description": "46003, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.600B", "maps": [], @@ -342089,8 +322345,6 @@ }, "description": "46005, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.600C", "maps": [], @@ -342123,8 +322377,6 @@ }, "description": "46007, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.600D", "maps": [], @@ -342157,8 +322409,6 @@ }, "description": "46008, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.600E", "maps": [], @@ -342191,8 +322441,6 @@ }, "description": "46009, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.600F", "maps": [], @@ -342225,8 +322473,6 @@ }, "description": "46010, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.601A", "maps": [], @@ -342259,8 +322505,6 @@ }, "description": "46011, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.601B", "maps": [], @@ -342293,8 +322537,6 @@ }, "description": "46012, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.601C", "maps": [], @@ -342327,8 +322569,6 @@ }, "description": "46013, Halle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.601D", "maps": [], @@ -342361,8 +322601,6 @@ }, "description": "46014, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.601E", "maps": [], @@ -342395,8 +322633,6 @@ }, "description": "46015, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.601F", "maps": [], @@ -342429,8 +322665,6 @@ }, "description": "46016, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.601G", "maps": [], @@ -342463,8 +322697,6 @@ }, "description": "46017, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.601H", "maps": [], @@ -342497,8 +322729,6 @@ }, "description": "46018, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.601J", "maps": [], @@ -342531,8 +322761,6 @@ }, "description": "46019, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.601K", "maps": [], @@ -342565,8 +322793,6 @@ }, "description": "46013, Sonderm\u00fcllzwischenlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.601L", "maps": [], @@ -342599,8 +322825,6 @@ }, "description": "46020, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.602A", "maps": [], @@ -342633,8 +322857,6 @@ }, "description": "46021, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.602B", "maps": [], @@ -342667,8 +322889,6 @@ }, "description": "46101, Rechnerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.610A", "maps": [], @@ -342701,8 +322921,6 @@ }, "description": "46102, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.610B", "maps": [], @@ -342735,8 +322953,6 @@ }, "description": "46103, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.610C", "maps": [], @@ -342769,8 +322985,6 @@ }, "description": "46104, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.610D", "maps": [], @@ -342803,8 +323017,6 @@ }, "description": "46105, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.610E", "maps": [], @@ -342837,8 +323049,6 @@ }, "description": "46106, Chromatografieraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.610F", "maps": [], @@ -342871,8 +323081,6 @@ }, "description": "46107, Physikalischer Messraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.610G", "maps": [], @@ -342905,8 +323113,6 @@ }, "description": "46108, Chemielabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.610H", "maps": [], @@ -342939,8 +323145,6 @@ }, "description": "46109, Chemielabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.610J", "maps": [], @@ -342973,8 +323177,6 @@ }, "description": "46111, Chemielabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.611A", "maps": [], @@ -343007,8 +323209,6 @@ }, "description": "46115, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.611J", "maps": [], @@ -343041,8 +323241,6 @@ }, "description": "46110, Chemielabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.611K", "maps": [], @@ -343075,8 +323273,6 @@ }, "description": "46201, Aufenthalt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.620A", "maps": [], @@ -343109,8 +323305,6 @@ }, "description": "46204, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.620B", "maps": [], @@ -343143,8 +323337,6 @@ }, "description": "46206, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.620D", "maps": [], @@ -343177,8 +323369,6 @@ }, "description": "46207, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.620F", "maps": [], @@ -343211,8 +323401,6 @@ }, "description": "46208, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.620G", "maps": [], @@ -343245,8 +323433,6 @@ }, "description": "46202, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.620H", "maps": [], @@ -343279,8 +323465,6 @@ }, "description": "46209, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.620J", "maps": [], @@ -343313,8 +323497,6 @@ }, "description": "46220, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.621D", "maps": [], @@ -343347,8 +323529,6 @@ }, "description": "46210, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.621K", "maps": [], @@ -343381,8 +323561,6 @@ }, "description": "46216, Druckger\u00e4teraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.621L", "maps": [], @@ -343415,8 +323593,6 @@ }, "description": "46215, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.622B", "maps": [], @@ -343449,8 +323625,6 @@ }, "description": "46213, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.622C", "maps": [], @@ -343483,8 +323657,6 @@ }, "description": "46211, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.622E", "maps": [], @@ -343517,8 +323689,6 @@ }, "description": "46212, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.622G", "maps": [], @@ -343551,8 +323721,6 @@ }, "description": "46230, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.623A", "maps": [], @@ -343585,8 +323753,6 @@ }, "description": "46301, Seminar", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.630A", "maps": [], @@ -343619,8 +323785,6 @@ }, "description": "46302, Druckger\u00e4teraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.630B", "maps": [], @@ -343653,8 +323817,6 @@ }, "description": "46303, Arbeitsraum mit man./exp. Arbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.630C", "maps": [], @@ -343687,8 +323849,6 @@ }, "description": "46304, Arbeitsraum mit exp. Arbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.630D", "maps": [], @@ -343721,8 +323881,6 @@ }, "description": "46305, Arbeitsraum mit exp. Arbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.630E", "maps": [], @@ -343787,8 +323945,6 @@ }, "description": "46308, Arbeitsraum/mit Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.630H", "maps": [], @@ -343821,8 +323977,6 @@ }, "description": "46309, Arbeitsraum/ohne Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.630J", "maps": [], @@ -343855,8 +324009,6 @@ }, "description": "46310, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.631K", "maps": [], @@ -343889,8 +324041,6 @@ }, "description": "46312, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.631L", "maps": [], @@ -343923,8 +324073,6 @@ }, "description": "46401, B\u00fcro mit man./exp. Arbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.640A", "maps": [], @@ -343957,8 +324105,6 @@ }, "description": "46402, Chemisch-technisches Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.640B", "maps": [], @@ -343991,8 +324137,6 @@ }, "description": "46404, Chemisch-technisches Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.640D", "maps": [], @@ -344025,8 +324169,6 @@ }, "description": "46406, Chemisch-technisches Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.640F", "maps": [], @@ -344059,8 +324201,6 @@ }, "description": "46407, Chemisch-technisches Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.640G", "maps": [], @@ -344093,8 +324233,6 @@ }, "description": "46408, Physiklabor einfach", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.640H", "maps": [], @@ -344127,8 +324265,6 @@ }, "description": "46412, Physiklabor einfach", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.641B", "maps": [], @@ -344161,8 +324297,6 @@ }, "description": "46416, Messraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.641F", "maps": [], @@ -344195,8 +324329,6 @@ }, "description": "46418, Chemisch-technisches Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.641H", "maps": [], @@ -344229,8 +324361,6 @@ }, "description": "46410, Labor f\u00fcr chem. Arbeitsweisen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.641K", "maps": [], @@ -344263,8 +324393,6 @@ }, "description": "46421, Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.642A", "maps": [], @@ -344297,8 +324425,6 @@ }, "description": "46422, B\u00fcro mit exp. Arbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.642B", "maps": [], @@ -344331,8 +324457,6 @@ }, "description": "46423, Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.642C", "maps": [], @@ -344365,8 +324489,6 @@ }, "description": "46425, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.642E", "maps": [], @@ -344399,8 +324521,6 @@ }, "description": "46427, Chemisch-technisches Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.642G", "maps": [], @@ -344433,8 +324553,6 @@ }, "description": "46428, Laborsp\u00fclraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.642H", "maps": [], @@ -344467,8 +324585,6 @@ }, "description": "46420, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.642K", "maps": [], @@ -344501,8 +324617,6 @@ }, "description": "46429, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.642L", "maps": [], @@ -344535,8 +324649,6 @@ }, "description": "46430, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5406.03.643A", "maps": [], @@ -344569,8 +324681,6 @@ }, "description": "56001, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.600A", "maps": [], @@ -344603,8 +324713,6 @@ }, "description": "56003, WC-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.600B", "maps": [], @@ -344637,8 +324745,6 @@ }, "description": "56004, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.600C", "maps": [], @@ -344671,8 +324777,6 @@ }, "description": "56005, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.600D", "maps": [], @@ -344705,8 +324809,6 @@ }, "description": "56007, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.600E", "maps": [], @@ -344739,8 +324841,6 @@ }, "description": "56008, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.600F", "maps": [], @@ -344773,8 +324873,6 @@ }, "description": "56009, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.600G", "maps": [], @@ -344807,8 +324905,6 @@ }, "description": "56010, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.601A", "maps": [], @@ -344841,8 +324937,6 @@ }, "description": "56011, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.601B", "maps": [], @@ -344875,8 +324969,6 @@ }, "description": "56012, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.601C", "maps": [], @@ -344909,8 +325001,6 @@ }, "description": "56013, Halle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.601D", "maps": [], @@ -344943,8 +325033,6 @@ }, "description": "56014, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.601E", "maps": [], @@ -344977,8 +325065,6 @@ }, "description": "56015, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.601F", "maps": [], @@ -345011,8 +325097,6 @@ }, "description": "56016, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.601G", "maps": [], @@ -345045,8 +325129,6 @@ }, "description": "56017, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.601H", "maps": [], @@ -345079,8 +325161,6 @@ }, "description": "56018, Fluchtweg", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.601J", "maps": [], @@ -345113,8 +325193,6 @@ }, "description": "56019, Fluchtweg", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.601K", "maps": [], @@ -345147,8 +325225,6 @@ }, "description": "56022, Sonderm\u00fcllzwischenlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.601L", "maps": [], @@ -345181,8 +325257,6 @@ }, "description": "56020, Fluchtweg", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.602A", "maps": [], @@ -345215,8 +325289,6 @@ }, "description": "56021, Fluchtweg", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.602B", "maps": [], @@ -345249,8 +325321,6 @@ }, "description": "56101, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.610A", "maps": [], @@ -345283,8 +325353,6 @@ }, "description": "56102, Arbeitsraum/ohne Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.610B", "maps": [], @@ -345317,8 +325385,6 @@ }, "description": "56103, Aufenthalt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.610C", "maps": [], @@ -345351,8 +325417,6 @@ }, "description": "56104, Arbeitsraum/mit Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.610D", "maps": [], @@ -345385,8 +325449,6 @@ }, "description": "56105, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.610E", "maps": [], @@ -345419,8 +325481,6 @@ }, "description": "56106, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.610F", "maps": [], @@ -345453,8 +325513,6 @@ }, "description": "56107, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.610G", "maps": [], @@ -345487,8 +325545,6 @@ }, "description": "56108, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.610H", "maps": [], @@ -345521,8 +325577,6 @@ }, "description": "56109, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.610J", "maps": [], @@ -345555,8 +325609,6 @@ }, "description": "56112, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.611B", "maps": [], @@ -345589,8 +325641,6 @@ }, "description": "56113, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.611C", "maps": [], @@ -345623,8 +325673,6 @@ }, "description": "56115, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.611J", "maps": [], @@ -345657,8 +325705,6 @@ }, "description": "56110, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.611K", "maps": [], @@ -345691,8 +325737,6 @@ }, "description": "56201, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.620A", "maps": [], @@ -345725,8 +325769,6 @@ }, "description": "56204, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.620D", "maps": [], @@ -345759,8 +325801,6 @@ }, "description": "56206, Arbeitsraum/ohne Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.620F", "maps": [], @@ -345793,8 +325833,6 @@ }, "description": "56207, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.620G", "maps": [], @@ -345827,8 +325865,6 @@ }, "description": "56208, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.620H", "maps": [], @@ -345861,8 +325897,6 @@ }, "description": "56209, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.620J", "maps": [], @@ -345895,8 +325929,6 @@ }, "description": "56215, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.621E", "maps": [], @@ -345929,8 +325961,6 @@ }, "description": "56216, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.621F", "maps": [], @@ -345963,8 +325993,6 @@ }, "description": "56217, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.621G", "maps": [], @@ -345997,8 +326025,6 @@ }, "description": "56210, Seminar", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.621K", "maps": [], @@ -346031,8 +326057,6 @@ }, "description": "56223, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.622C", "maps": [], @@ -346065,8 +326089,6 @@ }, "description": "56230, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.623A", "maps": [], @@ -346099,8 +326121,6 @@ }, "description": "56301, Chemielabor (KNSTL.B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.630A", "maps": [], @@ -346133,8 +326153,6 @@ }, "description": "56303, Chemielabor (KNSTL.B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.630C", "maps": [], @@ -346167,8 +326185,6 @@ }, "description": "56304, Physiklabor einfach", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.630D", "maps": [], @@ -346201,8 +326217,6 @@ }, "description": "56305, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.630E", "maps": [], @@ -346267,8 +326281,6 @@ }, "description": "56308, Arbeitsraum/ohne Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.630H", "maps": [], @@ -346301,8 +326313,6 @@ }, "description": "56309, Arbeitsraum/ohne Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.630J", "maps": [], @@ -346335,8 +326345,6 @@ }, "description": "56312, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.631A", "maps": [], @@ -346369,8 +326377,6 @@ }, "description": "56310, Arbeitsraum/mit Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.631K", "maps": [], @@ -346403,8 +326409,6 @@ }, "description": "56401, Chemielabor (KNSTL.B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.640A", "maps": [], @@ -346437,8 +326441,6 @@ }, "description": "56402, Chemielabor (KNSTL.B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.640B", "maps": [], @@ -346471,8 +326473,6 @@ }, "description": "56404, Chemielabor (KNSTL.B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.640D", "maps": [], @@ -346505,8 +326505,6 @@ }, "description": "56406, Chemielabor (KNSTL.B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.640F", "maps": [], @@ -346539,8 +326537,6 @@ }, "description": "56407, Chemielabor (KNSTL.B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.640G", "maps": [], @@ -346573,8 +326569,6 @@ }, "description": "56408, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.640H", "maps": [], @@ -346607,8 +326601,6 @@ }, "description": "56409, Destillation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.640J", "maps": [], @@ -346641,8 +326633,6 @@ }, "description": "56412, Fotolabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.641B", "maps": [], @@ -346675,8 +326665,6 @@ }, "description": "56414, W\u00e4geraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.641D", "maps": [], @@ -346709,8 +326697,6 @@ }, "description": "56415, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.641E", "maps": [], @@ -346743,8 +326729,6 @@ }, "description": "56416, Chemielabor (KNSTL.B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.641F", "maps": [], @@ -346777,8 +326761,6 @@ }, "description": "56410, Chemielabor (KNSTL.B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.641K", "maps": [], @@ -346811,8 +326793,6 @@ }, "description": "56422, Chemielabor (KNSTL.B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.642B", "maps": [], @@ -346845,8 +326825,6 @@ }, "description": "56423, Chemielabor (KNSTL.B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.642C", "maps": [], @@ -346879,8 +326857,6 @@ }, "description": "56425, Chemielabor (KNSTL.B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.642E", "maps": [], @@ -346913,8 +326889,6 @@ }, "description": "56427, Chemielabor (KNSTL.B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.642G", "maps": [], @@ -346947,8 +326921,6 @@ }, "description": "56428, Chemielabor (KNSTL.B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.642H", "maps": [], @@ -346981,8 +326953,6 @@ }, "description": "56429, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.642J", "maps": [], @@ -347015,8 +326985,6 @@ }, "description": "56420, Arbeitsraum/ohne Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.642K", "maps": [], @@ -347049,8 +327017,6 @@ }, "description": "56430, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5406.04.643A", "maps": [], @@ -347083,8 +327049,6 @@ }, "description": "66001, Abluftzentrale / 1. Ebene", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5406.05.600A", "maps": [], @@ -347117,8 +327081,6 @@ }, "description": "66004, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5406.05.600B", "maps": [], @@ -347151,8 +327113,6 @@ }, "description": "66007, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5406.05.600C", "maps": [], @@ -347185,8 +327145,6 @@ }, "description": "66008, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5406.05.600D", "maps": [], @@ -347219,8 +327177,6 @@ }, "description": "66009, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5406.05.600E", "maps": [], @@ -347253,8 +327209,6 @@ }, "description": "66010, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5406.05.601F", "maps": [], @@ -347287,8 +327241,6 @@ }, "description": "66011, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5406.05.601G", "maps": [], @@ -347321,8 +327273,6 @@ }, "description": "66014, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5406.05.601H", "maps": [], @@ -347355,8 +327305,6 @@ }, "description": "66015, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5406.05.601J", "maps": [], @@ -347389,8 +327337,6 @@ }, "description": "66016, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5406.05.601K", "maps": [], @@ -347423,8 +327369,6 @@ }, "description": "66017, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5406.05.601L", "maps": [], @@ -347457,8 +327401,6 @@ }, "description": "76001, Abluftzentrale / 2. Ebene", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "5406.06.600A", "maps": [], @@ -347491,8 +327433,6 @@ }, "description": "76004, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "5406.06.600B", "maps": [], @@ -347525,8 +327465,6 @@ }, "description": "76008, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "5406.06.600C", "maps": [], @@ -347559,8 +327497,6 @@ }, "description": "76009, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "5406.06.600D", "maps": [], @@ -347593,8 +327529,6 @@ }, "description": "76010, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "5406.06.601E", "maps": [], @@ -347627,8 +327561,6 @@ }, "description": "76014, Aufzugs- und F\u00f6rdermaschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "5406.06.601F", "maps": [], @@ -347661,8 +327593,6 @@ }, "description": "76015, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "5406.06.601G", "maps": [], @@ -347695,8 +327625,6 @@ }, "description": "76016, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "5406.06.601H", "maps": [], @@ -347729,8 +327657,6 @@ }, "description": "76017, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "5406.06.601J", "maps": [], @@ -347763,8 +327689,6 @@ }, "description": "16001, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.600", "maps": [], @@ -347797,8 +327721,6 @@ }, "description": "16002, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.600A", "maps": [], @@ -347831,8 +327753,6 @@ }, "description": "16003, Abstellraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.600B", "maps": [], @@ -347865,8 +327785,6 @@ }, "description": "16004, WC-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.600C", "maps": [], @@ -347899,8 +327817,6 @@ }, "description": "16005, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.600D", "maps": [], @@ -347933,8 +327849,6 @@ }, "description": "16007, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.600E", "maps": [], @@ -347967,8 +327881,6 @@ }, "description": "16008, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.600F", "maps": [], @@ -348001,8 +327913,6 @@ }, "description": "16009, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.600G", "maps": [], @@ -348035,8 +327945,6 @@ }, "description": "16010, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.601", "maps": [], @@ -348069,8 +327977,6 @@ }, "description": "16011, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.601A", "maps": [], @@ -348103,8 +328009,6 @@ }, "description": "16012, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.601B", "maps": [], @@ -348137,8 +328041,6 @@ }, "description": "16013, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.601C", "maps": [], @@ -348171,8 +328073,6 @@ }, "description": "16014, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.601D", "maps": [], @@ -348205,8 +328105,6 @@ }, "description": "16015, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.601E", "maps": [], @@ -348239,8 +328137,6 @@ }, "description": "16016, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.601F", "maps": [], @@ -348273,8 +328169,6 @@ }, "description": "16017, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.601G", "maps": [], @@ -348307,8 +328201,6 @@ }, "description": "16020, Fluchtbalkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.602", "maps": [], @@ -348341,8 +328233,6 @@ }, "description": "16101, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.610", "maps": [], @@ -348375,8 +328265,6 @@ }, "description": "16105, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.610A", "maps": [], @@ -348409,8 +328297,6 @@ }, "description": "16201, Be- und Entl\u00fcftung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.620A", "maps": [], @@ -348443,8 +328329,6 @@ }, "description": "16202, Metallwerkstatt 4/75,5/25", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.620B", "maps": [], @@ -348477,8 +328361,6 @@ }, "description": "16203, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.620C", "maps": [], @@ -348511,8 +328393,6 @@ }, "description": "16204, Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.620D", "maps": [], @@ -348545,8 +328425,6 @@ }, "description": "16205, Kunststoffwerkstatt 4/80,5/20", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.620E", "maps": [], @@ -348579,8 +328457,6 @@ }, "description": "16301, Garderobe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.630", "maps": [], @@ -348613,8 +328489,6 @@ }, "description": "16302, Waschraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.630A", "maps": [], @@ -348647,8 +328521,6 @@ }, "description": "16303, Dusche-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.630B", "maps": [], @@ -348681,8 +328553,6 @@ }, "description": "16304, Dusche-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.630C", "maps": [], @@ -348715,8 +328585,6 @@ }, "description": "16305, Waschraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.630D", "maps": [], @@ -348749,8 +328617,6 @@ }, "description": "16306, Garderobe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.630E", "maps": [], @@ -348783,8 +328649,6 @@ }, "description": "16308, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.630F", "maps": [], @@ -348817,8 +328681,6 @@ }, "description": "16307, Aufenthalt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.630G", "maps": [], @@ -348851,8 +328713,6 @@ }, "description": "16309, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.630H", "maps": [], @@ -348885,8 +328745,6 @@ }, "description": "16311, Abstellraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.631A", "maps": [], @@ -348919,8 +328777,6 @@ }, "description": "16403, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.640", "maps": [], @@ -348953,8 +328809,6 @@ }, "description": "16404, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.640A", "maps": [], @@ -348987,8 +328841,6 @@ }, "description": "16405, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.640B", "maps": [], @@ -349021,8 +328873,6 @@ }, "description": "16406, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.640C", "maps": [], @@ -349055,8 +328905,6 @@ }, "description": "16401, Be- und Entl\u00fcftung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.640D", "maps": [], @@ -349089,8 +328937,6 @@ }, "description": "16402, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.640E", "maps": [], @@ -349123,8 +328969,6 @@ }, "description": "16407, Arbeitsraum/ohne Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.640G", "maps": [], @@ -349157,8 +329001,6 @@ }, "description": "16408, Labor f\u00fcr station\u00e4re Maschinen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.640H", "maps": [], @@ -349191,8 +329033,6 @@ }, "description": "16409, Labor f\u00fcr station\u00e4re Maschinen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.640J", "maps": [], @@ -349225,8 +329065,6 @@ }, "description": "16411, Probenvorbereitung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.641A", "maps": [], @@ -349259,8 +329097,6 @@ }, "description": "16412, Probenvorbereitung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.641B", "maps": [], @@ -349293,8 +329129,6 @@ }, "description": "16413, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.641C", "maps": [], @@ -349327,8 +329161,6 @@ }, "description": "16414, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.641D", "maps": [], @@ -349361,8 +329193,6 @@ }, "description": "16415, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.641E", "maps": [], @@ -349395,8 +329225,6 @@ }, "description": "16416, Fotolabor / Lichtpausenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.641F", "maps": [], @@ -349429,8 +329257,6 @@ }, "description": "16417, Fotolabor / Lichtpausenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.641G", "maps": [], @@ -349463,8 +329289,6 @@ }, "description": "16418, Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.641H", "maps": [], @@ -349497,8 +329321,6 @@ }, "description": "16420, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.642", "maps": [], @@ -349531,8 +329353,6 @@ }, "description": "16501, MS", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.650A", "maps": [], @@ -349565,8 +329385,6 @@ }, "description": "16502, MS", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.650B", "maps": [], @@ -349599,8 +329417,6 @@ }, "description": "16503, LC-MS Analytiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.650C", "maps": [], @@ -349633,8 +329449,6 @@ }, "description": "16504, Phys. \u00dcbungsraum (K.B.,MV,750KG)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.650D", "maps": [], @@ -349667,8 +329481,6 @@ }, "description": "16507, Messraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.650G", "maps": [], @@ -349701,8 +329513,6 @@ }, "description": "16508, Messraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.650H", "maps": [], @@ -349735,8 +329545,6 @@ }, "description": "16509, Messraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.650J", "maps": [], @@ -349769,8 +329577,6 @@ }, "description": "16511, Messraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.651A", "maps": [], @@ -349803,8 +329609,6 @@ }, "description": "16517, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.651G", "maps": [], @@ -349837,8 +329641,6 @@ }, "description": "16510, Messraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.651K", "maps": [], @@ -349871,8 +329673,6 @@ }, "description": "16520, Elektronenmikroskopie I", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.651N", "maps": [], @@ -349905,8 +329705,6 @@ }, "description": "16521, Elektronenmikroskopie II", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.651O", "maps": [], @@ -349939,8 +329737,6 @@ }, "description": "16522, Elektronenmikroskopie III", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.651P", "maps": [], @@ -349973,8 +329769,6 @@ }, "description": "16523, Elektronenmikroskopie IV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.651Q", "maps": [], @@ -350007,8 +329801,6 @@ }, "description": "16524, Elektronenmikroskopie V", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.651R", "maps": [], @@ -350041,8 +329833,6 @@ }, "description": "16525, Elektronenmikroskopie VI", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.651S", "maps": [], @@ -350075,8 +329865,6 @@ }, "description": "16512, Verbindungsflur/Elektronenmikroskopie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.651W", "maps": [], @@ -350109,8 +329897,6 @@ }, "description": "16524A, Terrasse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.652A", "maps": [], @@ -350143,8 +329929,6 @@ }, "description": "16523A, Terrasse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.652B", "maps": [], @@ -350177,8 +329961,6 @@ }, "description": "16522A, Terrasse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5406.EG.652C", "maps": [], @@ -350211,8 +329993,6 @@ }, "description": "27001, WC-Damen Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5407.01.700A", "maps": [], @@ -350245,8 +330025,6 @@ }, "description": "27002, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5407.01.700B", "maps": [], @@ -350279,8 +330057,6 @@ }, "description": "27006, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5407.01.700C", "maps": [], @@ -350313,8 +330089,6 @@ }, "description": "27007, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5407.01.700D", "maps": [], @@ -350347,8 +330121,6 @@ }, "description": "27008, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5407.01.700E", "maps": [], @@ -350381,8 +330153,6 @@ }, "description": "27009, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5407.01.700F", "maps": [], @@ -350415,8 +330185,6 @@ }, "description": "27010, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5407.01.701A", "maps": [], @@ -350449,8 +330217,6 @@ }, "description": "27011, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5407.01.701B", "maps": [], @@ -350483,8 +330249,6 @@ }, "description": "27012, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5407.01.701C", "maps": [], @@ -350517,8 +330281,6 @@ }, "description": "27013, Halle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5407.01.701D", "maps": [], @@ -350551,8 +330313,6 @@ }, "description": "27014, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5407.01.701E", "maps": [], @@ -350585,8 +330345,6 @@ }, "description": "27015, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5407.01.701F", "maps": [], @@ -350619,8 +330377,6 @@ }, "description": "27016, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5407.01.701G", "maps": [], @@ -350653,8 +330409,6 @@ }, "description": "27017, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5407.01.701H", "maps": [], @@ -350687,8 +330441,6 @@ }, "description": "27019, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5407.01.701J", "maps": [], @@ -350721,8 +330473,6 @@ }, "description": "36013, Sonderm\u00fcllzwischenlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5407.01.701L", "maps": [], @@ -350755,8 +330505,6 @@ }, "description": "27101, Praktikum mit festem Arbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5407.01.710A", "maps": [], @@ -350789,8 +330537,6 @@ }, "description": "27106, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5407.01.710E", "maps": [], @@ -350823,8 +330569,6 @@ }, "description": "27201, Praktikumslabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5407.01.720A", "maps": [], @@ -350857,8 +330601,6 @@ }, "description": "27204, Praktikumslabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5407.01.720D", "maps": [], @@ -350891,8 +330633,6 @@ }, "description": "27206, Praktikumslabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5407.01.720F", "maps": [], @@ -350925,8 +330665,6 @@ }, "description": "27208, Praktikumslabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5407.01.720H", "maps": [], @@ -350959,8 +330697,6 @@ }, "description": "27214, \u00dcbungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5407.01.721D", "maps": [], @@ -350993,8 +330729,6 @@ }, "description": "27215, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5407.01.721E", "maps": [], @@ -351027,8 +330761,6 @@ }, "description": "27216, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5407.01.721F", "maps": [], @@ -351061,8 +330793,6 @@ }, "description": "27219, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5407.01.721G", "maps": [], @@ -351095,8 +330825,6 @@ }, "description": "27218, LRZ-Verteilerknoten", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5407.01.721H", "maps": [], @@ -351129,8 +330857,6 @@ }, "description": "27213, Garderobe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5407.01.721I", "maps": [], @@ -351163,8 +330889,6 @@ }, "description": "27301, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5407.01.730A", "maps": [], @@ -351197,8 +330921,6 @@ }, "description": "27304, Chemielabor (KNSTL.B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5407.01.730D", "maps": [], @@ -351231,8 +330953,6 @@ }, "description": "CH 27401, \u00dcbungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5407.01.740A", "maps": [ @@ -351366,8 +331086,6 @@ }, "description": "27404, Vorbereitungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5407.01.740D", "maps": [], @@ -351400,8 +331118,6 @@ }, "description": "27411, Chemielabor (KNSTL.B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5407.01.741A", "maps": [], @@ -351434,8 +331150,6 @@ }, "description": "27413, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5407.01.741B", "maps": [], @@ -351468,8 +331182,6 @@ }, "description": "27414, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5407.01.741C", "maps": [], @@ -351502,8 +331214,6 @@ }, "description": "27306, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5407.01.741D", "maps": [], @@ -351536,8 +331246,6 @@ }, "description": "27416, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5407.01.741E", "maps": [], @@ -351570,8 +331278,6 @@ }, "description": "27417, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5407.01.741F", "maps": [], @@ -351604,8 +331310,6 @@ }, "description": "27540, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5407.01.760A", "maps": [], @@ -351638,8 +331342,6 @@ }, "description": "27541, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5407.01.760B", "maps": [], @@ -351672,8 +331374,6 @@ }, "description": "27542, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5407.01.760C", "maps": [], @@ -351706,8 +331406,6 @@ }, "description": "27543, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5407.01.760D", "maps": [], @@ -351772,8 +331470,6 @@ }, "description": "27560, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5407.01.770B", "maps": [], @@ -351806,8 +331502,6 @@ }, "description": "27561, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5407.01.770C", "maps": [], @@ -351840,8 +331534,6 @@ }, "description": "27562, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5407.01.770D", "maps": [], @@ -351874,8 +331566,6 @@ }, "description": "37001, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.700A", "maps": [], @@ -351908,8 +331598,6 @@ }, "description": "37003, Server", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.700B", "maps": [], @@ -351942,8 +331630,6 @@ }, "description": "37007, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.700D", "maps": [], @@ -351976,8 +331662,6 @@ }, "description": "37008, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.700E", "maps": [], @@ -352010,8 +331694,6 @@ }, "description": "37009, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.700F", "maps": [], @@ -352044,8 +331726,6 @@ }, "description": "37006, WC-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.700G", "maps": [], @@ -352078,8 +331758,6 @@ }, "description": "37010, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.701A", "maps": [], @@ -352112,8 +331790,6 @@ }, "description": "37011, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.701B", "maps": [], @@ -352146,8 +331822,6 @@ }, "description": "37012, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.701C", "maps": [], @@ -352180,8 +331854,6 @@ }, "description": "37013, Halle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.701D", "maps": [], @@ -352214,8 +331886,6 @@ }, "description": "37014, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.701E", "maps": [], @@ -352248,8 +331918,6 @@ }, "description": "37015, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.701F", "maps": [], @@ -352282,8 +331950,6 @@ }, "description": "37016, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.701G", "maps": [], @@ -352316,8 +331982,6 @@ }, "description": "37017, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.701H", "maps": [], @@ -352350,8 +332014,6 @@ }, "description": "37018, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.701J", "maps": [], @@ -352384,8 +332046,6 @@ }, "description": "37019, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.701K", "maps": [], @@ -352418,8 +332078,6 @@ }, "description": "37013, Sonderm\u00fcllzwischenlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.701L", "maps": [], @@ -352452,8 +332110,6 @@ }, "description": "37020, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.702A", "maps": [], @@ -352486,8 +332142,6 @@ }, "description": "37021, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.702B", "maps": [], @@ -352520,8 +332174,6 @@ }, "description": "37022, WC-Damen Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.702C", "maps": [], @@ -352554,8 +332206,6 @@ }, "description": "37101, \u00dcbergang/Lounge", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.710A", "maps": [], @@ -352588,8 +332238,6 @@ }, "description": "37102, Cube green", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.710B", "maps": [], @@ -352622,8 +332270,6 @@ }, "description": "37103, Cube blue", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.710C", "maps": [], @@ -352656,8 +332302,6 @@ }, "description": "37104, Cube orange", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.710D", "maps": [], @@ -352690,8 +332334,6 @@ }, "description": "37105, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.710E", "maps": [], @@ -352724,8 +332366,6 @@ }, "description": "37106, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.710F", "maps": [], @@ -352758,8 +332398,6 @@ }, "description": "37107, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.710G", "maps": [], @@ -352792,8 +332430,6 @@ }, "description": "37108, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.710H", "maps": [], @@ -352826,8 +332462,6 @@ }, "description": "37201, Arbeitsraum/ohne Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.720A", "maps": [], @@ -352860,8 +332494,6 @@ }, "description": "37202, Infrastruktur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.720B", "maps": [], @@ -352894,8 +332526,6 @@ }, "description": "37203, Chem. Experimentalfl\u00e4che", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.720C", "maps": [], @@ -352928,8 +332558,6 @@ }, "description": "37204, Auswertung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.720D", "maps": [], @@ -352962,8 +332590,6 @@ }, "description": "37206, Auswertung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.720F", "maps": [], @@ -352996,8 +332622,6 @@ }, "description": "37205B, Ofenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.720G", "maps": [], @@ -353030,8 +332654,6 @@ }, "description": "37208, Auswertung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.720H", "maps": [], @@ -353064,8 +332686,6 @@ }, "description": "37207, Chem. Experimentalfl\u00e4che", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.720I", "maps": [], @@ -353098,8 +332718,6 @@ }, "description": "37209, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.720J", "maps": [], @@ -353132,8 +332750,6 @@ }, "description": "37215, MSR", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.720L", "maps": [], @@ -353166,8 +332782,6 @@ }, "description": "37211, Chem. Experimentalfl\u00e4che", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.721A", "maps": [], @@ -353200,8 +332814,6 @@ }, "description": "37212, Infrastruktur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.721B", "maps": [], @@ -353234,8 +332846,6 @@ }, "description": "37213, Umkleideraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.721C", "maps": [], @@ -353268,8 +332878,6 @@ }, "description": "37214, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.721D", "maps": [], @@ -353302,8 +332910,6 @@ }, "description": "37301, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.730A", "maps": [], @@ -353336,8 +332942,6 @@ }, "description": "37302, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.730B", "maps": [], @@ -353370,8 +332974,6 @@ }, "description": "37303, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.730C", "maps": [], @@ -353404,8 +333006,6 @@ }, "description": "37304, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.730D", "maps": [], @@ -353438,8 +333038,6 @@ }, "description": "37305, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.730E", "maps": [], @@ -353472,8 +333070,6 @@ }, "description": "37306, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.730F", "maps": [], @@ -353506,8 +333102,6 @@ }, "description": "37307, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.730G", "maps": [], @@ -353540,8 +333134,6 @@ }, "description": "37308, Besprechung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.730H", "maps": [], @@ -353574,8 +333166,6 @@ }, "description": "37315, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.731C", "maps": [], @@ -353608,8 +333198,6 @@ }, "description": "37402, LC-Analytiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.740B", "maps": [], @@ -353642,8 +333230,6 @@ }, "description": "37404, Fermentation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.740D", "maps": [], @@ -353676,8 +333262,6 @@ }, "description": "37414, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.740F", "maps": [], @@ -353710,8 +333294,6 @@ }, "description": "37411, Chemielabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.741A", "maps": [], @@ -353744,8 +333326,6 @@ }, "description": "37416, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.741C", "maps": [], @@ -353778,8 +333358,6 @@ }, "description": "37417, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.741D", "maps": [], @@ -353812,8 +333390,6 @@ }, "description": "37415, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.741E", "maps": [], @@ -353846,8 +333422,6 @@ }, "description": "37413, Technologisches Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5407.02.741F", "maps": [], @@ -353880,8 +333454,6 @@ }, "description": "47001, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.700A", "maps": [], @@ -353914,8 +333486,6 @@ }, "description": "47003, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.700B", "maps": [], @@ -353948,8 +333518,6 @@ }, "description": "47005, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.700C", "maps": [], @@ -353982,8 +333550,6 @@ }, "description": "47007, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.700D", "maps": [], @@ -354016,8 +333582,6 @@ }, "description": "47008, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.700E", "maps": [], @@ -354050,8 +333614,6 @@ }, "description": "47009, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.700F", "maps": [], @@ -354084,8 +333646,6 @@ }, "description": "47010, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.701A", "maps": [], @@ -354118,8 +333678,6 @@ }, "description": "47011, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.701B", "maps": [], @@ -354152,8 +333710,6 @@ }, "description": "47012, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.701C", "maps": [], @@ -354186,8 +333742,6 @@ }, "description": "47013, Halle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.701D", "maps": [], @@ -354220,8 +333774,6 @@ }, "description": "47014, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.701E", "maps": [], @@ -354254,8 +333806,6 @@ }, "description": "47015, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.701F", "maps": [], @@ -354288,8 +333838,6 @@ }, "description": "47016, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.701G", "maps": [], @@ -354322,8 +333870,6 @@ }, "description": "47017, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.701H", "maps": [], @@ -354356,8 +333902,6 @@ }, "description": "47018, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.701J", "maps": [], @@ -354390,8 +333934,6 @@ }, "description": "47019, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.701K", "maps": [], @@ -354424,8 +333966,6 @@ }, "description": "47013, Sonderm\u00fcllzwischenlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.701L", "maps": [], @@ -354458,8 +333998,6 @@ }, "description": "47020, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.702A", "maps": [], @@ -354492,8 +334030,6 @@ }, "description": "47021, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.702B", "maps": [], @@ -354526,8 +334062,6 @@ }, "description": "47101, Rechnerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.710A", "maps": [], @@ -354560,8 +334094,6 @@ }, "description": "47103, Arbeitsraum/ohne Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.710C", "maps": [], @@ -354594,8 +334126,6 @@ }, "description": "47104, Arbeitsraum/mit Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.710D", "maps": [], @@ -354628,8 +334158,6 @@ }, "description": "47105, Arbeitsraum/ohne Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.710E", "maps": [], @@ -354662,8 +334190,6 @@ }, "description": "47106, Arbeitsraum/mit Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.710F", "maps": [], @@ -354696,8 +334222,6 @@ }, "description": "47107, Chemielabor (KNSTL.B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.710G", "maps": [], @@ -354730,8 +334254,6 @@ }, "description": "47109, Chemielabor (KNSTL.B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.710J", "maps": [], @@ -354764,8 +334286,6 @@ }, "description": "47111, Chemielabor (KNSTL.B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.711A", "maps": [], @@ -354798,8 +334318,6 @@ }, "description": "47112, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.711B", "maps": [], @@ -354832,8 +334350,6 @@ }, "description": "47110, Chemielabor (KNSTL.B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.711K", "maps": [], @@ -354866,8 +334382,6 @@ }, "description": "47201, Chemielabor (KNSTL.B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.720A", "maps": [], @@ -354900,8 +334414,6 @@ }, "description": "47202, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.720B", "maps": [], @@ -354934,8 +334446,6 @@ }, "description": "47203, Ofen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.720C", "maps": [], @@ -354968,8 +334478,6 @@ }, "description": "47204, Chemielabor (KNSTL.B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.720D", "maps": [], @@ -355002,8 +334510,6 @@ }, "description": "47206, Chemielabor (KNSTL.B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.720F", "maps": [], @@ -355036,8 +334542,6 @@ }, "description": "47208, Chemielabor (KNSTL.B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.720H", "maps": [], @@ -355070,8 +334574,6 @@ }, "description": "47212, Schleuse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.721A", "maps": [], @@ -355104,8 +334606,6 @@ }, "description": "47213, Klimaraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.721C", "maps": [], @@ -355138,8 +334638,6 @@ }, "description": "47214, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.721D", "maps": [], @@ -355172,8 +334670,6 @@ }, "description": "47217, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.721E", "maps": [], @@ -355206,8 +334702,6 @@ }, "description": "47216, Chemielabor (KNSTL.B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.721F", "maps": [], @@ -355240,8 +334734,6 @@ }, "description": "47222A, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.721G", "maps": [], @@ -355274,8 +334766,6 @@ }, "description": "47222, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.722B", "maps": [], @@ -355308,8 +334798,6 @@ }, "description": "47223, Chemielabor (KNSTL.B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.722C", "maps": [], @@ -355342,8 +334830,6 @@ }, "description": "47225, Chemielabor (KNSTL.B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.722E", "maps": [], @@ -355376,8 +334862,6 @@ }, "description": "47227, Chemielabor (KNSTL.B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.722G", "maps": [], @@ -355410,8 +334894,6 @@ }, "description": "47229, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.722H", "maps": [], @@ -355444,8 +334926,6 @@ }, "description": "47230, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.723A", "maps": [], @@ -355478,8 +334958,6 @@ }, "description": "47301, Messraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.730A", "maps": [], @@ -355512,8 +334990,6 @@ }, "description": "47302, Chemielabor (KNSTL.B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.730B", "maps": [], @@ -355546,8 +335022,6 @@ }, "description": "47303, Chemielabor (KNSTL.B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.730C", "maps": [], @@ -355580,8 +335054,6 @@ }, "description": "47304, Chemielabor (KNSTL.B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.730D", "maps": [], @@ -355614,8 +335086,6 @@ }, "description": "47306, Chemielabor (KNSTL.B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.730F", "maps": [], @@ -355648,8 +335118,6 @@ }, "description": "47307, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.730G", "maps": [], @@ -355682,8 +335150,6 @@ }, "description": "47308, Arbeitsraum/mit Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.730H", "maps": [], @@ -355716,8 +335182,6 @@ }, "description": "47309, Arbeitsraum/ohne Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.730J", "maps": [], @@ -355750,8 +335214,6 @@ }, "description": "47311, Arbeitsraum/mit Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.731A", "maps": [], @@ -355784,8 +335246,6 @@ }, "description": "47312, Arbeitsraum/ohne Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.731B", "maps": [], @@ -355818,8 +335278,6 @@ }, "description": "47313, Arbeitsraum/mit Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.731C", "maps": [], @@ -355852,8 +335310,6 @@ }, "description": "47315, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.731D", "maps": [], @@ -355886,8 +335342,6 @@ }, "description": "47310, Arbeitsraum/mit Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.731K", "maps": [], @@ -355920,8 +335374,6 @@ }, "description": "47401, Chemielabor (KNSTL.B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.740A", "maps": [], @@ -355954,8 +335406,6 @@ }, "description": "47403, Chemielabor (KNSTL.B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.740C", "maps": [], @@ -355988,8 +335438,6 @@ }, "description": "47405, Chemielabor (KNSTL.B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.740E", "maps": [], @@ -356022,8 +335470,6 @@ }, "description": "47407, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.740F", "maps": [], @@ -356056,8 +335502,6 @@ }, "description": "47406, Dusche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.740G", "maps": [], @@ -356090,8 +335534,6 @@ }, "description": "47409, Messraum / Server", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.740J", "maps": [], @@ -356124,8 +335566,6 @@ }, "description": "47417, Fotolabor / Lichtpausenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.741G", "maps": [], @@ -356158,8 +335598,6 @@ }, "description": "47418, Schleuse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.741H", "maps": [], @@ -356192,8 +335630,6 @@ }, "description": "47415, R\u00f6ntgenmessraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.741J", "maps": [], @@ -356226,8 +335662,6 @@ }, "description": "47421, Rechnerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.742A", "maps": [], @@ -356260,8 +335694,6 @@ }, "description": "47422, Rechnerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.742B", "maps": [], @@ -356294,8 +335726,6 @@ }, "description": "47423, Rechnerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.742C", "maps": [], @@ -356328,8 +335758,6 @@ }, "description": "47424, Rechnerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.742D", "maps": [], @@ -356362,8 +335790,6 @@ }, "description": "47429, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.742E", "maps": [], @@ -356396,8 +335822,6 @@ }, "description": "47430, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.742F", "maps": [], @@ -356430,8 +335854,6 @@ }, "description": "47419, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5407.03.742G", "maps": [], @@ -356464,8 +335886,6 @@ }, "description": "57001, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.700A", "maps": [], @@ -356498,8 +335918,6 @@ }, "description": "57003, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.700B", "maps": [], @@ -356532,8 +335950,6 @@ }, "description": "57004, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.700C", "maps": [], @@ -356566,8 +335982,6 @@ }, "description": "57005, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.700D", "maps": [], @@ -356600,8 +336014,6 @@ }, "description": "57007, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.700E", "maps": [], @@ -356634,8 +336046,6 @@ }, "description": "57008, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.700F", "maps": [], @@ -356668,8 +336078,6 @@ }, "description": "57009, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.700G", "maps": [], @@ -356702,8 +336110,6 @@ }, "description": "57010, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.701A", "maps": [], @@ -356736,8 +336142,6 @@ }, "description": "57011, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.701B", "maps": [], @@ -356770,8 +336174,6 @@ }, "description": "57012, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.701C", "maps": [], @@ -356804,8 +336206,6 @@ }, "description": "57013, Halle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.701D", "maps": [], @@ -356838,8 +336238,6 @@ }, "description": "57014, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.701E", "maps": [], @@ -356872,8 +336270,6 @@ }, "description": "57015, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.701F", "maps": [], @@ -356906,8 +336302,6 @@ }, "description": "57016, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.701G", "maps": [], @@ -356940,8 +336334,6 @@ }, "description": "57017, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.701H", "maps": [], @@ -356974,8 +336366,6 @@ }, "description": "57018, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.701J", "maps": [], @@ -357008,8 +336398,6 @@ }, "description": "57019, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.701K", "maps": [], @@ -357042,8 +336430,6 @@ }, "description": "57013, Sonderm\u00fcllzwischenlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.701L", "maps": [], @@ -357076,8 +336462,6 @@ }, "description": "57020, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.702A", "maps": [], @@ -357110,8 +336494,6 @@ }, "description": "57021, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.702B", "maps": [], @@ -357144,8 +336526,6 @@ }, "description": "57022, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.702C", "maps": [], @@ -357178,8 +336558,6 @@ }, "description": "57101, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.710A", "maps": [], @@ -357212,8 +336590,6 @@ }, "description": "57103, Arbeitsraum/ohne Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.710C", "maps": [], @@ -357246,8 +336622,6 @@ }, "description": "57104, Arbeitsraum/ohne Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.710D", "maps": [], @@ -357280,8 +336654,6 @@ }, "description": "57105, Arbeitsraum/ohne Besp.Grp.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.710E", "maps": [], @@ -357314,8 +336686,6 @@ }, "description": "57106, Arbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.710F", "maps": [], @@ -357348,8 +336718,6 @@ }, "description": "57107, Sozialraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.710G", "maps": [], @@ -357382,8 +336750,6 @@ }, "description": "57108, Chemielabor (KNSTL.B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.710H", "maps": [], @@ -357416,8 +336782,6 @@ }, "description": "57109, Chemielabor (KNSTL.B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.710J", "maps": [], @@ -357450,8 +336814,6 @@ }, "description": "57112, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.711J", "maps": [], @@ -357484,8 +336846,6 @@ }, "description": "57110, Praktikumslabor (KNSTL.B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.711K", "maps": [], @@ -357518,8 +336878,6 @@ }, "description": "57201, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.720A", "maps": [], @@ -357552,8 +336910,6 @@ }, "description": "57203, R\u00f6ntgenfluoreszenzanalytik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.720C", "maps": [], @@ -357586,8 +336942,6 @@ }, "description": "57204, Analytisches Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.720D", "maps": [], @@ -357620,8 +336974,6 @@ }, "description": "57206, Chemielabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.720F", "maps": [], @@ -357654,8 +337006,6 @@ }, "description": "57207, Chemielabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.720G", "maps": [], @@ -357688,8 +337038,6 @@ }, "description": "57208, W\u00e4geraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.720H", "maps": [], @@ -357722,8 +337070,6 @@ }, "description": "57213, Schleuse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.721A", "maps": [], @@ -357756,8 +337102,6 @@ }, "description": "57214, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.721D", "maps": [], @@ -357790,8 +337134,6 @@ }, "description": "57216, Elektronenmikroskopie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.721F", "maps": [], @@ -357824,8 +337166,6 @@ }, "description": "57210, Physik. Messlabor (KNSTL.B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.721K", "maps": [], @@ -357858,8 +337198,6 @@ }, "description": "57221, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.721L", "maps": [], @@ -357892,8 +337230,6 @@ }, "description": "57222, Chemielabor (KNSTL.B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.722B", "maps": [], @@ -357926,8 +337262,6 @@ }, "description": "57224, S\u00e4urelabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.722D", "maps": [], @@ -357960,8 +337294,6 @@ }, "description": "57225, Chemielabor (KNSTL.B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.722E", "maps": [], @@ -357994,8 +337326,6 @@ }, "description": "57226, Chemielabor (KNSTL.B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.722F", "maps": [], @@ -358028,8 +337358,6 @@ }, "description": "57227, Chemielabor (KNSTL.B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.722G", "maps": [], @@ -358062,8 +337390,6 @@ }, "description": "57228, Chemielabor (KNSTL.B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.722H", "maps": [], @@ -358096,8 +337422,6 @@ }, "description": "57229, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.722J", "maps": [], @@ -358130,8 +337454,6 @@ }, "description": "57220, Freiluftlabor CH", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.722K", "maps": [], @@ -358164,8 +337486,6 @@ }, "description": "57230, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.723A", "maps": [], @@ -358198,8 +337518,6 @@ }, "description": "57301A, Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.723B", "maps": [], @@ -358232,8 +337550,6 @@ }, "description": "57301, Chemielabor (KNSTL.B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.730A", "maps": [], @@ -358266,8 +337582,6 @@ }, "description": "57302, Archiv", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.730B", "maps": [], @@ -358300,8 +337614,6 @@ }, "description": "57303, Chemielabor (KNSTL.B., MV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.730C", "maps": [], @@ -358334,8 +337646,6 @@ }, "description": "57304, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.730D", "maps": [], @@ -358368,8 +337678,6 @@ }, "description": "57305, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.730E", "maps": [], @@ -358402,8 +337710,6 @@ }, "description": "57306, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.730F", "maps": [], @@ -358436,8 +337742,6 @@ }, "description": "57307, Computerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.730G", "maps": [], @@ -358470,8 +337774,6 @@ }, "description": "57309, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.730J", "maps": [], @@ -358504,8 +337806,6 @@ }, "description": "57311, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.731A", "maps": [], @@ -358538,8 +337838,6 @@ }, "description": "57312, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.731B", "maps": [], @@ -358572,8 +337870,6 @@ }, "description": "57315, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.731C", "maps": [], @@ -358606,8 +337902,6 @@ }, "description": "57310, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.731K", "maps": [], @@ -358640,8 +337934,6 @@ }, "description": "57401, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.740A", "maps": [], @@ -358674,8 +337966,6 @@ }, "description": "57402, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.740B", "maps": [], @@ -358708,8 +337998,6 @@ }, "description": "57403, Labor f\u00fcr Zellkultur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.740C", "maps": [], @@ -358742,8 +338030,6 @@ }, "description": "57404, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.740D", "maps": [], @@ -358776,8 +338062,6 @@ }, "description": "57405, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.740E", "maps": [], @@ -358810,8 +338094,6 @@ }, "description": "57406, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.740F", "maps": [], @@ -358844,8 +338126,6 @@ }, "description": "57407, Technisches Labor, GEM.M.1103060400", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.740G", "maps": [], @@ -358878,8 +338158,6 @@ }, "description": "57403A, Lab.m.bes.luftt.Anlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.740H", "maps": [], @@ -358912,8 +338190,6 @@ }, "description": "57409, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.740J", "maps": [], @@ -358946,8 +338222,6 @@ }, "description": "57411, Physik. Messraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.741A", "maps": [], @@ -358980,8 +338254,6 @@ }, "description": "57413, Mikorskopierraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.741C", "maps": [], @@ -359014,8 +338286,6 @@ }, "description": "57415, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.741E", "maps": [], @@ -359048,8 +338318,6 @@ }, "description": "57417, K\u00fchlraum f\u00fcr wissensch.-techn. Zwecke", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.741G", "maps": [], @@ -359082,8 +338350,6 @@ }, "description": "57418, Schleuse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.741H", "maps": [], @@ -359116,8 +338382,6 @@ }, "description": "57421, K\u00fchlraum f\u00fcr wissensch.-techn. Zwecke", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.742A", "maps": [], @@ -359150,8 +338414,6 @@ }, "description": "57422, K\u00fchlraum f\u00fcr wissensch.-techn. Zwecke", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.742B", "maps": [], @@ -359184,8 +338446,6 @@ }, "description": "57423, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.742C", "maps": [], @@ -359218,8 +338478,6 @@ }, "description": "57424, K\u00fchlraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.742D", "maps": [], @@ -359252,8 +338510,6 @@ }, "description": "57425, K\u00fchlraum f\u00fcr wissensch.-techn. Zwecke", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.742E", "maps": [], @@ -359286,8 +338542,6 @@ }, "description": "57427, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.742G", "maps": [], @@ -359320,8 +338574,6 @@ }, "description": "57428, Computerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.742H", "maps": [], @@ -359354,8 +338606,6 @@ }, "description": "57429, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.742J", "maps": [], @@ -359388,8 +338638,6 @@ }, "description": "57431, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.743A", "maps": [], @@ -359422,8 +338670,6 @@ }, "description": "57436, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.743B", "maps": [], @@ -359456,8 +338702,6 @@ }, "description": "57433, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.743C", "maps": [], @@ -359490,8 +338734,6 @@ }, "description": "57437, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.743D", "maps": [], @@ -359524,8 +338766,6 @@ }, "description": "57435, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.743E", "maps": [], @@ -359558,8 +338798,6 @@ }, "description": "57430, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5407.04.743K", "maps": [], @@ -359592,8 +338830,6 @@ }, "description": "67001, Abluftzentrale 1. Ebene", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5407.05.700A", "maps": [], @@ -359626,8 +338862,6 @@ }, "description": "67004, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5407.05.700B", "maps": [], @@ -359660,8 +338894,6 @@ }, "description": "67007, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5407.05.700C", "maps": [], @@ -359694,8 +338926,6 @@ }, "description": "67008, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5407.05.700D", "maps": [], @@ -359728,8 +338958,6 @@ }, "description": "67009, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5407.05.700E", "maps": [], @@ -359762,8 +338990,6 @@ }, "description": "67010, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5407.05.701A", "maps": [], @@ -359796,8 +339022,6 @@ }, "description": "67011, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5407.05.701B", "maps": [], @@ -359830,8 +339054,6 @@ }, "description": "67014, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5407.05.701C", "maps": [], @@ -359864,8 +339086,6 @@ }, "description": "67015, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5407.05.701D", "maps": [], @@ -359898,8 +339118,6 @@ }, "description": "67016, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5407.05.701E", "maps": [], @@ -359932,8 +339150,6 @@ }, "description": "67017, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5407.05.701F", "maps": [], @@ -359966,8 +339182,6 @@ }, "description": "77001, Be- und Entl\u00fcftung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "5407.06.700A", "maps": [], @@ -360000,8 +339214,6 @@ }, "description": "77004, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "5407.06.700B", "maps": [], @@ -360034,8 +339246,6 @@ }, "description": "77008, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "5407.06.700C", "maps": [], @@ -360068,8 +339278,6 @@ }, "description": "77009, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "5407.06.700D", "maps": [], @@ -360102,8 +339310,6 @@ }, "description": "77010, Abluftzentrale 2. Ebene", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "5407.06.701A", "maps": [], @@ -360136,8 +339342,6 @@ }, "description": "77014, Aufzugs- und F\u00f6rdermaschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "5407.06.701B", "maps": [], @@ -360170,8 +339374,6 @@ }, "description": "77015, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "5407.06.701C", "maps": [], @@ -360204,8 +339406,6 @@ }, "description": "77016, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "5407.06.701D", "maps": [], @@ -360238,8 +339438,6 @@ }, "description": "77017, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "06", "id": "5407.06.701E", "maps": [], @@ -360272,8 +339470,6 @@ }, "description": "16514, Physikal.Messr\u00e4ume", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.651D", "maps": [], @@ -360306,8 +339502,6 @@ }, "description": "16515, Phys.Messr.f.instr.Analytik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.651E", "maps": [], @@ -360340,8 +339534,6 @@ }, "description": "17001, WC (Umbau)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.700A", "maps": [], @@ -360374,8 +339566,6 @@ }, "description": "17002, Putzraum (Umbau)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.700B", "maps": [], @@ -360408,8 +339598,6 @@ }, "description": "17003, Abstellraum (Umbau)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.700C", "maps": [], @@ -360442,8 +339630,6 @@ }, "description": "17004, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.700D", "maps": [], @@ -360476,8 +339662,6 @@ }, "description": "17005, WC (Umbau)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.700E", "maps": [], @@ -360510,8 +339694,6 @@ }, "description": "17007, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.700F", "maps": [], @@ -360544,8 +339726,6 @@ }, "description": "17008, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.700G", "maps": [], @@ -360578,8 +339758,6 @@ }, "description": "17009, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.700H", "maps": [], @@ -360612,8 +339790,6 @@ }, "description": "17010, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.701A", "maps": [], @@ -360646,8 +339822,6 @@ }, "description": "17011, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.701B", "maps": [], @@ -360680,8 +339854,6 @@ }, "description": "17012, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.701C", "maps": [], @@ -360714,8 +339886,6 @@ }, "description": "17013, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.701D", "maps": [], @@ -360748,8 +339918,6 @@ }, "description": "17014, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.701E", "maps": [], @@ -360782,8 +339950,6 @@ }, "description": "17015, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.701F", "maps": [], @@ -360816,8 +339982,6 @@ }, "description": "17016, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.701G", "maps": [], @@ -360850,8 +340014,6 @@ }, "description": "17017, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.701H", "maps": [], @@ -360884,8 +340046,6 @@ }, "description": "17022, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.701I", "maps": [], @@ -360918,8 +340078,6 @@ }, "description": "17018, Fluchtbalkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.701J", "maps": [], @@ -360952,8 +340110,6 @@ }, "description": "17024, BOS-Zentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.701K", "maps": [], @@ -360986,8 +340142,6 @@ }, "description": "17021, Fluchtbalkon (Umbau)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.702A", "maps": [], @@ -361020,8 +340174,6 @@ }, "description": "17022, Schleuse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.708B", "maps": [], @@ -361054,8 +340206,6 @@ }, "description": "17023, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.708C", "maps": [], @@ -361088,8 +340238,6 @@ }, "description": "17101, Umbau", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.710A", "maps": [], @@ -361122,8 +340270,6 @@ }, "description": "17130, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.710C", "maps": [], @@ -361156,8 +340302,6 @@ }, "description": "17104, Umbau", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.710D", "maps": [], @@ -361190,8 +340334,6 @@ }, "description": "17201, Be- und Entl\u00fcftung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.720A", "maps": [], @@ -361224,8 +340366,6 @@ }, "description": "17202, Metallwerkstatt 4/50,8/25,9/25", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.720B", "maps": [], @@ -361258,8 +340398,6 @@ }, "description": "17205, Schwei\u00dfraum CH", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.720E", "maps": [], @@ -361292,8 +340430,6 @@ }, "description": "17204, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.721A", "maps": [], @@ -361326,8 +340462,6 @@ }, "description": "17207, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.721C", "maps": [], @@ -361360,8 +340494,6 @@ }, "description": "17208, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.721D", "maps": [], @@ -361394,8 +340526,6 @@ }, "description": "17301, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.730A", "maps": [], @@ -361428,8 +340558,6 @@ }, "description": "17303, Lager/Tische, St\u00fchle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.730C", "maps": [], @@ -361462,8 +340590,6 @@ }, "description": "17304, Aktenlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.730D", "maps": [], @@ -361496,8 +340622,6 @@ }, "description": "17302, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.730E", "maps": [], @@ -361530,8 +340654,6 @@ }, "description": "17305, Flur (Umbau)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.730F", "maps": [], @@ -361564,8 +340686,6 @@ }, "description": "17401, Be- und Entl\u00fcftung (Umbau)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.740A", "maps": [], @@ -361598,8 +340718,6 @@ }, "description": "17402, Stromversorgung (Umbau)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.740B", "maps": [], @@ -361632,8 +340750,6 @@ }, "description": "17403, Telefonzentrale (Umbau)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.740C", "maps": [], @@ -361666,8 +340782,6 @@ }, "description": "17404, Trafo", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.740D", "maps": [], @@ -361700,8 +340814,6 @@ }, "description": "17405, Trafo", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.740E", "maps": [], @@ -361734,8 +340846,6 @@ }, "description": "17406, Trafo", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.740F", "maps": [], @@ -361768,8 +340878,6 @@ }, "description": "17407, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.740G", "maps": [], @@ -361802,8 +340910,6 @@ }, "description": "17408, Eisraum / Materialverw. CH", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.740H", "maps": [], @@ -361836,8 +340942,6 @@ }, "description": "17409, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.740J", "maps": [], @@ -361870,8 +340974,6 @@ }, "description": "17411, Lager / Materialverw. CH", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.741A", "maps": [], @@ -361904,8 +341006,6 @@ }, "description": "17412, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.741B", "maps": [], @@ -361938,8 +341038,6 @@ }, "description": "17413, Flur (Umbau)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.741C", "maps": [], @@ -361972,8 +341070,6 @@ }, "description": "17414, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.741D", "maps": [], @@ -362006,8 +341102,6 @@ }, "description": "17410, B\u00fcro / Materialverw. CH", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.741K", "maps": [], @@ -362040,8 +341134,6 @@ }, "description": "17503A, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.749A", "maps": [], @@ -362074,8 +341166,6 @@ }, "description": "17501, Autoklavenlagerraum CH", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.750A", "maps": [], @@ -362108,8 +341198,6 @@ }, "description": "17502, Metalllagerraum CH", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.750B", "maps": [], @@ -362142,8 +341230,6 @@ }, "description": "17503, B\u00fcro / Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.750C", "maps": [], @@ -362176,8 +341262,6 @@ }, "description": "17504, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.750D", "maps": [], @@ -362210,8 +341294,6 @@ }, "description": "17505, Umkleide", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.750E", "maps": [], @@ -362244,8 +341326,6 @@ }, "description": "17507, Autoklavenlagerraum CH", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.750G", "maps": [], @@ -362278,8 +341358,6 @@ }, "description": "17508, Autoklavenlabor CH", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.750H", "maps": [], @@ -362312,8 +341390,6 @@ }, "description": "17509, Autoklavenlabor CH", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.750J", "maps": [], @@ -362346,8 +341422,6 @@ }, "description": "17511, Autoklavenlabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.751A", "maps": [], @@ -362380,8 +341454,6 @@ }, "description": "17512, Autoklavenlabor CH", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.751B", "maps": [], @@ -362414,8 +341486,6 @@ }, "description": "17513, Autoklavenlabor CH", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.751C", "maps": [], @@ -362448,8 +341518,6 @@ }, "description": "17514, Autoklavenlabor CH", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.751D", "maps": [], @@ -362482,8 +341550,6 @@ }, "description": "17515, Kompressorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.751E", "maps": [], @@ -362516,8 +341582,6 @@ }, "description": "17516, Autoklavenlabor CH", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.751F", "maps": [], @@ -362550,8 +341614,6 @@ }, "description": "17517, Autoklavenlabor CH", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.751G", "maps": [], @@ -362584,8 +341646,6 @@ }, "description": "17518, Autoklavenlabor CH", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.751H", "maps": [], @@ -362618,8 +341678,6 @@ }, "description": "17519, Autoklavenlabor CH", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.751J", "maps": [], @@ -362652,8 +341710,6 @@ }, "description": "17510, Schaltraum / Autoklavenlabor CH", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.751K", "maps": [], @@ -362686,8 +341742,6 @@ }, "description": "17521, Autoklavenlabor CH", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.752A", "maps": [], @@ -362720,8 +341774,6 @@ }, "description": "17522, Autoklavenlabor CH", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.752B", "maps": [], @@ -362754,8 +341806,6 @@ }, "description": "17523, Autoklavenlabor 5/100", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.752C", "maps": [], @@ -362788,8 +341838,6 @@ }, "description": "17524, Autoklavenlabor CH", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.752D", "maps": [], @@ -362822,8 +341870,6 @@ }, "description": "17525, Autoklavenlabor CH", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.752E", "maps": [], @@ -362856,8 +341902,6 @@ }, "description": "17526, Autoklavenlabor CH", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.752F", "maps": [], @@ -362890,8 +341934,6 @@ }, "description": "17527, Autoklavenlabor CH", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.752G", "maps": [], @@ -362924,8 +341966,6 @@ }, "description": "17528, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.752H", "maps": [], @@ -362958,8 +341998,6 @@ }, "description": "17520, Autoklavenlabor 9/100", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.752K", "maps": [], @@ -362992,8 +342030,6 @@ }, "description": "17530, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.753A", "maps": [], @@ -363026,8 +342062,6 @@ }, "description": "17531, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.753B", "maps": [], @@ -363060,8 +342094,6 @@ }, "description": "17532, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.753C", "maps": [], @@ -363094,8 +342126,6 @@ }, "description": "17540, Technikum GEN S1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.760A", "maps": [], @@ -363128,8 +342158,6 @@ }, "description": "17540A, Ger\u00e4telager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.760B", "maps": [], @@ -363162,8 +342190,6 @@ }, "description": "17540B, Vorzone", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.760C", "maps": [], @@ -363196,8 +342222,6 @@ }, "description": "17541, Elektroraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.760D", "maps": [], @@ -363230,8 +342254,6 @@ }, "description": "17542, Reindampfanlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.760E", "maps": [], @@ -363264,8 +342286,6 @@ }, "description": "17543, K\u00fchlzelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.760F", "maps": [], @@ -363298,8 +342318,6 @@ }, "description": "17544, Heizverteilung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.760G", "maps": [], @@ -363332,8 +342350,6 @@ }, "description": "17540C, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.760H", "maps": [], @@ -363366,8 +342382,6 @@ }, "description": "17532, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.770A", "maps": [], @@ -363400,8 +342414,6 @@ }, "description": "17560, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5407.EG.770B", "maps": [], @@ -363434,8 +342446,6 @@ }, "description": "17550, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "5407.Z1.760A", "maps": [], @@ -363468,8 +342478,6 @@ }, "description": "17551, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "5407.Z1.760B", "maps": [], @@ -363502,8 +342510,6 @@ }, "description": "17552, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "5407.Z1.760C", "maps": [], @@ -363536,8 +342542,6 @@ }, "description": "17561, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "5407.Z1.770B", "maps": [], @@ -363570,8 +342574,6 @@ }, "description": "17562, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "5407.Z1.770C", "maps": [], @@ -363604,8 +342606,6 @@ }, "description": "2HG228, Treppenturm", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5408.02.228", "maps": [], @@ -363638,8 +342638,6 @@ }, "description": "1 HG 101, L\u00f6sungsmittellager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5408.EG.101", "maps": [], @@ -363672,8 +342670,6 @@ }, "description": "1 HG 102, L\u00f6sungsmittellager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5408.EG.102", "maps": [], @@ -363706,8 +342702,6 @@ }, "description": "1 HG 103, L\u00f6sungsmittellager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5408.EG.103", "maps": [], @@ -363740,8 +342734,6 @@ }, "description": "1 HG 104, L\u00f6sungsmittellager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5408.EG.104", "maps": [], @@ -363774,8 +342766,6 @@ }, "description": "1 HG 105, L\u00f6sungsmittellager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5408.EG.105", "maps": [], @@ -363808,8 +342798,6 @@ }, "description": "1 HG 106, L\u00f6sungsmittellager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5408.EG.106", "maps": [], @@ -363842,8 +342830,6 @@ }, "description": "1 HG 107, L\u00f6sungsmittellager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5408.EG.107", "maps": [], @@ -363876,8 +342862,6 @@ }, "description": "1 HG 108, L\u00f6sungsmittellager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5408.EG.108", "maps": [], @@ -363910,8 +342894,6 @@ }, "description": "1 HG 109, L\u00fcftungszentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5408.EG.109", "maps": [], @@ -363944,8 +342926,6 @@ }, "description": "1 HG 110, L\u00fcftungszentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5408.EG.110", "maps": [], @@ -363978,8 +342958,6 @@ }, "description": "1 HG 111, Hochspannungsschaltanlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5408.EG.111", "maps": [], @@ -364012,8 +342990,6 @@ }, "description": "1 HG 112, Niederspannungsschaltanlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5408.EG.112", "maps": [], @@ -364046,8 +343022,6 @@ }, "description": "1 HG 113, Trafo I", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5408.EG.113", "maps": [], @@ -364080,8 +343054,6 @@ }, "description": "1 HG 114, Trafo II", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5408.EG.114", "maps": [], @@ -364114,8 +343086,6 @@ }, "description": "1 HG 115, Gasflaschen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5408.EG.115", "maps": [], @@ -364148,8 +343118,6 @@ }, "description": "1 HG 116, Gasflaschen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5408.EG.116", "maps": [], @@ -364182,8 +343150,6 @@ }, "description": "1 HG 117, Gasflaschen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5408.EG.117", "maps": [], @@ -364216,8 +343182,6 @@ }, "description": "1 HG 118, Gas\u00fcbergabestation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5408.EG.118", "maps": [], @@ -364250,8 +343214,6 @@ }, "description": "1 HG 119, Brandmeldezentrale/Hausanschl\u00fcsse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5408.EG.119", "maps": [], @@ -364284,8 +343246,6 @@ }, "description": "1 HG 120, CO2 L\u00f6schmittellagerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5408.EG.120", "maps": [], @@ -364318,8 +343278,6 @@ }, "description": "1 HG 121, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5408.EG.121", "maps": [], @@ -364352,8 +343310,6 @@ }, "description": "1 HG 123, Wendeltreppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5408.EG.123", "maps": [], @@ -364386,8 +343342,6 @@ }, "description": "1 HG 124, Lastenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5408.EG.124", "maps": [], @@ -364420,8 +343374,6 @@ }, "description": "1 HG 125, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5408.EG.125", "maps": [], @@ -364454,8 +343406,6 @@ }, "description": "1 HG 125A, Flur/Brandschutzabtrennung von Raum 1HG", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5408.EG.125A", "maps": [], @@ -364488,8 +343438,6 @@ }, "description": "1 HG 126, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5408.EG.126", "maps": [], @@ -364522,8 +343470,6 @@ }, "description": "1 HG 127, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5408.EG.127", "maps": [], @@ -364556,8 +343502,6 @@ }, "description": "1 HG 128, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5408.EG.128", "maps": [], @@ -364590,8 +343534,6 @@ }, "description": "1 HG 129, Wendeltreppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5408.EG.129", "maps": [], @@ -364624,8 +343566,6 @@ }, "description": "0 HG 101, Druckluftversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5408.U1.101", "maps": [], @@ -364658,8 +343598,6 @@ }, "description": "0 HG 102, S\u00e4ureraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5408.U1.102", "maps": [], @@ -364692,8 +343630,6 @@ }, "description": "0 HG 103, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5408.U1.103", "maps": [], @@ -364726,8 +343662,6 @@ }, "description": "0 HG 104, Neutralisation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5408.U1.104", "maps": [], @@ -364760,8 +343694,6 @@ }, "description": "0 HG 105, L\u00fcftungszentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5408.U1.105", "maps": [], @@ -364794,8 +343726,6 @@ }, "description": "0 HG 106, N\u00b2 Tanklager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5408.U1.106", "maps": [], @@ -364828,8 +343758,6 @@ }, "description": "0 HG 107, Fernmelderaum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5408.U1.107", "maps": [], @@ -364862,8 +343790,6 @@ }, "description": "0 HG 108, EDV-Hauptverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5408.U1.108", "maps": [], @@ -364896,8 +343822,6 @@ }, "description": "0 HG 109, Batterieraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5408.U1.109", "maps": [], @@ -364930,8 +343854,6 @@ }, "description": "0 HG 110, Relaisraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5408.U1.110", "maps": [], @@ -364964,8 +343886,6 @@ }, "description": "0 HG 111, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5408.U1.111", "maps": [], @@ -364998,8 +343918,6 @@ }, "description": "0 HG 112, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5408.U1.112", "maps": [], @@ -365032,8 +343950,6 @@ }, "description": "0 HG 113, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5408.U1.113", "maps": [], @@ -365066,8 +343982,6 @@ }, "description": "0 HG 114, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5408.U1.114", "maps": [], @@ -365100,8 +344014,6 @@ }, "description": "0 HG 115, Wendeltreppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5408.U1.115", "maps": [], @@ -365134,8 +344046,6 @@ }, "description": "0 HG 116, Lastaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5408.U1.116", "maps": [], @@ -365168,8 +344078,6 @@ }, "description": "0 HG 117, SM Hebeb\u00fchne", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5408.U1.117", "maps": [], @@ -365202,8 +344110,6 @@ }, "description": "001, S\u00e4uren / L\u00f6sungsmittel", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5409.EG.901", "maps": [], @@ -365236,8 +344142,6 @@ }, "description": "002, Lager Freiger\u00fcst", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5409.EG.902", "maps": [], @@ -365270,8 +344174,6 @@ }, "description": "003, Chemikalienlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5409.EG.903", "maps": [], @@ -365304,8 +344206,6 @@ }, "description": "004, Analytikraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5409.EG.904", "maps": [], @@ -365338,8 +344238,6 @@ }, "description": "005, Technikraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5409.EG.905", "maps": [], @@ -365372,8 +344270,6 @@ }, "description": "006, Halle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5409.EG.906", "maps": [], @@ -365406,8 +344302,6 @@ }, "description": "007, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5409.EG.907", "maps": [], @@ -365440,8 +344334,6 @@ }, "description": "008, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5409.EG.908", "maps": [], @@ -365474,8 +344366,6 @@ }, "description": "009, Umkleide / Dusche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5409.EG.909", "maps": [], @@ -365508,8 +344398,6 @@ }, "description": "010, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5409.EG.910", "maps": [], @@ -365542,8 +344430,6 @@ }, "description": "011, Bedienstand", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5409.EG.911", "maps": [], @@ -365576,8 +344462,6 @@ }, "description": "012, Umf\u00fcllstation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5409.EG.912", "maps": [], @@ -365610,8 +344494,6 @@ }, "description": "013, Lager f\u00fcr S\u00e4uren/Basen/Gitterb.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5409.EG.913", "maps": [], @@ -365644,8 +344526,6 @@ }, "description": "014, Lager f\u00fcr L\u00f6sungsmittel/KTCs", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5409.EG.914", "maps": [], @@ -365678,8 +344558,6 @@ }, "description": "015, Lager f\u00fcr Feststoffe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5409.EG.915", "maps": [], @@ -365712,8 +344590,6 @@ }, "description": "090, Wertstoffhof Lager/Container", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5409.EG.990", "maps": [], @@ -365746,8 +344622,6 @@ }, "description": "2001, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.001", "maps": [], @@ -365780,8 +344654,6 @@ }, "description": "2002, Cafeteria", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.002", "maps": [], @@ -365814,8 +344686,6 @@ }, "description": "2002A, Cafeteria", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.002A", "maps": [], @@ -365848,8 +344718,6 @@ }, "description": "2003, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.003", "maps": [], @@ -365882,8 +344750,6 @@ }, "description": "2004, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.004", "maps": [], @@ -365916,8 +344782,6 @@ }, "description": "2005, Biokatalyse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.005", "maps": [], @@ -365950,8 +344814,6 @@ }, "description": "2006, Biokatalyse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.006", "maps": [], @@ -365984,8 +344846,6 @@ }, "description": "2007, Biokatalyse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.007", "maps": [], @@ -366018,8 +344878,6 @@ }, "description": "2008, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.008", "maps": [], @@ -366052,8 +344910,6 @@ }, "description": "2009, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.009", "maps": [], @@ -366086,8 +344942,6 @@ }, "description": "2010, Mikroreaktor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.010", "maps": [], @@ -366120,8 +344974,6 @@ }, "description": "2011, Mikroreaktor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.011", "maps": [], @@ -366154,8 +345006,6 @@ }, "description": "2012, Mikroreaktor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.012", "maps": [], @@ -366188,8 +345038,6 @@ }, "description": "2013, Mikroreaktor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.013", "maps": [], @@ -366222,8 +345070,6 @@ }, "description": "2014, Mikroreaktor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.014", "maps": [], @@ -366256,8 +345102,6 @@ }, "description": "2015, Mikroreaktor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.015", "maps": [], @@ -366290,8 +345134,6 @@ }, "description": "2016, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.016", "maps": [], @@ -366324,8 +345166,6 @@ }, "description": "2017, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.017", "maps": [], @@ -366358,8 +345198,6 @@ }, "description": "2018, Depant. Sraubing", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.018", "maps": [], @@ -366392,8 +345230,6 @@ }, "description": "2019, Physikalische Chemie I", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.019", "maps": [], @@ -366426,8 +345262,6 @@ }, "description": "2020, Physikalische Chemie I", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.020", "maps": [], @@ -366460,8 +345294,6 @@ }, "description": "2021, Dusche-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.021", "maps": [], @@ -366494,8 +345326,6 @@ }, "description": "2022, Umkleide Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.022", "maps": [], @@ -366528,8 +345358,6 @@ }, "description": "2023, Sozialraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.023", "maps": [], @@ -366562,8 +345390,6 @@ }, "description": "2024, Umkleide Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.024", "maps": [], @@ -366596,8 +345422,6 @@ }, "description": "2025, Dusche-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.025", "maps": [], @@ -366630,8 +345454,6 @@ }, "description": "2026, Putzmittel", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.026", "maps": [], @@ -366664,8 +345486,6 @@ }, "description": "2027, Physikalische Chemie I", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.027", "maps": [], @@ -366698,8 +345518,6 @@ }, "description": "2028, B\u00fcro (ZBV)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.028", "maps": [], @@ -366732,8 +345550,6 @@ }, "description": "2029, Physikalische Chemie I", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.029", "maps": [], @@ -366766,8 +345582,6 @@ }, "description": "2030, Physikalische Chemie I", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.030", "maps": [], @@ -366800,8 +345614,6 @@ }, "description": "2031, Physikalische Chemie I (G\u00e4ste)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.031", "maps": [], @@ -366834,8 +345646,6 @@ }, "description": "2032, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.032", "maps": [], @@ -366868,8 +345678,6 @@ }, "description": "2033, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.033", "maps": [], @@ -366902,8 +345710,6 @@ }, "description": "2034, Disposition", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.034", "maps": [], @@ -366936,8 +345742,6 @@ }, "description": "2035, Disposition", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.035", "maps": [], @@ -366970,8 +345774,6 @@ }, "description": "2036, Elektrochemie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.036", "maps": [], @@ -367004,8 +345806,6 @@ }, "description": "2037, Elektrochemie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.037", "maps": [], @@ -367038,8 +345838,6 @@ }, "description": "2038, Kolloidchemie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.038", "maps": [], @@ -367072,8 +345870,6 @@ }, "description": "2039, Kolloidchemie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.039", "maps": [], @@ -367106,8 +345902,6 @@ }, "description": "2040, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.040", "maps": [], @@ -367140,8 +345934,6 @@ }, "description": "2041, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.041", "maps": [], @@ -367174,8 +345966,6 @@ }, "description": "2042, Biokatalyse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.042", "maps": [], @@ -367208,8 +345998,6 @@ }, "description": "2043, Anorg. Chemie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.043", "maps": [], @@ -367242,8 +346030,6 @@ }, "description": "2044, Anorg. Chemie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.044", "maps": [], @@ -367276,8 +346062,6 @@ }, "description": "2101, Treppenhaus 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.101", "maps": [], @@ -367310,8 +346094,6 @@ }, "description": "2102, Treppenhaus 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.102", "maps": [], @@ -367344,8 +346126,6 @@ }, "description": "2103, Treppenhaus 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.103", "maps": [], @@ -367378,8 +346158,6 @@ }, "description": "2104, Treppenhaus 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.104", "maps": [], @@ -367412,8 +346190,6 @@ }, "description": "2105, Foyer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.105", "maps": [], @@ -367446,8 +346222,6 @@ }, "description": "2105A, Windfang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.105A", "maps": [], @@ -367480,8 +346254,6 @@ }, "description": "2106, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.106", "maps": [], @@ -367514,8 +346286,6 @@ }, "description": "2107, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.107", "maps": [], @@ -367548,8 +346318,6 @@ }, "description": "2108, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.108", "maps": [], @@ -367582,8 +346350,6 @@ }, "description": "2109, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.109", "maps": [], @@ -367616,8 +346382,6 @@ }, "description": "2110, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.110", "maps": [], @@ -367650,8 +346414,6 @@ }, "description": "2111, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.111", "maps": [], @@ -367684,8 +346446,6 @@ }, "description": "2112, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.112", "maps": [], @@ -367718,8 +346478,6 @@ }, "description": "2113, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.113", "maps": [], @@ -367752,8 +346510,6 @@ }, "description": "2114, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.114", "maps": [], @@ -367786,8 +346542,6 @@ }, "description": "2115, Personen-Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.115", "maps": [], @@ -367820,8 +346574,6 @@ }, "description": "2116, Personen-Lastenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.116", "maps": [], @@ -367854,8 +346606,6 @@ }, "description": "2117, Kleing\u00fcter-Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.117", "maps": [], @@ -367888,8 +346638,6 @@ }, "description": "2201, ELT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.201", "maps": [], @@ -367922,8 +346670,6 @@ }, "description": "2202, HLS", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.202", "maps": [], @@ -367956,8 +346702,6 @@ }, "description": "2203, ELT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.203", "maps": [], @@ -367990,8 +346734,6 @@ }, "description": "2204, HLS", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.204", "maps": [], @@ -368024,8 +346766,6 @@ }, "description": "2205, ELT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.205", "maps": [], @@ -368058,8 +346798,6 @@ }, "description": "2206, HLS", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.206", "maps": [], @@ -368092,8 +346830,6 @@ }, "description": "2207, ELT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.207", "maps": [], @@ -368126,8 +346862,6 @@ }, "description": "2208, HLS", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.208", "maps": [], @@ -368160,8 +346894,6 @@ }, "description": "2209, ELT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.209", "maps": [], @@ -368194,8 +346926,6 @@ }, "description": "2210, HLS", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.210", "maps": [], @@ -368228,8 +346958,6 @@ }, "description": "2211, ELT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.211", "maps": [], @@ -368262,8 +346990,6 @@ }, "description": "2212, HLS", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.212", "maps": [], @@ -368296,8 +347022,6 @@ }, "description": "2301, Terrasse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.301", "maps": [], @@ -368330,8 +347054,6 @@ }, "description": "2705, \u00dcbergang zu Flur 3, CH 7", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5410.01.705", "maps": [], @@ -368364,8 +347086,6 @@ }, "description": "3001, Beh.-WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.001", "maps": [], @@ -368398,8 +347118,6 @@ }, "description": "3002, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.002", "maps": [], @@ -368432,8 +347150,6 @@ }, "description": "3003, Seminarraum II", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.003", "maps": [], @@ -368466,8 +347182,6 @@ }, "description": "3004, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.004", "maps": [], @@ -368500,8 +347214,6 @@ }, "description": "3005, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.005", "maps": [], @@ -368534,8 +347246,6 @@ }, "description": "3006, Macrom. Chemie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.006", "maps": [], @@ -368568,8 +347278,6 @@ }, "description": "3007, Macrom. Chemie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.007", "maps": [], @@ -368602,8 +347310,6 @@ }, "description": "3008, Macrom. Chemie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.008", "maps": [], @@ -368636,8 +347342,6 @@ }, "description": "3009, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.009", "maps": [], @@ -368670,8 +347374,6 @@ }, "description": "3010, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.010", "maps": [], @@ -368704,8 +347406,6 @@ }, "description": "3011, Macrom. Chemie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.011", "maps": [], @@ -368738,8 +347438,6 @@ }, "description": "3012, Reaktionskinetik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.012", "maps": [], @@ -368772,8 +347470,6 @@ }, "description": "3013, Reaktionskinetik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.013", "maps": [], @@ -368806,8 +347502,6 @@ }, "description": "3014, Technische Chemie I", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.014", "maps": [], @@ -368840,8 +347534,6 @@ }, "description": "3015, Technische Chemie I", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.015", "maps": [], @@ -368874,8 +347566,6 @@ }, "description": "3016, Technische Chemie I", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.016", "maps": [], @@ -368908,8 +347598,6 @@ }, "description": "3017, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.017", "maps": [], @@ -368942,8 +347630,6 @@ }, "description": "3018, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.018", "maps": [], @@ -368976,8 +347662,6 @@ }, "description": "3019, Technische Chemie I", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.019", "maps": [], @@ -369010,8 +347694,6 @@ }, "description": "3020, Technische Chemie I", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.020", "maps": [], @@ -369044,8 +347726,6 @@ }, "description": "3021, Technische Chemie I", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.021", "maps": [], @@ -369078,8 +347758,6 @@ }, "description": "3022, Dusche-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.022", "maps": [], @@ -369112,8 +347790,6 @@ }, "description": "3023, Umkleide Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.023", "maps": [], @@ -369146,8 +347822,6 @@ }, "description": "3024, Sozialraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.024", "maps": [], @@ -369180,8 +347854,6 @@ }, "description": "3025, Umkleide Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.025", "maps": [], @@ -369214,8 +347886,6 @@ }, "description": "3026, Dusche-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.026", "maps": [], @@ -369248,8 +347918,6 @@ }, "description": "3027, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.027", "maps": [], @@ -369282,8 +347950,6 @@ }, "description": "3028, Technische Chemie I, II, Macrom Chemie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.028", "maps": [], @@ -369316,8 +347982,6 @@ }, "description": "3029, ZBV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.029", "maps": [], @@ -369350,8 +348014,6 @@ }, "description": "3030, Technische Chemie II", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.030", "maps": [], @@ -369384,8 +348046,6 @@ }, "description": "3031, Technische Chemie II", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.031", "maps": [], @@ -369418,8 +348078,6 @@ }, "description": "3032, Technische Chemie II", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.032", "maps": [], @@ -369452,8 +348110,6 @@ }, "description": "3033, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.033", "maps": [], @@ -369486,8 +348142,6 @@ }, "description": "3034, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.034", "maps": [], @@ -369520,8 +348174,6 @@ }, "description": "3035, Technische Chemie II", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.035", "maps": [], @@ -369554,8 +348206,6 @@ }, "description": "3036, Technische Chemie II", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.036", "maps": [], @@ -369588,8 +348238,6 @@ }, "description": "3037, Technische Chemie II", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.037", "maps": [], @@ -369622,8 +348270,6 @@ }, "description": "3038, Technische Chemie II", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.038", "maps": [], @@ -369656,8 +348302,6 @@ }, "description": "3039, Technische Chemie II", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.039", "maps": [], @@ -369690,8 +348334,6 @@ }, "description": "3040, Macrom. Chemie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.040", "maps": [], @@ -369724,8 +348366,6 @@ }, "description": "3041, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.041", "maps": [], @@ -369758,8 +348398,6 @@ }, "description": "3042, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.042", "maps": [], @@ -369792,8 +348430,6 @@ }, "description": "3043, Macrom. Chemie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.043", "maps": [], @@ -369826,8 +348462,6 @@ }, "description": "3044, Macrom. Chemie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.044", "maps": [], @@ -369860,8 +348494,6 @@ }, "description": "3045, Macrom. Chemie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.045", "maps": [], @@ -369894,8 +348526,6 @@ }, "description": "3101, Treppenhaus 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.101", "maps": [], @@ -369928,8 +348558,6 @@ }, "description": "3102, Treppenhaus 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.102", "maps": [], @@ -369962,8 +348590,6 @@ }, "description": "3103, Treppenhaus 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.103", "maps": [], @@ -369996,8 +348622,6 @@ }, "description": "3104, Treppenhaus 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.104", "maps": [], @@ -370030,8 +348654,6 @@ }, "description": "3105, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.105", "maps": [], @@ -370064,8 +348686,6 @@ }, "description": "3106, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.106", "maps": [], @@ -370098,8 +348718,6 @@ }, "description": "3107, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.107", "maps": [], @@ -370132,8 +348750,6 @@ }, "description": "3108, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.108", "maps": [], @@ -370166,8 +348782,6 @@ }, "description": "3109, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.109", "maps": [], @@ -370200,8 +348814,6 @@ }, "description": "3110, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.110", "maps": [], @@ -370234,8 +348846,6 @@ }, "description": "3111, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.111", "maps": [], @@ -370268,8 +348878,6 @@ }, "description": "3112, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.112", "maps": [], @@ -370302,8 +348910,6 @@ }, "description": "3113, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.113", "maps": [], @@ -370336,8 +348942,6 @@ }, "description": "3114, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.114", "maps": [], @@ -370370,8 +348974,6 @@ }, "description": "3115, Personen-Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.115", "maps": [], @@ -370404,8 +349006,6 @@ }, "description": "3116, Personen/Lasten-Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.116", "maps": [], @@ -370438,8 +349038,6 @@ }, "description": "3117, Kleing\u00fcteraufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.117", "maps": [], @@ -370472,8 +349070,6 @@ }, "description": "3201, ELT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.201", "maps": [], @@ -370506,8 +349102,6 @@ }, "description": "3202, HLS", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.202", "maps": [], @@ -370540,8 +349134,6 @@ }, "description": "3203, ELT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.203", "maps": [], @@ -370574,8 +349166,6 @@ }, "description": "3204, HLS", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.204", "maps": [], @@ -370608,8 +349198,6 @@ }, "description": "3205, ELT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.205", "maps": [], @@ -370642,8 +349230,6 @@ }, "description": "3206, HLS", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.206", "maps": [], @@ -370676,8 +349262,6 @@ }, "description": "3207, ELT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.207", "maps": [], @@ -370710,8 +349294,6 @@ }, "description": "3208, HLS", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.208", "maps": [], @@ -370744,8 +349326,6 @@ }, "description": "3209, ELT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.209", "maps": [], @@ -370778,8 +349358,6 @@ }, "description": "3210, HLS", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.210", "maps": [], @@ -370812,8 +349390,6 @@ }, "description": "3211, ELT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.211", "maps": [], @@ -370846,8 +349422,6 @@ }, "description": "3212, HLS", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.212", "maps": [], @@ -370880,8 +349454,6 @@ }, "description": "3301, Balkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5410.02.301", "maps": [], @@ -370914,8 +349486,6 @@ }, "description": "4001, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.001", "maps": [], @@ -370948,8 +349518,6 @@ }, "description": "4002, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.002", "maps": [], @@ -370982,8 +349550,6 @@ }, "description": "4003, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.003", "maps": [], @@ -371016,8 +349582,6 @@ }, "description": "4004, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.004", "maps": [], @@ -371050,8 +349614,6 @@ }, "description": "4005, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.005", "maps": [], @@ -371084,8 +349646,6 @@ }, "description": "4006, Molekulare Katalyse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.006", "maps": [], @@ -371118,8 +349678,6 @@ }, "description": "4007, Molekulare Katalyse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.007", "maps": [], @@ -371152,8 +349710,6 @@ }, "description": "4008, Molekulare Katalyse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.008", "maps": [], @@ -371186,8 +349742,6 @@ }, "description": "4009, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.009", "maps": [], @@ -371220,8 +349774,6 @@ }, "description": "4010, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.010", "maps": [], @@ -371254,8 +349806,6 @@ }, "description": "4011, Organische Chemie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.011", "maps": [], @@ -371288,8 +349838,6 @@ }, "description": "4012, Organische Chemie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.012", "maps": [], @@ -371322,8 +349870,6 @@ }, "description": "4013, Organische Chemie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.013", "maps": [], @@ -371356,8 +349902,6 @@ }, "description": "4014, Organische Chemie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.014", "maps": [], @@ -371390,8 +349934,6 @@ }, "description": "4015, Organische Chemie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.015", "maps": [], @@ -371424,8 +349966,6 @@ }, "description": "4016, Organische Chemie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.016", "maps": [], @@ -371458,8 +349998,6 @@ }, "description": "4017, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.017", "maps": [], @@ -371492,8 +350030,6 @@ }, "description": "4018, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.018", "maps": [], @@ -371526,8 +350062,6 @@ }, "description": "4019, Organische Chemie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.019", "maps": [], @@ -371560,8 +350094,6 @@ }, "description": "4020, Organische Chemie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.020", "maps": [], @@ -371594,8 +350126,6 @@ }, "description": "4021, Organische Chemie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.021", "maps": [], @@ -371628,8 +350158,6 @@ }, "description": "4022, Duschraum-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.022", "maps": [], @@ -371662,8 +350190,6 @@ }, "description": "4023, Umkleide Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.023", "maps": [], @@ -371696,8 +350222,6 @@ }, "description": "4024, Sozialraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.024", "maps": [], @@ -371730,8 +350254,6 @@ }, "description": "4025, Umkleide Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.025", "maps": [], @@ -371764,8 +350286,6 @@ }, "description": "4026, Duschraum-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.026", "maps": [], @@ -371798,8 +350318,6 @@ }, "description": "4027, Putzmittel", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.027", "maps": [], @@ -371832,8 +350350,6 @@ }, "description": "4028, Org./Anorg. Chemie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.028", "maps": [], @@ -371866,8 +350382,6 @@ }, "description": "4029, ZBV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.029", "maps": [], @@ -371900,8 +350414,6 @@ }, "description": "4030, Anorg. Chemie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.030", "maps": [], @@ -371934,8 +350446,6 @@ }, "description": "4031, Anorg. Chemie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.031", "maps": [], @@ -371968,8 +350478,6 @@ }, "description": "4032, Anorg. Chemie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.032", "maps": [], @@ -372002,8 +350510,6 @@ }, "description": "4033, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.033", "maps": [], @@ -372036,8 +350542,6 @@ }, "description": "4034, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.034", "maps": [], @@ -372070,8 +350574,6 @@ }, "description": "4035, Anorg. Chemie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.035", "maps": [], @@ -372104,8 +350606,6 @@ }, "description": "4036, Anorg. Chemie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.036", "maps": [], @@ -372138,8 +350638,6 @@ }, "description": "4037, Anorg. Chemie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.037", "maps": [], @@ -372172,8 +350670,6 @@ }, "description": "4038, Anorg. Chemie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.038", "maps": [], @@ -372206,8 +350702,6 @@ }, "description": "4039, Anorg. Chemie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.039", "maps": [], @@ -372240,8 +350734,6 @@ }, "description": "4040, Anorg. Chemie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.040", "maps": [], @@ -372274,8 +350766,6 @@ }, "description": "4041, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.041", "maps": [], @@ -372308,8 +350798,6 @@ }, "description": "4042, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.042", "maps": [], @@ -372342,8 +350830,6 @@ }, "description": "4043, Anorg. Chemie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.043", "maps": [], @@ -372376,8 +350862,6 @@ }, "description": "4044, Anorg. Chemie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.044", "maps": [], @@ -372410,8 +350894,6 @@ }, "description": "4045, Anorg. Chemie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.045", "maps": [], @@ -372444,8 +350926,6 @@ }, "description": "4046, Konferenzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.046", "maps": [], @@ -372478,8 +350958,6 @@ }, "description": "4047, ZBV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.047", "maps": [], @@ -372512,8 +350990,6 @@ }, "description": "4101, Treppenhaus 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.101", "maps": [], @@ -372546,8 +351022,6 @@ }, "description": "4102, Treppenhaus 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.102", "maps": [], @@ -372580,8 +351054,6 @@ }, "description": "4103, Treppenhaus 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.103", "maps": [], @@ -372614,8 +351086,6 @@ }, "description": "4104, Treppenhaus 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.104", "maps": [], @@ -372648,8 +351118,6 @@ }, "description": "4105, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.105", "maps": [], @@ -372682,8 +351150,6 @@ }, "description": "4106, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.106", "maps": [], @@ -372716,8 +351182,6 @@ }, "description": "4107, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.107", "maps": [], @@ -372750,8 +351214,6 @@ }, "description": "4108, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.108", "maps": [], @@ -372784,8 +351246,6 @@ }, "description": "4109, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.109", "maps": [], @@ -372818,8 +351278,6 @@ }, "description": "4110, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.110", "maps": [], @@ -372852,8 +351310,6 @@ }, "description": "4111, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.111", "maps": [], @@ -372886,8 +351342,6 @@ }, "description": "4112, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.112", "maps": [], @@ -372920,8 +351374,6 @@ }, "description": "4113, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.113", "maps": [], @@ -372954,8 +351406,6 @@ }, "description": "4114, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.114", "maps": [], @@ -372988,8 +351438,6 @@ }, "description": "4115, Personen-Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.115", "maps": [], @@ -373022,8 +351470,6 @@ }, "description": "4116, Personen/Lasten-Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.116", "maps": [], @@ -373056,8 +351502,6 @@ }, "description": "3117, Kleing\u00fcteraufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.117", "maps": [], @@ -373090,8 +351534,6 @@ }, "description": "4201, ELT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.201", "maps": [], @@ -373124,8 +351566,6 @@ }, "description": "4202, HLS", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.202", "maps": [], @@ -373158,8 +351598,6 @@ }, "description": "4203, ELT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.203", "maps": [], @@ -373192,8 +351630,6 @@ }, "description": "4204, HLS", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.204", "maps": [], @@ -373226,8 +351662,6 @@ }, "description": "4205, ELT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.205", "maps": [], @@ -373260,8 +351694,6 @@ }, "description": "4206, HLS", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.206", "maps": [], @@ -373294,8 +351726,6 @@ }, "description": "4207, ELT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.207", "maps": [], @@ -373328,8 +351758,6 @@ }, "description": "4208, HLS", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.208", "maps": [], @@ -373362,8 +351790,6 @@ }, "description": "4209, ELT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.209", "maps": [], @@ -373396,8 +351822,6 @@ }, "description": "4210, HLS", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.210", "maps": [], @@ -373430,8 +351854,6 @@ }, "description": "4211, ELT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.211", "maps": [], @@ -373464,8 +351886,6 @@ }, "description": "4212, HLS", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.212", "maps": [], @@ -373498,8 +351918,6 @@ }, "description": "4301, Balkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.301", "maps": [], @@ -373532,8 +351950,6 @@ }, "description": "4302, Balkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5410.03.302", "maps": [], @@ -373566,8 +351982,6 @@ }, "description": "5101, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5410.04.101", "maps": [], @@ -373600,8 +352014,6 @@ }, "description": "5102, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5410.04.102", "maps": [], @@ -373634,8 +352046,6 @@ }, "description": "5103, Treppenhaus 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5410.04.103", "maps": [], @@ -373668,8 +352078,6 @@ }, "description": "5104, Treppenhaus 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5410.04.104", "maps": [], @@ -373702,8 +352110,6 @@ }, "description": "5116, Personen/Lasten-Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5410.04.116", "maps": [], @@ -373736,8 +352142,6 @@ }, "description": "5201, L\u00fcftungszentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5410.04.201", "maps": [], @@ -373770,8 +352174,6 @@ }, "description": "5202, HLS", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5410.04.202", "maps": [], @@ -373804,8 +352206,6 @@ }, "description": "5203, ELT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5410.04.203", "maps": [], @@ -373838,8 +352238,6 @@ }, "description": "5204, HLS", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5410.04.204", "maps": [], @@ -373872,8 +352270,6 @@ }, "description": "5205, ELT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5410.04.205", "maps": [], @@ -373906,8 +352302,6 @@ }, "description": "5206, L\u00fcftungszentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5410.04.206", "maps": [], @@ -373940,8 +352334,6 @@ }, "description": "5207, Server", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5410.04.207", "maps": [], @@ -373974,8 +352366,6 @@ }, "description": "5208, L\u00fcftungszentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5410.04.208", "maps": [], @@ -374008,8 +352398,6 @@ }, "description": "5209, ELT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5410.04.209", "maps": [], @@ -374042,8 +352430,6 @@ }, "description": "5210, HLS", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5410.04.210", "maps": [], @@ -374076,8 +352462,6 @@ }, "description": "5211, ELT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5410.04.211", "maps": [], @@ -374110,8 +352494,6 @@ }, "description": "5212, HLS", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5410.04.212", "maps": [], @@ -374144,8 +352526,6 @@ }, "description": "5213, L\u00fcftungszentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5410.04.213", "maps": [], @@ -374178,8 +352558,6 @@ }, "description": "5214, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5410.04.214", "maps": [], @@ -374212,8 +352590,6 @@ }, "description": "5215, L\u00fcftungszentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5410.04.215", "maps": [], @@ -374246,8 +352622,6 @@ }, "description": "5216, Server", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5410.04.216", "maps": [], @@ -374280,8 +352654,6 @@ }, "description": "5217, L\u00fcftungszentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5410.04.217", "maps": [], @@ -374314,8 +352686,6 @@ }, "description": "5218, L\u00fcftungszentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5410.04.218", "maps": [], @@ -374348,8 +352718,6 @@ }, "description": "5301, Aussenbereich Dach", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5410.04.301", "maps": [], @@ -374382,8 +352750,6 @@ }, "description": "1001, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5410.EG.001", "maps": [], @@ -374416,8 +352782,6 @@ }, "description": "1002, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5410.EG.002", "maps": [], @@ -374450,8 +352814,6 @@ }, "description": "1003, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5410.EG.003", "maps": [], @@ -374484,8 +352846,6 @@ }, "description": "1004, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5410.EG.004", "maps": [], @@ -374518,8 +352878,6 @@ }, "description": "1005, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5410.EG.005", "maps": [], @@ -374552,8 +352910,6 @@ }, "description": "1006, Erste-Hilfe-Raum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5410.EG.006", "maps": [], @@ -374586,8 +352942,6 @@ }, "description": "1007, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5410.EG.007", "maps": [], @@ -374620,8 +352974,6 @@ }, "description": "1101, Treppenhaus 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5410.EG.101", "maps": [], @@ -374654,8 +353006,6 @@ }, "description": "1102, Treppenhaus 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5410.EG.102", "maps": [], @@ -374688,8 +353038,6 @@ }, "description": "1103, Treppenhaus 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5410.EG.103", "maps": [], @@ -374722,8 +353070,6 @@ }, "description": "1104, Treppenhaus 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5410.EG.104", "maps": [], @@ -374756,8 +353102,6 @@ }, "description": "1105, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5410.EG.105", "maps": [], @@ -374790,8 +353134,6 @@ }, "description": "1106, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5410.EG.106", "maps": [], @@ -374824,8 +353166,6 @@ }, "description": "1107, ZBV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5410.EG.107", "maps": [], @@ -374858,8 +353198,6 @@ }, "description": "1108, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5410.EG.108", "maps": [], @@ -374892,8 +353230,6 @@ }, "description": "1109, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5410.EG.109", "maps": [], @@ -374926,8 +353262,6 @@ }, "description": "1110, ZBV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5410.EG.110", "maps": [], @@ -374960,8 +353294,6 @@ }, "description": "1111, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5410.EG.111", "maps": [], @@ -374994,8 +353326,6 @@ }, "description": "1112, Personen-Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5410.EG.112", "maps": [], @@ -375028,8 +353358,6 @@ }, "description": "1113, Personen-Lastenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5410.EG.113", "maps": [], @@ -375062,8 +353390,6 @@ }, "description": "1114, Kleing\u00fcteraufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5410.EG.114", "maps": [], @@ -375096,8 +353422,6 @@ }, "description": "1201, ELT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5410.EG.201", "maps": [], @@ -375130,8 +353454,6 @@ }, "description": "1202, HLS", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5410.EG.202", "maps": [], @@ -375164,8 +353486,6 @@ }, "description": "1203, ELT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5410.EG.203", "maps": [], @@ -375198,8 +353518,6 @@ }, "description": "1204, EDV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5410.EG.204", "maps": [], @@ -375232,8 +353550,6 @@ }, "description": "1205, Medienkanal S\u00fcd", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5410.EG.205", "maps": [], @@ -375266,8 +353582,6 @@ }, "description": "1206, Medienkanal Nord-S\u00fcd", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5410.EG.206", "maps": [], @@ -375300,8 +353614,6 @@ }, "description": "1207, Maschinenraum-Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5410.EG.207", "maps": [], @@ -375334,8 +353646,6 @@ }, "description": "1208, HLS", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5410.EG.208", "maps": [], @@ -375368,8 +353678,6 @@ }, "description": "1209, FM HV/GMA", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5410.EG.209", "maps": [], @@ -375402,8 +353710,6 @@ }, "description": "1210, EDV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5410.EG.210", "maps": [], @@ -375436,8 +353742,6 @@ }, "description": "1211, ELT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5410.EG.211", "maps": [], @@ -375470,8 +353774,6 @@ }, "description": "1212, HLS", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5410.EG.212", "maps": [], @@ -375504,8 +353806,6 @@ }, "description": "1213, Bat. USV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5410.EG.213", "maps": [], @@ -375538,8 +353838,6 @@ }, "description": "1214, Stat. USV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5410.EG.214", "maps": [], @@ -375572,8 +353870,6 @@ }, "description": "1215, SiBel.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5410.EG.215", "maps": [], @@ -375606,8 +353902,6 @@ }, "description": "1216, NSHV NN", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5410.EG.216", "maps": [], @@ -375640,8 +353934,6 @@ }, "description": "1217, NSHV EN", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5410.EG.217", "maps": [], @@ -375674,8 +353966,6 @@ }, "description": "1218, Medienkanal Nord", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5410.EG.218", "maps": [], @@ -375708,8 +353998,6 @@ }, "description": "1219, EDV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5410.EG.219", "maps": [], @@ -375742,8 +354030,6 @@ }, "description": "1220, Maschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5410.EG.220", "maps": [], @@ -375776,8 +354062,6 @@ }, "description": "1221, Installationsebene", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5410.EG.221", "maps": [], @@ -375810,8 +354094,6 @@ }, "description": "1222, Installationsebene", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5410.EG.222", "maps": [], @@ -375844,8 +354126,6 @@ }, "description": "-1201, T 1 EN", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5410.U1.201", "maps": [], @@ -375878,8 +354158,6 @@ }, "description": "-1202, Reserve", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5410.U1.202", "maps": [], @@ -375912,8 +354190,6 @@ }, "description": "-1203, T 1 NN", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5410.U1.203", "maps": [], @@ -375946,8 +354222,6 @@ }, "description": "-1204, T 2 NN", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5410.U1.204", "maps": [], @@ -375980,8 +354254,6 @@ }, "description": "-1205, T 3 NN", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5410.U1.205", "maps": [], @@ -376014,8 +354286,6 @@ }, "description": "-1207, Zustieg", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5410.U1.207", "maps": [], @@ -376048,8 +354318,6 @@ }, "description": "-1208, Einbring\u00f6ffnung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5410.U1.208", "maps": [], @@ -376082,8 +354350,6 @@ }, "description": "-1210, Medienkanal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5410.U1.210", "maps": [], @@ -376116,8 +354382,6 @@ }, "description": "2001, PuMi", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5413.01.001", "maps": [], @@ -376150,8 +354414,6 @@ }, "description": "2002, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5413.01.002", "maps": [], @@ -376184,8 +354446,6 @@ }, "description": "2003, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5413.01.003", "maps": [], @@ -376218,8 +354478,6 @@ }, "description": "2004, E UV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5413.01.004", "maps": [], @@ -376252,8 +354510,6 @@ }, "description": "2005, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5413.01.005", "maps": [], @@ -376286,8 +354542,6 @@ }, "description": "2006, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5413.01.006", "maps": [], @@ -376320,8 +354574,6 @@ }, "description": "2007, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5413.01.007", "maps": [], @@ -376354,8 +354606,6 @@ }, "description": "2007A, Treppe Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5413.01.007A", "maps": [], @@ -376388,8 +354638,6 @@ }, "description": "2010, Schacht 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5413.01.010", "maps": [], @@ -376422,8 +354670,6 @@ }, "description": "2014, Schacht 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5413.01.014", "maps": [], @@ -376456,8 +354702,6 @@ }, "description": "2101, Server", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5413.01.101", "maps": [], @@ -376490,8 +354734,6 @@ }, "description": "2102, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5413.01.102", "maps": [], @@ -376524,8 +354766,6 @@ }, "description": "2103, Kopierer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5413.01.103", "maps": [], @@ -376558,8 +354798,6 @@ }, "description": "2104, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5413.01.104", "maps": [], @@ -376592,8 +354830,6 @@ }, "description": "2105, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5413.01.105", "maps": [], @@ -376626,8 +354862,6 @@ }, "description": "2107, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5413.01.107", "maps": [], @@ -376660,8 +354894,6 @@ }, "description": "2108, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5413.01.108", "maps": [], @@ -376694,8 +354926,6 @@ }, "description": "2109, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5413.01.109", "maps": [], @@ -376728,8 +354958,6 @@ }, "description": "2110, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5413.01.110", "maps": [], @@ -376762,8 +354990,6 @@ }, "description": "2111, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5413.01.111", "maps": [], @@ -376796,8 +355022,6 @@ }, "description": "2112, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5413.01.112", "maps": [], @@ -376830,8 +355054,6 @@ }, "description": "2113, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5413.01.113", "maps": [], @@ -376864,8 +355086,6 @@ }, "description": "2114, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5413.01.114", "maps": [], @@ -376898,8 +355118,6 @@ }, "description": "2115, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5413.01.115", "maps": [], @@ -376932,8 +355150,6 @@ }, "description": "2116, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5413.01.116", "maps": [], @@ -376966,8 +355182,6 @@ }, "description": "2117, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5413.01.117", "maps": [], @@ -377000,8 +355214,6 @@ }, "description": "2118, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5413.01.118", "maps": [], @@ -377034,8 +355246,6 @@ }, "description": "2119, Kopierer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5413.01.119", "maps": [], @@ -377068,8 +355278,6 @@ }, "description": "2120, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5413.01.120", "maps": [], @@ -377102,8 +355310,6 @@ }, "description": "2121, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5413.01.121", "maps": [], @@ -377136,8 +355342,6 @@ }, "description": "2122, EDV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5413.01.122", "maps": [], @@ -377170,8 +355374,6 @@ }, "description": "2123, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5413.01.123", "maps": [], @@ -377204,8 +355406,6 @@ }, "description": "2124, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5413.01.124", "maps": [], @@ -377238,8 +355438,6 @@ }, "description": "2125, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5413.01.125", "maps": [], @@ -377272,8 +355470,6 @@ }, "description": "2126, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5413.01.126", "maps": [], @@ -377306,8 +355502,6 @@ }, "description": "2127, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5413.01.127", "maps": [], @@ -377340,8 +355534,6 @@ }, "description": "2129, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5413.01.129", "maps": [], @@ -377374,8 +355566,6 @@ }, "description": "2130, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5413.01.130", "maps": [], @@ -377408,8 +355598,6 @@ }, "description": "2131, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5413.01.131", "maps": [], @@ -377442,8 +355630,6 @@ }, "description": "2132, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5413.01.132", "maps": [], @@ -377476,8 +355662,6 @@ }, "description": "2133, Kopierer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5413.01.133", "maps": [], @@ -377510,8 +355694,6 @@ }, "description": "2134, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5413.01.134", "maps": [], @@ -377544,8 +355726,6 @@ }, "description": "2135, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5413.01.135", "maps": [], @@ -377578,8 +355758,6 @@ }, "description": "2136, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5413.01.136", "maps": [], @@ -377612,8 +355790,6 @@ }, "description": "2137, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5413.01.137", "maps": [], @@ -377646,8 +355822,6 @@ }, "description": "2701, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5413.01.701", "maps": [], @@ -377680,8 +355854,6 @@ }, "description": "2702, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5413.01.702", "maps": [], @@ -377714,8 +355886,6 @@ }, "description": "2703, Treppenhaus 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5413.01.703", "maps": [], @@ -377748,8 +355918,6 @@ }, "description": "2705, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5413.01.705", "maps": [], @@ -377782,8 +355950,6 @@ }, "description": "2706, Treppenhaus 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5413.01.706", "maps": [], @@ -377816,8 +355982,6 @@ }, "description": "2707, Flur Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5413.01.707", "maps": [], @@ -377850,8 +356014,6 @@ }, "description": "2901, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5413.01.901", "maps": [], @@ -377884,8 +356046,6 @@ }, "description": "2901, Terrasse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5413.01.902", "maps": [], @@ -377918,8 +356078,6 @@ }, "description": "2903, Terrasse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5413.01.903", "maps": [], @@ -377952,8 +356110,6 @@ }, "description": "3001, TGA RLT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5413.DG.001", "maps": [], @@ -377986,8 +356142,6 @@ }, "description": "3001A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5413.DG.001A", "maps": [], @@ -378020,8 +356174,6 @@ }, "description": "3002, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5413.DG.002", "maps": [], @@ -378054,8 +356206,6 @@ }, "description": "3003, TGA Sanit\u00e4r", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5413.DG.003", "maps": [], @@ -378088,8 +356238,6 @@ }, "description": "3004, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5413.DG.004", "maps": [], @@ -378122,8 +356270,6 @@ }, "description": "1001, WC-Vorraum Damen u. Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5413.EG.001", "maps": [], @@ -378156,8 +356302,6 @@ }, "description": "1002, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5413.EG.002", "maps": [], @@ -378190,8 +356334,6 @@ }, "description": "1003, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5413.EG.003", "maps": [], @@ -378224,8 +356366,6 @@ }, "description": "1004, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5413.EG.004", "maps": [], @@ -378258,8 +356398,6 @@ }, "description": "1005, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5413.EG.005", "maps": [], @@ -378292,8 +356430,6 @@ }, "description": "1006, Beh.-WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5413.EG.006", "maps": [], @@ -378326,8 +356462,6 @@ }, "description": "1007, PuMi", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5413.EG.007", "maps": [], @@ -378360,8 +356494,6 @@ }, "description": "1008, Batterie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5413.EG.008", "maps": [], @@ -378394,8 +356526,6 @@ }, "description": "1010, Hausanschluss", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5413.EG.010", "maps": [], @@ -378428,8 +356558,6 @@ }, "description": "1011, Elektro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5413.EG.011", "maps": [], @@ -378462,8 +356590,6 @@ }, "description": "1012, Fernmelde", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5413.EG.012", "maps": [], @@ -378496,8 +356622,6 @@ }, "description": "1013, Hausanschluss/-BMZ", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5413.EG.013", "maps": [], @@ -378530,8 +356654,6 @@ }, "description": "1014, Gase/Fernm.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5413.EG.014", "maps": [], @@ -378564,8 +356686,6 @@ }, "description": "1101, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5413.EG.101", "maps": [], @@ -378598,8 +356718,6 @@ }, "description": "1102, Sozialraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5413.EG.102", "maps": [], @@ -378632,8 +356750,6 @@ }, "description": "1103, Lager 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5413.EG.103", "maps": [], @@ -378666,8 +356782,6 @@ }, "description": "1104, Lager 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5413.EG.104", "maps": [], @@ -378700,8 +356814,6 @@ }, "description": "1105, Lager 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5413.EG.105", "maps": [], @@ -378734,8 +356846,6 @@ }, "description": "1106, Lager 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5413.EG.106", "maps": [], @@ -378768,8 +356878,6 @@ }, "description": "1202, S 1 Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5413.EG.201", "maps": [], @@ -378802,8 +356910,6 @@ }, "description": "1202, S 1 Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5413.EG.202", "maps": [], @@ -378836,8 +356942,6 @@ }, "description": "1203, S 1 Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5413.EG.203", "maps": [], @@ -378870,8 +356974,6 @@ }, "description": "1204, S 1 Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5413.EG.204", "maps": [], @@ -378904,8 +357006,6 @@ }, "description": "1205, S 1 Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5413.EG.205", "maps": [], @@ -378938,8 +357038,6 @@ }, "description": "1206, S 1 Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5413.EG.206", "maps": [], @@ -378972,8 +357070,6 @@ }, "description": "1207, Vorraum K\u00fchlzelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5413.EG.207", "maps": [], @@ -379006,8 +357102,6 @@ }, "description": "1208, K\u00fchlzelle 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5413.EG.208", "maps": [], @@ -379040,8 +357134,6 @@ }, "description": "1209, K\u00fchlzelle 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5413.EG.209", "maps": [], @@ -379074,8 +357166,6 @@ }, "description": "1210, NMR-Halle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5413.EG.210", "maps": [], @@ -379108,8 +357198,6 @@ }, "description": "1211, Operator 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5413.EG.211", "maps": [], @@ -379142,8 +357230,6 @@ }, "description": "1212, Operator 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5413.EG.212", "maps": [], @@ -379176,8 +357262,6 @@ }, "description": "1213, Umf\u00fcllstation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5413.EG.213", "maps": [], @@ -379210,8 +357294,6 @@ }, "description": "1214, Lager 5", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5413.EG.214", "maps": [], @@ -379244,8 +357326,6 @@ }, "description": "1501, Trafo", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5413.EG.501", "maps": [], @@ -379278,8 +357358,6 @@ }, "description": "1501A, Trafo 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5413.EG.501A", "maps": [], @@ -379312,8 +357390,6 @@ }, "description": "1501B, Trafo 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5413.EG.501B", "maps": [], @@ -379346,8 +357422,6 @@ }, "description": "1502, Stickstofftanks", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5413.EG.502", "maps": [], @@ -379380,8 +357454,6 @@ }, "description": "1503, M\u00fcll", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5413.EG.503", "maps": [], @@ -379414,8 +357486,6 @@ }, "description": "1701, Windfang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5413.EG.701", "maps": [], @@ -379448,8 +357518,6 @@ }, "description": "1702, Foyer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5413.EG.702", "maps": [], @@ -379482,8 +357550,6 @@ }, "description": "1703, Treppenhaus 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5413.EG.703", "maps": [], @@ -379516,8 +357582,6 @@ }, "description": "1704, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5413.EG.704", "maps": [], @@ -379550,8 +357614,6 @@ }, "description": "1705, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5413.EG.705", "maps": [], @@ -379584,8 +357646,6 @@ }, "description": "1706, Treppenhaus 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5413.EG.706", "maps": [], @@ -379618,8 +357678,6 @@ }, "description": "1901, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5413.EG.901", "maps": [], @@ -379652,8 +357710,6 @@ }, "description": "1001, Sozialraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5414.01.001", "maps": [], @@ -379686,8 +357742,6 @@ }, "description": "1002, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5414.01.002", "maps": [], @@ -379720,8 +357774,6 @@ }, "description": "1003, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5414.01.003", "maps": [], @@ -379754,8 +357806,6 @@ }, "description": "1004, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5414.01.004", "maps": [], @@ -379788,8 +357838,6 @@ }, "description": "1005, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5414.01.005", "maps": [], @@ -379822,8 +357870,6 @@ }, "description": "1006, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5414.01.006", "maps": [], @@ -379856,8 +357902,6 @@ }, "description": "1007, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5414.01.007", "maps": [], @@ -379890,8 +357934,6 @@ }, "description": "1008, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5414.01.008", "maps": [], @@ -379924,8 +357966,6 @@ }, "description": "1009, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5414.01.009", "maps": [], @@ -379958,8 +357998,6 @@ }, "description": "1010, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5414.01.010", "maps": [], @@ -379992,8 +358030,6 @@ }, "description": "1010A, Kopierer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5414.01.010A", "maps": [], @@ -380026,8 +358062,6 @@ }, "description": "1011, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5414.01.011", "maps": [], @@ -380060,8 +358094,6 @@ }, "description": "1012, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5414.01.012", "maps": [], @@ -380094,8 +358126,6 @@ }, "description": "1013, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5414.01.013", "maps": [], @@ -380128,8 +358158,6 @@ }, "description": "1014, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5414.01.014", "maps": [], @@ -380162,8 +358190,6 @@ }, "description": "1015, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5414.01.015", "maps": [], @@ -380196,8 +358222,6 @@ }, "description": "1016, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5414.01.016", "maps": [], @@ -380230,8 +358254,6 @@ }, "description": "1017, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5414.01.017", "maps": [], @@ -380264,8 +358286,6 @@ }, "description": "1018, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5414.01.018", "maps": [], @@ -380298,8 +358318,6 @@ }, "description": "1019, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5414.01.019", "maps": [], @@ -380332,8 +358350,6 @@ }, "description": "1020, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5414.01.020", "maps": [], @@ -380366,8 +358382,6 @@ }, "description": "1021, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5414.01.021", "maps": [], @@ -380400,8 +358414,6 @@ }, "description": "1021A, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5414.01.021A", "maps": [], @@ -380434,8 +358446,6 @@ }, "description": "1022, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5414.01.022", "maps": [], @@ -380468,8 +358478,6 @@ }, "description": "1022A, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5414.01.022A", "maps": [], @@ -380502,8 +358510,6 @@ }, "description": "1023, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5414.01.023", "maps": [], @@ -380536,8 +358542,6 @@ }, "description": "1024, Schweiss-Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5414.01.024", "maps": [], @@ -380570,8 +358574,6 @@ }, "description": "1025, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5414.01.025", "maps": [], @@ -380604,8 +358606,6 @@ }, "description": "1026, Meister B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5414.01.026", "maps": [], @@ -380638,8 +358638,6 @@ }, "description": "1027, Chemielabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5414.01.027", "maps": [], @@ -380672,8 +358670,6 @@ }, "description": "1028, Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5414.01.028", "maps": [], @@ -380706,8 +358702,6 @@ }, "description": "1029, Beh.-WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5414.01.029", "maps": [], @@ -380740,8 +358734,6 @@ }, "description": "1030, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5414.01.030", "maps": [], @@ -380774,8 +358766,6 @@ }, "description": "1070A, Treppe Forum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5414.01.070A", "maps": [], @@ -380808,8 +358798,6 @@ }, "description": "1070B, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5414.01.070B", "maps": [], @@ -380842,8 +358830,6 @@ }, "description": "1070C, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5414.01.070C", "maps": [], @@ -380876,8 +358862,6 @@ }, "description": "1070D, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5414.01.070D", "maps": [], @@ -380910,8 +358894,6 @@ }, "description": "1070E, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5414.01.070E", "maps": [], @@ -380944,8 +358926,6 @@ }, "description": "1070F, Treppenhaus 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5414.01.070F", "maps": [], @@ -380978,8 +358958,6 @@ }, "description": "1070M, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5414.01.070M", "maps": [], @@ -381012,8 +358990,6 @@ }, "description": "1070N, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5414.01.070N", "maps": [], @@ -381046,8 +359022,6 @@ }, "description": "1070O, Treppenhaus 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5414.01.070O", "maps": [], @@ -381080,8 +359054,6 @@ }, "description": "1070P, Treppenhaus 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5414.01.070P", "maps": [], @@ -381114,8 +359086,6 @@ }, "description": "1090, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5414.01.090", "maps": [], @@ -381148,8 +359118,6 @@ }, "description": "1098A, HLSK Schacht 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5414.01.098A", "maps": [], @@ -381182,8 +359150,6 @@ }, "description": "1098B, HLSK Schacht 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5414.01.098B", "maps": [], @@ -381216,8 +359182,6 @@ }, "description": "1098C, ELT.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5414.01.098C", "maps": [], @@ -381250,8 +359214,6 @@ }, "description": "1098D, HLSK Schacht 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5414.01.098D", "maps": [], @@ -381284,8 +359246,6 @@ }, "description": "1098E, ELT.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5414.01.098E", "maps": [], @@ -381318,8 +359278,6 @@ }, "description": "1098F, HLSK Schacht 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5414.01.098F", "maps": [], @@ -381352,8 +359310,6 @@ }, "description": "2001, Sozialraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5414.02.001", "maps": [], @@ -381386,8 +359342,6 @@ }, "description": "2002, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5414.02.002", "maps": [], @@ -381420,8 +359374,6 @@ }, "description": "2003, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5414.02.003", "maps": [], @@ -381454,8 +359406,6 @@ }, "description": "2004, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5414.02.004", "maps": [], @@ -381488,8 +359438,6 @@ }, "description": "2005, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5414.02.005", "maps": [], @@ -381522,8 +359470,6 @@ }, "description": "2006, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5414.02.006", "maps": [], @@ -381556,8 +359502,6 @@ }, "description": "2007, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5414.02.007", "maps": [], @@ -381590,8 +359534,6 @@ }, "description": "2008, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5414.02.008", "maps": [], @@ -381624,8 +359566,6 @@ }, "description": "2009, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5414.02.009", "maps": [], @@ -381658,8 +359598,6 @@ }, "description": "2010, Archiv", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5414.02.010", "maps": [], @@ -381692,8 +359630,6 @@ }, "description": "2010A, Kopierer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5414.02.010A", "maps": [], @@ -381726,8 +359662,6 @@ }, "description": "2011, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5414.02.011", "maps": [], @@ -381760,8 +359694,6 @@ }, "description": "2012, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5414.02.012", "maps": [], @@ -381794,8 +359726,6 @@ }, "description": "2013, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5414.02.013", "maps": [], @@ -381828,8 +359758,6 @@ }, "description": "2014, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5414.02.014", "maps": [], @@ -381862,8 +359790,6 @@ }, "description": "2015, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5414.02.015", "maps": [], @@ -381896,8 +359822,6 @@ }, "description": "2016, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5414.02.016", "maps": [], @@ -381930,8 +359854,6 @@ }, "description": "2017, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5414.02.017", "maps": [], @@ -381964,8 +359886,6 @@ }, "description": "2018, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5414.02.018", "maps": [], @@ -381998,8 +359918,6 @@ }, "description": "2019, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5414.02.019", "maps": [], @@ -382032,8 +359950,6 @@ }, "description": "2020, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5414.02.020", "maps": [], @@ -382066,8 +359982,6 @@ }, "description": "2021, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5414.02.021", "maps": [], @@ -382100,8 +360014,6 @@ }, "description": "2021A, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5414.02.021A", "maps": [], @@ -382134,8 +360046,6 @@ }, "description": "2022, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5414.02.022", "maps": [], @@ -382168,8 +360078,6 @@ }, "description": "2022, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5414.02.022A", "maps": [], @@ -382202,8 +360110,6 @@ }, "description": "2023, Chemie Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5414.02.023", "maps": [], @@ -382236,8 +360142,6 @@ }, "description": "2024, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5414.02.024", "maps": [], @@ -382270,8 +360174,6 @@ }, "description": "2025, Chemie Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5414.02.025", "maps": [], @@ -382304,8 +360206,6 @@ }, "description": "2026, Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5414.02.026", "maps": [], @@ -382338,8 +360238,6 @@ }, "description": "2027, Chemie Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5414.02.027", "maps": [], @@ -382372,8 +360270,6 @@ }, "description": "2028, ZBV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5414.02.028", "maps": [], @@ -382406,8 +360302,6 @@ }, "description": "2029, Beh.-WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5414.02.029", "maps": [], @@ -382440,8 +360334,6 @@ }, "description": "2030, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5414.02.030", "maps": [], @@ -382474,8 +360366,6 @@ }, "description": "2070A, Treppe Forum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5414.02.070A", "maps": [], @@ -382508,8 +360398,6 @@ }, "description": "2070B, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5414.02.070B", "maps": [], @@ -382542,8 +360430,6 @@ }, "description": "2070C, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5414.02.070C", "maps": [], @@ -382576,8 +360462,6 @@ }, "description": "2070D, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5414.02.070D", "maps": [], @@ -382610,8 +360494,6 @@ }, "description": "2070E, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5414.02.070E", "maps": [], @@ -382644,8 +360526,6 @@ }, "description": "2070F, Treppenhaus 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5414.02.070F", "maps": [], @@ -382678,8 +360558,6 @@ }, "description": "2070M, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5414.02.070M", "maps": [], @@ -382712,8 +360590,6 @@ }, "description": "2070N, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5414.02.070N", "maps": [], @@ -382746,8 +360622,6 @@ }, "description": "2070O, Treppenhaus 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5414.02.070O", "maps": [], @@ -382780,8 +360654,6 @@ }, "description": "2070P, Treppenhaus 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5414.02.070P", "maps": [], @@ -382814,8 +360686,6 @@ }, "description": "2090, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5414.02.090", "maps": [], @@ -382848,8 +360718,6 @@ }, "description": "2098A, HLSK Schacht 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5414.02.098A", "maps": [], @@ -382882,8 +360750,6 @@ }, "description": "2098B, HLSK Schacht 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5414.02.098B", "maps": [], @@ -382916,8 +360782,6 @@ }, "description": "2098C, ELT.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5414.02.098C", "maps": [], @@ -382950,8 +360814,6 @@ }, "description": "2098D, HLSK Schacht 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5414.02.098D", "maps": [], @@ -382984,8 +360846,6 @@ }, "description": "2098E, ELT.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5414.02.098E", "maps": [], @@ -383018,8 +360878,6 @@ }, "description": "2098F, HLSK Schacht 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5414.02.098F", "maps": [], @@ -383052,8 +360910,6 @@ }, "description": "3001, Technik RLT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5414.DG.001", "maps": [], @@ -383086,8 +360942,6 @@ }, "description": "3070N, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5414.DG.070N", "maps": [], @@ -383120,8 +360974,6 @@ }, "description": "3070O, Treppenhaus 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5414.DG.070O", "maps": [], @@ -383154,8 +361006,6 @@ }, "description": "3091, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5414.DG.090", "maps": [], @@ -383188,8 +361038,6 @@ }, "description": "3091, Maschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5414.DG.091", "maps": [], @@ -383300,8 +361148,6 @@ }, "description": "0002, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5414.EG.002", "maps": [], @@ -383334,8 +361180,6 @@ }, "description": "0003, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5414.EG.003", "maps": [], @@ -383368,8 +361212,6 @@ }, "description": "0004, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5414.EG.004", "maps": [], @@ -383402,8 +361244,6 @@ }, "description": "0004A, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5414.EG.004A", "maps": [], @@ -383436,8 +361276,6 @@ }, "description": "0005, Beh.-WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5414.EG.005", "maps": [], @@ -383470,8 +361308,6 @@ }, "description": "0006, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5414.EG.006", "maps": [], @@ -383504,8 +361340,6 @@ }, "description": "0006A, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5414.EG.006A", "maps": [], @@ -383538,8 +361372,6 @@ }, "description": "0007, M\u00fcllraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5414.EG.007", "maps": [], @@ -383572,8 +361404,6 @@ }, "description": "0008, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5414.EG.008", "maps": [], @@ -383606,8 +361436,6 @@ }, "description": "0009, 1. Hilferaum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5414.EG.009", "maps": [], @@ -383640,8 +361468,6 @@ }, "description": "0010, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5414.EG.010", "maps": [], @@ -383674,8 +361500,6 @@ }, "description": "0070, Forumshalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5414.EG.070", "maps": [], @@ -383708,8 +361532,6 @@ }, "description": "0070A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5414.EG.070A", "maps": [], @@ -383742,8 +361564,6 @@ }, "description": "0070E, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5414.EG.070E", "maps": [], @@ -383776,8 +361596,6 @@ }, "description": "0070F, Treppenhaus 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5414.EG.070F", "maps": [], @@ -383810,8 +361628,6 @@ }, "description": "0070G, Erschlie\u00dfung-Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5414.EG.070G", "maps": [], @@ -383844,8 +361660,6 @@ }, "description": "0070H, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5414.EG.070H", "maps": [], @@ -383878,8 +361692,6 @@ }, "description": "0070I, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5414.EG.070I", "maps": [], @@ -383912,8 +361724,6 @@ }, "description": "0070J, Erschlie\u00dfung-Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5414.EG.070J", "maps": [], @@ -383946,8 +361756,6 @@ }, "description": "0070N, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5414.EG.070N", "maps": [], @@ -383980,8 +361788,6 @@ }, "description": "0070O, Treppenhaus 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5414.EG.070O", "maps": [], @@ -384014,8 +361820,6 @@ }, "description": "0070P, Treppenhaus 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5414.EG.070P", "maps": [], @@ -384048,8 +361852,6 @@ }, "description": "0071, Windfang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5414.EG.071", "maps": [], @@ -384082,8 +361884,6 @@ }, "description": "0090, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5414.EG.090", "maps": [], @@ -384116,8 +361916,6 @@ }, "description": "0098A, HLSK", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5414.EG.098A", "maps": [], @@ -384150,8 +361948,6 @@ }, "description": "0098B, HLSK", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5414.EG.098B", "maps": [], @@ -384184,8 +361980,6 @@ }, "description": "0098C, ELT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5414.EG.098C", "maps": [], @@ -384218,8 +362012,6 @@ }, "description": "0098D, HLSK", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5414.EG.098D", "maps": [], @@ -384252,8 +362044,6 @@ }, "description": "0098E, ELT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5414.EG.098E", "maps": [], @@ -384286,8 +362076,6 @@ }, "description": "U001, Simulations-Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5414.U1.001", "maps": [], @@ -384320,8 +362108,6 @@ }, "description": "U005, NR-Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5414.U1.002", "maps": [], @@ -384354,8 +362140,6 @@ }, "description": "U003, EDV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5414.U1.003", "maps": [], @@ -384388,8 +362172,6 @@ }, "description": "U004, Niederspannung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5414.U1.004", "maps": [], @@ -384422,8 +362204,6 @@ }, "description": "U005, NR-Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5414.U1.005", "maps": [], @@ -384456,8 +362236,6 @@ }, "description": "U009, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5414.U1.009", "maps": [], @@ -384490,8 +362268,6 @@ }, "description": "U010, Mittelspannung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5414.U1.010", "maps": [], @@ -384524,8 +362300,6 @@ }, "description": "U011, Niederspannung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5414.U1.011", "maps": [], @@ -384558,8 +362332,6 @@ }, "description": "U012, Notstrom", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5414.U1.012", "maps": [], @@ -384592,8 +362364,6 @@ }, "description": "U014, Sanit\u00e4r Zentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5414.U1.014", "maps": [], @@ -384626,8 +362396,6 @@ }, "description": "U015, TWK/Erdgas \u00dcbergabe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5414.U1.015", "maps": [], @@ -384660,8 +362428,6 @@ }, "description": "U016, Server 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5414.U1.016", "maps": [], @@ -384694,8 +362460,6 @@ }, "description": "U017, Server 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5414.U1.017", "maps": [], @@ -384728,8 +362492,6 @@ }, "description": "U018, LRZ-Verteilerknoten", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5414.U1.018", "maps": [], @@ -384762,8 +362524,6 @@ }, "description": "U019, SIBE", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5414.U1.019", "maps": [], @@ -384796,8 +362556,6 @@ }, "description": "U020, BMZ", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5414.U1.020", "maps": [], @@ -384830,8 +362588,6 @@ }, "description": "U022, Heizung/K\u00e4ltezentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5414.U1.021", "maps": [], @@ -384864,8 +362620,6 @@ }, "description": "U022, Druckluftzentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5414.U1.022", "maps": [], @@ -384898,8 +362652,6 @@ }, "description": "U023, PM Zentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5414.U1.023", "maps": [], @@ -384932,8 +362684,6 @@ }, "description": "U024, Dusche-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5414.U1.024", "maps": [], @@ -384966,8 +362716,6 @@ }, "description": "U025, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5414.U1.025", "maps": [], @@ -385000,8 +362748,6 @@ }, "description": "U026, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5414.U1.026", "maps": [], @@ -385034,8 +362780,6 @@ }, "description": "U027, Dusche-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5414.U1.027", "maps": [], @@ -385068,8 +362812,6 @@ }, "description": "U050, Trafo 1 Lab.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5414.U1.050", "maps": [], @@ -385102,8 +362844,6 @@ }, "description": "U051, Trafo 2 Lab.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5414.U1.051", "maps": [], @@ -385136,8 +362876,6 @@ }, "description": "U052, Trafo 3 Lab.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5414.U1.052", "maps": [], @@ -385170,8 +362908,6 @@ }, "description": "U053, Trafo 4 Lab.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5414.U1.053", "maps": [], @@ -385204,8 +362940,6 @@ }, "description": "U054, Trafo 5 Lab.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5414.U1.054", "maps": [], @@ -385238,8 +362972,6 @@ }, "description": "U055, Mittelspannung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5414.U1.055", "maps": [], @@ -385272,8 +363004,6 @@ }, "description": "U070E, Flur-Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5414.U1.070E", "maps": [], @@ -385306,8 +363036,6 @@ }, "description": "U070F, Treppenhaus 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5414.U1.070F", "maps": [], @@ -385340,8 +363068,6 @@ }, "description": "U070H, Treppe Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5414.U1.070H", "maps": [], @@ -385374,8 +363100,6 @@ }, "description": "U070M, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5414.U1.070M", "maps": [], @@ -385408,8 +363132,6 @@ }, "description": "U070N, Treppenhaus 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5414.U1.070N", "maps": [], @@ -385442,8 +363164,6 @@ }, "description": "U090, Aufzug Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5414.U1.090", "maps": [], @@ -385476,8 +363196,6 @@ }, "description": "U098A, HLSK Schacht 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5414.U1.098A", "maps": [], @@ -385510,8 +363228,6 @@ }, "description": "U098B, HLSK Schacht 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5414.U1.098B", "maps": [], @@ -385544,8 +363260,6 @@ }, "description": "U098C, ELT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5414.U1.098C", "maps": [], @@ -385578,8 +363292,6 @@ }, "description": "U098D, HLSK Schacht 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5414.U1.098D", "maps": [], @@ -385612,8 +363324,6 @@ }, "description": "01.003, Kommunikationsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.003", "maps": [], @@ -385646,8 +363356,6 @@ }, "description": "01.004, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.004", "maps": [], @@ -385680,8 +363388,6 @@ }, "description": "01.005, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.005", "maps": [], @@ -385714,8 +363420,6 @@ }, "description": "01.006, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.006", "maps": [], @@ -385748,8 +363452,6 @@ }, "description": "01.007, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.007", "maps": [], @@ -385782,8 +363484,6 @@ }, "description": "01.008, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.008", "maps": [], @@ -385816,8 +363516,6 @@ }, "description": "01.009, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.009", "maps": [], @@ -385850,8 +363548,6 @@ }, "description": "01.010, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.010", "maps": [], @@ -385884,8 +363580,6 @@ }, "description": "01.011, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.011", "maps": [], @@ -385918,8 +363612,6 @@ }, "description": "01.012, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.012", "maps": [], @@ -385952,8 +363644,6 @@ }, "description": "01.013, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.013", "maps": [], @@ -385986,8 +363676,6 @@ }, "description": "01.014, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.014", "maps": [], @@ -386020,8 +363708,6 @@ }, "description": "01.015, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.015", "maps": [], @@ -386054,8 +363740,6 @@ }, "description": "01.016, Rheameter S2 Messraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.016", "maps": [], @@ -386088,8 +363772,6 @@ }, "description": "01.017, Kopierraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.017", "maps": [], @@ -386122,8 +363804,6 @@ }, "description": "01.018, Mikroskopie S2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.018", "maps": [], @@ -386156,8 +363836,6 @@ }, "description": "01.019, Ger\u00e4te/K\u00fchlraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.019", "maps": [], @@ -386190,8 +363868,6 @@ }, "description": "01.020, Mikrobiologie S2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.020", "maps": [], @@ -386224,8 +363900,6 @@ }, "description": "01.021, Nasslabore", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.021", "maps": [], @@ -386258,8 +363932,6 @@ }, "description": "01.022, Labor Zellkultur S1/S2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.022", "maps": [], @@ -386292,8 +363964,6 @@ }, "description": "01.023, Labor/Schreib.-/Auswertepl.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.023", "maps": [], @@ -386326,8 +363996,6 @@ }, "description": "01.024, GR Chromatogra.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.024", "maps": [], @@ -386360,8 +364028,6 @@ }, "description": "01.025, GR Analytik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.025", "maps": [], @@ -386394,8 +364060,6 @@ }, "description": "01.026, Ger\u00e4telager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.026", "maps": [], @@ -386428,8 +364092,6 @@ }, "description": "01.027, Labor Chemie/Biochemie OC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.027", "maps": [], @@ -386462,8 +364124,6 @@ }, "description": "01.028, Labor /Schreib.-/Auswertepl.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.028", "maps": [], @@ -386496,8 +364156,6 @@ }, "description": "01.029, Medienlabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.029", "maps": [], @@ -386530,8 +364188,6 @@ }, "description": "01.030, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.030", "maps": [], @@ -386564,8 +364220,6 @@ }, "description": "01.031, Labor Chemie/Biochemie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.031", "maps": [], @@ -386598,8 +364252,6 @@ }, "description": "01.032, Labor Chemie/Biochemie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.032", "maps": [], @@ -386632,8 +364284,6 @@ }, "description": "01.033, Labor /Schreib.-/Auswertepl.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.033", "maps": [], @@ -386666,8 +364316,6 @@ }, "description": "01.034, Labor Chemie/Biochemie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.034", "maps": [], @@ -386700,8 +364348,6 @@ }, "description": "01.035, Labor Chemie/Biochemie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.035", "maps": [], @@ -386734,8 +364380,6 @@ }, "description": "01.037, Kopierraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.037", "maps": [], @@ -386768,8 +364412,6 @@ }, "description": "01.038, Mikrobiologie S2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.038", "maps": [], @@ -386802,8 +364444,6 @@ }, "description": "01.039, Labor Zellkultur S1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.039", "maps": [], @@ -386836,8 +364476,6 @@ }, "description": "01.040, Labor Chemie/Biochemie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.040", "maps": [], @@ -386870,8 +364508,6 @@ }, "description": "01.041, Putzmittel", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.041", "maps": [], @@ -386904,8 +364540,6 @@ }, "description": "01.042, Kopierraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.042", "maps": [], @@ -386938,8 +364572,6 @@ }, "description": "01.043, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.043", "maps": [], @@ -386972,8 +364604,6 @@ }, "description": "01.070, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.070", "maps": [], @@ -387006,8 +364636,6 @@ }, "description": "01.071, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.071", "maps": [], @@ -387040,8 +364668,6 @@ }, "description": "01.072, Dusche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.072", "maps": [], @@ -387074,8 +364700,6 @@ }, "description": "01.073, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.073", "maps": [], @@ -387108,8 +364732,6 @@ }, "description": "01.074, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.074", "maps": [], @@ -387142,8 +364764,6 @@ }, "description": "01.701A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.701A", "maps": [], @@ -387176,8 +364796,6 @@ }, "description": "01.701B, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.701B", "maps": [], @@ -387210,8 +364828,6 @@ }, "description": "01.701C, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.701C", "maps": [], @@ -387244,8 +364860,6 @@ }, "description": "01.702, Schacht Personenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.702", "maps": [], @@ -387278,8 +364892,6 @@ }, "description": "01.710, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.710", "maps": [], @@ -387312,8 +364924,6 @@ }, "description": "01.711A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.711A", "maps": [], @@ -387346,8 +364956,6 @@ }, "description": "01.711B, Gardarobe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.711B", "maps": [], @@ -387380,8 +364988,6 @@ }, "description": "01.712, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.712", "maps": [], @@ -387414,8 +365020,6 @@ }, "description": "01.720, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.720", "maps": [], @@ -387448,8 +365052,6 @@ }, "description": "01.721, Schacht Lastenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.721", "maps": [], @@ -387482,8 +365084,6 @@ }, "description": "01.722, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.722", "maps": [], @@ -387516,8 +365116,6 @@ }, "description": "01.723, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.723", "maps": [], @@ -387550,8 +365148,6 @@ }, "description": "01.724, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.724", "maps": [], @@ -387584,8 +365180,6 @@ }, "description": "01.725, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.725", "maps": [], @@ -387618,8 +365212,6 @@ }, "description": "01.730, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.730", "maps": [], @@ -387652,8 +365244,6 @@ }, "description": "01.731, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.731", "maps": [], @@ -387686,8 +365276,6 @@ }, "description": "01.732A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.732A", "maps": [], @@ -387720,8 +365308,6 @@ }, "description": "01.732B, Gardarobe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.732B", "maps": [], @@ -387754,8 +365340,6 @@ }, "description": "01.732C, Gardarobe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.732C", "maps": [], @@ -387788,8 +365372,6 @@ }, "description": "01.812, Technik EDV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.812", "maps": [], @@ -387822,8 +365404,6 @@ }, "description": "01.832, Technik EDV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.832", "maps": [], @@ -387856,8 +365436,6 @@ }, "description": "01.910, Technik Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.910", "maps": [], @@ -387890,8 +365468,6 @@ }, "description": "01.911, Technik Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.911", "maps": [], @@ -387924,8 +365500,6 @@ }, "description": "01.920A, Technik Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.920A", "maps": [], @@ -387958,8 +365532,6 @@ }, "description": "01.920B, Technik Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.920B", "maps": [], @@ -387992,8 +365564,6 @@ }, "description": "01.921, Technik Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.921", "maps": [], @@ -388026,8 +365596,6 @@ }, "description": "01.930, Technik Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5415.01.930", "maps": [], @@ -388060,8 +365628,6 @@ }, "description": "02.003, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.003", "maps": [], @@ -388094,8 +365660,6 @@ }, "description": "02.004, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.004", "maps": [], @@ -388128,8 +365692,6 @@ }, "description": "02.005, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.005", "maps": [], @@ -388162,8 +365724,6 @@ }, "description": "02.006, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.006", "maps": [], @@ -388196,8 +365756,6 @@ }, "description": "02.007, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.007", "maps": [], @@ -388230,8 +365788,6 @@ }, "description": "02.008, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.008", "maps": [], @@ -388264,8 +365820,6 @@ }, "description": "02.009, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.009", "maps": [], @@ -388298,8 +365852,6 @@ }, "description": "02.010, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.010", "maps": [], @@ -388332,8 +365884,6 @@ }, "description": "02.011, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.011", "maps": [], @@ -388366,8 +365916,6 @@ }, "description": "02.012, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.012", "maps": [], @@ -388400,8 +365948,6 @@ }, "description": "02.013, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.013", "maps": [], @@ -388434,8 +365980,6 @@ }, "description": "02.014, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.014", "maps": [], @@ -388468,8 +366012,6 @@ }, "description": "02.015, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.015", "maps": [], @@ -388502,8 +366044,6 @@ }, "description": "02.016, Labor GR Analytik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.016", "maps": [], @@ -388536,8 +366076,6 @@ }, "description": "02.017, GR Spektrometer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.017", "maps": [], @@ -388570,8 +366108,6 @@ }, "description": "02.018, Kopierraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.018", "maps": [], @@ -388604,8 +366140,6 @@ }, "description": "02.019, GR Zentrifugen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.019", "maps": [], @@ -388638,8 +366172,6 @@ }, "description": "02.020, K\u00fchlraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.020", "maps": [], @@ -388672,8 +366204,6 @@ }, "description": "02.021, Nasslabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.021", "maps": [], @@ -388706,8 +366236,6 @@ }, "description": "02.022, Labor/Schreib.-/Auswertepl.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.022", "maps": [], @@ -388740,8 +366268,6 @@ }, "description": "02.023, Lichtmikroskopie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.023", "maps": [], @@ -388774,8 +366300,6 @@ }, "description": "02.024, GR Mikrobiologie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.024", "maps": [], @@ -388808,8 +366332,6 @@ }, "description": "02.025, K\u00fchlraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.025", "maps": [], @@ -388842,8 +366364,6 @@ }, "description": "02.026, Nasslabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.026", "maps": [], @@ -388876,8 +366396,6 @@ }, "description": "02.027, Eukaryotisch 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.027", "maps": [], @@ -388910,8 +366428,6 @@ }, "description": "02.028, Labor/Schreib.-/Auswertepl.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.028", "maps": [], @@ -388944,8 +366460,6 @@ }, "description": "02.029, Medienlabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.029", "maps": [], @@ -388978,8 +366492,6 @@ }, "description": "02.030, GR Mikrobiologie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.030", "maps": [], @@ -389012,8 +366524,6 @@ }, "description": "02.031A, Generatorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.031A", "maps": [], @@ -389046,8 +366556,6 @@ }, "description": "02.031B, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.031B", "maps": [], @@ -389080,8 +366588,6 @@ }, "description": "02.032, OC Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.032", "maps": [], @@ -389114,8 +366620,6 @@ }, "description": "02.033, Labor/Schreib.-/Auswertepl.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.033", "maps": [], @@ -389148,8 +366652,6 @@ }, "description": "02.034, K\u00fchlzelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.034", "maps": [], @@ -389182,8 +366684,6 @@ }, "description": "02.035, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.035", "maps": [], @@ -389216,8 +366716,6 @@ }, "description": "02.037, Kopierraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.037", "maps": [], @@ -389250,8 +366748,6 @@ }, "description": "02.038A, Radionuklidlabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.038A", "maps": [], @@ -389284,8 +366780,6 @@ }, "description": "02.038B, Radionuklidlabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.038B", "maps": [], @@ -389318,8 +366812,6 @@ }, "description": "02.039, GR Mikrobiologie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.039", "maps": [], @@ -389352,8 +366844,6 @@ }, "description": "02.040, Nasslabor Biochemie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.040", "maps": [], @@ -389386,8 +366876,6 @@ }, "description": "02.041, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.041", "maps": [], @@ -389420,8 +366908,6 @@ }, "description": "02.042, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.042", "maps": [], @@ -389454,8 +366940,6 @@ }, "description": "02.043, Kopierraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.043", "maps": [], @@ -389488,8 +366972,6 @@ }, "description": "02.044, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.044", "maps": [], @@ -389522,8 +367004,6 @@ }, "description": "02.070, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.070", "maps": [], @@ -389556,8 +367036,6 @@ }, "description": "02.071, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.071", "maps": [], @@ -389590,8 +367068,6 @@ }, "description": "02.072, Dusche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.072", "maps": [], @@ -389624,8 +367100,6 @@ }, "description": "02.073, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.073", "maps": [], @@ -389658,8 +367132,6 @@ }, "description": "02.074, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.074", "maps": [], @@ -389692,8 +367164,6 @@ }, "description": "02.701A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.701A", "maps": [], @@ -389726,8 +367196,6 @@ }, "description": "02.701B, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.701B", "maps": [], @@ -389760,8 +367228,6 @@ }, "description": "02.701C, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.701C", "maps": [], @@ -389794,8 +367260,6 @@ }, "description": "02.702, Schacht Personenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.702", "maps": [], @@ -389828,8 +367292,6 @@ }, "description": "02.710, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.710", "maps": [], @@ -389862,8 +367324,6 @@ }, "description": "02.711, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.711", "maps": [], @@ -389896,8 +367356,6 @@ }, "description": "02.711B, Gardarobe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.711B", "maps": [], @@ -389930,8 +367388,6 @@ }, "description": "02.712, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.712", "maps": [], @@ -389964,8 +367420,6 @@ }, "description": "02.720, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.720", "maps": [], @@ -389998,8 +367452,6 @@ }, "description": "02.721, Schacht Lastenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.721", "maps": [], @@ -390032,8 +367484,6 @@ }, "description": "02.722, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.722", "maps": [], @@ -390066,8 +367516,6 @@ }, "description": "02.723, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.723", "maps": [], @@ -390100,8 +367548,6 @@ }, "description": "02.724, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.724", "maps": [], @@ -390134,8 +367580,6 @@ }, "description": "02.725, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.725", "maps": [], @@ -390168,8 +367612,6 @@ }, "description": "02.730, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.730", "maps": [], @@ -390202,8 +367644,6 @@ }, "description": "02.731, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.731", "maps": [], @@ -390236,8 +367676,6 @@ }, "description": "02.732A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.732A", "maps": [], @@ -390270,8 +367708,6 @@ }, "description": "02.732B, Gardarobe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.732B", "maps": [], @@ -390304,8 +367740,6 @@ }, "description": "02.732C, Gardarobe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.732C", "maps": [], @@ -390338,8 +367772,6 @@ }, "description": "02.812, Technik EDV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.812", "maps": [], @@ -390372,8 +367804,6 @@ }, "description": "02.832, Technik EDV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.832", "maps": [], @@ -390406,8 +367836,6 @@ }, "description": "02.910, Technik Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.910", "maps": [], @@ -390440,8 +367868,6 @@ }, "description": "02.911, Technik Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.911", "maps": [], @@ -390474,8 +367900,6 @@ }, "description": "02.920A, Technik Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.920A", "maps": [], @@ -390508,8 +367932,6 @@ }, "description": "02.920B, Technik Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.920B", "maps": [], @@ -390542,8 +367964,6 @@ }, "description": "02.921, Technik Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.921", "maps": [], @@ -390576,8 +367996,6 @@ }, "description": "02.930, Technik Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5415.02.930", "maps": [], @@ -390610,8 +368028,6 @@ }, "description": "03.003, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.003", "maps": [], @@ -390644,8 +368060,6 @@ }, "description": "03.004, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.004", "maps": [], @@ -390678,8 +368092,6 @@ }, "description": "03.005, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.005", "maps": [], @@ -390712,8 +368124,6 @@ }, "description": "03.006, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.006", "maps": [], @@ -390746,8 +368156,6 @@ }, "description": "03.007, Sozialraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.007", "maps": [], @@ -390780,8 +368188,6 @@ }, "description": "03.008, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.008", "maps": [], @@ -390814,8 +368220,6 @@ }, "description": "03.009, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.009", "maps": [], @@ -390848,8 +368252,6 @@ }, "description": "03.010, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.010", "maps": [], @@ -390882,8 +368284,6 @@ }, "description": "03.011, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.011", "maps": [], @@ -390916,8 +368316,6 @@ }, "description": "03.012, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.012", "maps": [], @@ -390950,8 +368348,6 @@ }, "description": "03.013, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.013", "maps": [], @@ -390984,8 +368380,6 @@ }, "description": "03.014, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.014", "maps": [], @@ -391018,8 +368412,6 @@ }, "description": "03.015, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.015", "maps": [], @@ -391052,8 +368444,6 @@ }, "description": "03.016, Kopierraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.016", "maps": [], @@ -391086,8 +368476,6 @@ }, "description": "03.018, K\u00fchlraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.018", "maps": [], @@ -391120,8 +368508,6 @@ }, "description": "03.019, Zellkultur S1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.019", "maps": [], @@ -391154,8 +368540,6 @@ }, "description": "03.020, Nasslabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.020", "maps": [], @@ -391188,8 +368572,6 @@ }, "description": "03.021, Labor/Schreib.-/Auswertepl.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.021", "maps": [], @@ -391222,8 +368604,6 @@ }, "description": "03.022, Medienlabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.022", "maps": [], @@ -391256,8 +368636,6 @@ }, "description": "03.023B, K\u00fchlschr\u00e4nke", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.023B", "maps": [], @@ -391290,8 +368668,6 @@ }, "description": "03.024, Nasslabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.024", "maps": [], @@ -391324,8 +368700,6 @@ }, "description": "03.025, GR Mikrobiologie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.025", "maps": [], @@ -391358,8 +368732,6 @@ }, "description": "03.026, Labor/Schreib.-/Auswertepl.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.026", "maps": [], @@ -391392,8 +368764,6 @@ }, "description": "03.027, GR Zentrifugen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.027", "maps": [], @@ -391426,8 +368796,6 @@ }, "description": "03.028, MBi Brutraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.028", "maps": [], @@ -391460,8 +368828,6 @@ }, "description": "03.025, Mikroskopie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.030", "maps": [], @@ -391494,8 +368860,6 @@ }, "description": "03.031, Lager/Verbrauchsmaterial", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.031", "maps": [], @@ -391528,8 +368892,6 @@ }, "description": "03.032, chromatographie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.032", "maps": [], @@ -391562,8 +368924,6 @@ }, "description": "03.033, GR Analytik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.033", "maps": [], @@ -391596,8 +368956,6 @@ }, "description": "03.034, Mikroskopie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.034", "maps": [], @@ -391630,8 +368988,6 @@ }, "description": "03.035, Mikroskopie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.035", "maps": [], @@ -391664,8 +369020,6 @@ }, "description": "03.036, Mikroskopie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.036", "maps": [], @@ -391698,8 +369052,6 @@ }, "description": "03.037, Fluoreszenzmikroskopie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.037", "maps": [], @@ -391732,8 +369084,6 @@ }, "description": "03.039, Optische Fa.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.039", "maps": [], @@ -391766,8 +369116,6 @@ }, "description": "03.041, Optische Fa.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.041", "maps": [], @@ -391800,8 +369148,6 @@ }, "description": "03.043, Mikroskopie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.043", "maps": [], @@ -391834,8 +369180,6 @@ }, "description": "03.044, Fluoreszenzmikroskopie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.044", "maps": [], @@ -391868,8 +369212,6 @@ }, "description": "03.046, Mikroskopie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.046", "maps": [], @@ -391902,8 +369244,6 @@ }, "description": "03.047, Mikroskopie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.047", "maps": [], @@ -391936,8 +369276,6 @@ }, "description": "03.048, AFM", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.048", "maps": [], @@ -391970,8 +369308,6 @@ }, "description": "03.049, Mikro. Praktikum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.049", "maps": [], @@ -392004,8 +369340,6 @@ }, "description": "03.050, Mikroskopie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.050", "maps": [], @@ -392038,8 +369372,6 @@ }, "description": "03.051, Mikroskopie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.051", "maps": [], @@ -392072,8 +369404,6 @@ }, "description": "03.052, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.052", "maps": [], @@ -392106,8 +369436,6 @@ }, "description": "03.053, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.053", "maps": [], @@ -392140,8 +369468,6 @@ }, "description": "03.054, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.054", "maps": [], @@ -392174,8 +369500,6 @@ }, "description": "03.055, Kopierraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.055", "maps": [], @@ -392208,8 +369532,6 @@ }, "description": "03.056, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.056", "maps": [], @@ -392242,8 +369564,6 @@ }, "description": "03.070, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.070", "maps": [], @@ -392276,8 +369596,6 @@ }, "description": "03.071, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.071", "maps": [], @@ -392310,8 +369628,6 @@ }, "description": "03.072, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.072", "maps": [], @@ -392344,8 +369660,6 @@ }, "description": "03.073, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.073", "maps": [], @@ -392378,8 +369692,6 @@ }, "description": "03.074, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.074", "maps": [], @@ -392412,8 +369724,6 @@ }, "description": "03.701A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.701A", "maps": [], @@ -392446,8 +369756,6 @@ }, "description": "03.701B, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.701B", "maps": [], @@ -392480,8 +369788,6 @@ }, "description": "03.701C, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.701C", "maps": [], @@ -392514,8 +369820,6 @@ }, "description": "03.702, Schacht f. Personenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.702", "maps": [], @@ -392548,8 +369852,6 @@ }, "description": "03.710, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.710", "maps": [], @@ -392582,8 +369884,6 @@ }, "description": "03.711, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.711", "maps": [], @@ -392616,8 +369916,6 @@ }, "description": "03.711B, Gardarobe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.711B", "maps": [], @@ -392650,8 +369948,6 @@ }, "description": "03.712, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.712", "maps": [], @@ -392684,8 +369980,6 @@ }, "description": "03.720, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.720", "maps": [], @@ -392718,8 +370012,6 @@ }, "description": "03.721, Schacht f. Lastenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.721", "maps": [], @@ -392752,8 +370044,6 @@ }, "description": "03.722, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.722", "maps": [], @@ -392786,8 +370076,6 @@ }, "description": "03.723, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.723", "maps": [], @@ -392820,8 +370108,6 @@ }, "description": "03.724, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.724", "maps": [], @@ -392854,8 +370140,6 @@ }, "description": "03.730, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.730", "maps": [], @@ -392888,8 +370172,6 @@ }, "description": "03.731, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.731", "maps": [], @@ -392922,8 +370204,6 @@ }, "description": "03.812, Technik EDV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.812", "maps": [], @@ -392956,8 +370236,6 @@ }, "description": "03.832, Technik EDV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.832", "maps": [], @@ -392990,8 +370268,6 @@ }, "description": "03.910, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.910", "maps": [], @@ -393024,8 +370300,6 @@ }, "description": "03.911, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.911", "maps": [], @@ -393058,8 +370332,6 @@ }, "description": "03.920A, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.920A", "maps": [], @@ -393092,8 +370364,6 @@ }, "description": "03.920B, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.920B", "maps": [], @@ -393126,8 +370396,6 @@ }, "description": "03.921, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.921", "maps": [], @@ -393160,8 +370428,6 @@ }, "description": "03.930, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5415.03.930", "maps": [], @@ -393194,8 +370460,6 @@ }, "description": "04.710, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5415.DG.710", "maps": [], @@ -393228,8 +370492,6 @@ }, "description": "04.720, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5415.DG.720", "maps": [], @@ -393262,8 +370524,6 @@ }, "description": "04.721, Schacht Lastenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5415.DG.721", "maps": [], @@ -393296,8 +370556,6 @@ }, "description": "04.722, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5415.DG.722", "maps": [], @@ -393330,8 +370588,6 @@ }, "description": "04.723, Auzugsmaschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5415.DG.723", "maps": [], @@ -393364,8 +370620,6 @@ }, "description": "04.810, L\u00fcftungszentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5415.DG.810", "maps": [], @@ -393398,8 +370652,6 @@ }, "description": "04.811, Druckluftzentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5415.DG.811", "maps": [], @@ -393432,8 +370684,6 @@ }, "description": "04.812, Technikzentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5415.DG.812", "maps": [], @@ -393466,8 +370716,6 @@ }, "description": "04.813, Aussenluftansaugung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5415.DG.813", "maps": [], @@ -393500,8 +370748,6 @@ }, "description": "EG.003, Cafereria", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.003", "maps": [], @@ -393534,8 +370780,6 @@ }, "description": "EG.004, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.004", "maps": [], @@ -393568,8 +370812,6 @@ }, "description": "EG.005, Erste Hilfe-Raum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.005", "maps": [], @@ -393602,8 +370844,6 @@ }, "description": "EG.006A, Konferenzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.006A", "maps": [], @@ -393636,8 +370876,6 @@ }, "description": "EG.006B, Konferenzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.006B", "maps": [], @@ -393670,8 +370908,6 @@ }, "description": "EG.007, Lager/Abstellraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.007", "maps": [], @@ -393704,8 +370940,6 @@ }, "description": "EG.008, Labor Chemie/Biochemie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.008", "maps": [], @@ -393738,8 +370972,6 @@ }, "description": "EG.009, Labor Auswertungen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.009", "maps": [], @@ -393772,8 +371004,6 @@ }, "description": "EG.010, Fluor.-mikr.STED", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.010", "maps": [], @@ -393806,8 +371036,6 @@ }, "description": "EG.011, Optische Fallen kl.1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.011", "maps": [], @@ -393840,8 +371068,6 @@ }, "description": "EG.012, Optische Fallen kl.2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.012", "maps": [], @@ -393874,8 +371100,6 @@ }, "description": "EG.013, Messlabor Analytik NMR", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.013", "maps": [], @@ -393908,8 +371132,6 @@ }, "description": "EG.014, Versorg.raum Laser", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.014", "maps": [], @@ -393942,8 +371164,6 @@ }, "description": "EG.015, Optische Fallen gr.3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.015", "maps": [], @@ -393976,8 +371196,6 @@ }, "description": "EG.016, Optische Fallen gr.2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.016", "maps": [], @@ -394010,8 +371228,6 @@ }, "description": "EG.017, Optische Fallen gr.1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.017", "maps": [], @@ -394044,8 +371260,6 @@ }, "description": "EG.018A, Elektronenmikroskop", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.018A", "maps": [], @@ -394078,8 +371292,6 @@ }, "description": "EG.018B, EM-Service", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.018B", "maps": [], @@ -394112,8 +371324,6 @@ }, "description": "EG.019, Massenspektroskopie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.019", "maps": [], @@ -394146,8 +371356,6 @@ }, "description": "EG.021, Probenpr\u00e4paration", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.021", "maps": [], @@ -394180,8 +371388,6 @@ }, "description": "EG.022, Lichtmikroskopie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.022", "maps": [], @@ -394214,8 +371420,6 @@ }, "description": "EG.023, Ultrazentrifuge", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.023", "maps": [], @@ -394248,8 +371452,6 @@ }, "description": "EG.024, Fluoreszenzmikr.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.024", "maps": [], @@ -394282,8 +371484,6 @@ }, "description": "EG.026, Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.026", "maps": [], @@ -394316,8 +371516,6 @@ }, "description": "EG.027, Poststelle/WA Chemie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.027", "maps": [], @@ -394350,8 +371548,6 @@ }, "description": "EG.028, M\u00fclllager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.028", "maps": [], @@ -394384,8 +371580,6 @@ }, "description": "EG.029, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.029", "maps": [], @@ -394418,8 +371612,6 @@ }, "description": "EG.030, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.030", "maps": [], @@ -394452,8 +371644,6 @@ }, "description": "EG.031, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.031", "maps": [], @@ -394486,8 +371676,6 @@ }, "description": "EG.032, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.032", "maps": [], @@ -394520,8 +371708,6 @@ }, "description": "EG.033, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.033", "maps": [], @@ -394554,8 +371740,6 @@ }, "description": "EG.034, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.034", "maps": [], @@ -394588,8 +371772,6 @@ }, "description": "EG.035, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.035", "maps": [], @@ -394622,8 +371804,6 @@ }, "description": "EG.036, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.036", "maps": [], @@ -394656,8 +371836,6 @@ }, "description": "EG.037, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.037", "maps": [], @@ -394690,8 +371868,6 @@ }, "description": "EG.038, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.038", "maps": [], @@ -394724,8 +371900,6 @@ }, "description": "EG.039, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.039", "maps": [], @@ -394758,8 +371932,6 @@ }, "description": "EG.040, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.040", "maps": [], @@ -394792,8 +371964,6 @@ }, "description": "EG.041, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.041", "maps": [], @@ -394826,8 +371996,6 @@ }, "description": "EG.042, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.042", "maps": [], @@ -394860,8 +372028,6 @@ }, "description": "EG.043, Kopierraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.043", "maps": [], @@ -394894,8 +372060,6 @@ }, "description": "EG.044, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.044", "maps": [], @@ -394928,8 +372092,6 @@ }, "description": "EG.045, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.045", "maps": [], @@ -394962,8 +372124,6 @@ }, "description": "EG.046, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.046", "maps": [], @@ -394996,8 +372156,6 @@ }, "description": "EG.047, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.047", "maps": [], @@ -395030,8 +372188,6 @@ }, "description": "EG.048, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.048", "maps": [], @@ -395064,8 +372220,6 @@ }, "description": "EG.049A, HAR", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.049A", "maps": [], @@ -395098,8 +372252,6 @@ }, "description": "EG.070, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.070", "maps": [], @@ -395132,8 +372284,6 @@ }, "description": "EG.071, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.071", "maps": [], @@ -395166,8 +372316,6 @@ }, "description": "EG.072, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.072", "maps": [], @@ -395200,8 +372348,6 @@ }, "description": "EG.073, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.073", "maps": [], @@ -395234,8 +372380,6 @@ }, "description": "EG.074, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.074", "maps": [], @@ -395268,8 +372412,6 @@ }, "description": "EG.075, Beh.-WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.075", "maps": [], @@ -395302,8 +372444,6 @@ }, "description": "EG.701, Foyer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.701", "maps": [], @@ -395336,8 +372476,6 @@ }, "description": "EG.702, Personenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.702", "maps": [], @@ -395370,8 +372508,6 @@ }, "description": "EG.703, Windfang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.703", "maps": [], @@ -395404,8 +372540,6 @@ }, "description": "EG.710, Treppenhaus West", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.710", "maps": [], @@ -395438,8 +372572,6 @@ }, "description": "EG.711, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.711", "maps": [], @@ -395472,8 +372604,6 @@ }, "description": "EG.720, Treppenhaus Nord", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.720", "maps": [], @@ -395506,8 +372636,6 @@ }, "description": "EG.721, Lastenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.721", "maps": [], @@ -395540,8 +372668,6 @@ }, "description": "EG.722, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.722", "maps": [], @@ -395574,8 +372700,6 @@ }, "description": "EG.723, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.723", "maps": [], @@ -395608,8 +372732,6 @@ }, "description": "EG.730, Treppenhaus S\u00fcd", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.730", "maps": [], @@ -395642,8 +372764,6 @@ }, "description": "EG.731, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.731", "maps": [], @@ -395676,8 +372796,6 @@ }, "description": "EG.732, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.732", "maps": [], @@ -395710,8 +372828,6 @@ }, "description": "EG.811, Technik BMZ", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.811", "maps": [], @@ -395744,8 +372860,6 @@ }, "description": "EG.812, Technik EDV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.812", "maps": [], @@ -395778,8 +372892,6 @@ }, "description": "EG.814, Technik ZBV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.814", "maps": [], @@ -395812,8 +372924,6 @@ }, "description": "EG.821, Technik W\u00e4rme/K\u00e4lte/Wasser", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.821", "maps": [], @@ -395846,8 +372956,6 @@ }, "description": "EG.822, Technik Aufzugsmaschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.822", "maps": [], @@ -395880,8 +372988,6 @@ }, "description": "EG.830, Technik EDV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.830", "maps": [], @@ -395914,8 +373020,6 @@ }, "description": "EG.910, Technik Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.910", "maps": [], @@ -395948,8 +373052,6 @@ }, "description": "EG.920B, Technik Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.920B", "maps": [], @@ -395982,8 +373084,6 @@ }, "description": "EG.930, Technik Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5415.EG.930", "maps": [], @@ -396188,8 +373288,6 @@ }, "description": "101, Flur/Eingangsbereich HS", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5416.01.101", "maps": [], @@ -396222,8 +373320,6 @@ }, "description": "102, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5416.01.102", "maps": [], @@ -396256,8 +373352,6 @@ }, "description": "001, Foyer/Eingangshalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5416.EG.001", "maps": [], @@ -396290,8 +373384,6 @@ }, "description": "001A, Foyer/Windfang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5416.EG.001A", "maps": [], @@ -396324,8 +373416,6 @@ }, "description": "002, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5416.EG.002", "maps": [], @@ -396358,8 +373448,6 @@ }, "description": "005, WC-Vorraum Damen u. Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5416.EG.005", "maps": [], @@ -396392,8 +373480,6 @@ }, "description": "006, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5416.EG.006", "maps": [], @@ -396426,8 +373512,6 @@ }, "description": "007, WC-Beh.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5416.EG.007", "maps": [], @@ -396460,8 +373544,6 @@ }, "description": "008, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5416.EG.008", "maps": [], @@ -396494,8 +373576,6 @@ }, "description": "009, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5416.EG.009", "maps": [], @@ -396528,8 +373608,6 @@ }, "description": "010, IT/Audio", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5416.EG.010", "maps": [], @@ -396562,8 +373640,6 @@ }, "description": "011, Hausanschlussraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5416.EG.011", "maps": [], @@ -396596,8 +373672,6 @@ }, "description": "012, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5416.EG.012", "maps": [], @@ -396630,8 +373704,6 @@ }, "description": "013, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5416.EG.013", "maps": [], @@ -396664,8 +373736,6 @@ }, "description": "014, Si-Bel", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5416.EG.014", "maps": [], @@ -396698,8 +373768,6 @@ }, "description": "017, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5416.EG.015", "maps": [], @@ -396732,8 +373800,6 @@ }, "description": "016, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5416.EG.016", "maps": [], @@ -396766,8 +373832,6 @@ }, "description": "017, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5416.EG.017", "maps": [], @@ -396800,8 +373864,6 @@ }, "description": "018, Vorbereitung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5416.EG.018", "maps": [], @@ -396834,8 +373896,6 @@ }, "description": "1001, Kommunikation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5433.01.001", "maps": [], @@ -396868,8 +373928,6 @@ }, "description": "1002, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5433.01.002", "maps": [], @@ -396902,8 +373960,6 @@ }, "description": "1003, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5433.01.003", "maps": [], @@ -396936,8 +373992,6 @@ }, "description": "1004, Kommunikation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5433.01.004", "maps": [], @@ -396970,8 +374024,6 @@ }, "description": "1005, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5433.01.005", "maps": [], @@ -397004,8 +374056,6 @@ }, "description": "1006, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5433.01.006", "maps": [], @@ -397038,8 +374088,6 @@ }, "description": "1007, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5433.01.007", "maps": [], @@ -397072,8 +374120,6 @@ }, "description": "1008, Server", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5433.01.008", "maps": [], @@ -397106,8 +374152,6 @@ }, "description": "1009, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5433.01.009", "maps": [], @@ -397140,8 +374184,6 @@ }, "description": "1010, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5433.01.010", "maps": [], @@ -397174,8 +374216,6 @@ }, "description": "1011, Oben Space B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5433.01.011", "maps": [], @@ -397208,8 +374248,6 @@ }, "description": "1027, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5433.01.027", "maps": [], @@ -397242,8 +374280,6 @@ }, "description": "1028, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5433.01.028", "maps": [], @@ -397276,8 +374312,6 @@ }, "description": "1029, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5433.01.029", "maps": [], @@ -397310,8 +374344,6 @@ }, "description": "1030, Server", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5433.01.030", "maps": [], @@ -397344,8 +374376,6 @@ }, "description": "1031, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5433.01.031", "maps": [], @@ -397378,8 +374408,6 @@ }, "description": "1032, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5433.01.032", "maps": [], @@ -397412,8 +374440,6 @@ }, "description": "1033, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5433.01.033", "maps": [], @@ -397446,8 +374472,6 @@ }, "description": "1034, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5433.01.034", "maps": [], @@ -397480,8 +374504,6 @@ }, "description": "1035, ELT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5433.01.035", "maps": [], @@ -397514,8 +374536,6 @@ }, "description": "1037, Sozialraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5433.01.037", "maps": [], @@ -397548,8 +374568,6 @@ }, "description": "1039, Kommunikation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5433.01.039", "maps": [], @@ -397582,8 +374600,6 @@ }, "description": "1091, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5433.01.091", "maps": [], @@ -397616,8 +374632,6 @@ }, "description": "1091A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5433.01.091A", "maps": [], @@ -397650,8 +374664,6 @@ }, "description": "1091B, Schacht f. Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5433.01.091B", "maps": [], @@ -397684,8 +374696,6 @@ }, "description": "1092, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5433.01.092", "maps": [], @@ -397718,8 +374728,6 @@ }, "description": "1094, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5433.01.094", "maps": [], @@ -397752,8 +374760,6 @@ }, "description": "1095, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5433.01.095", "maps": [], @@ -397786,8 +374792,6 @@ }, "description": "1099A, Dachfl\u00e4che", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5433.01.099A", "maps": [], @@ -397820,8 +374824,6 @@ }, "description": "1099B, Dachfl\u00e4che", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5433.01.099B", "maps": [], @@ -397854,8 +374856,6 @@ }, "description": "2001, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5433.02.001", "maps": [], @@ -397888,8 +374888,6 @@ }, "description": "2002, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5433.02.002", "maps": [], @@ -397922,8 +374920,6 @@ }, "description": "2003, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5433.02.003", "maps": [], @@ -397956,8 +374952,6 @@ }, "description": "2004, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5433.02.004", "maps": [], @@ -397990,8 +374984,6 @@ }, "description": "2005, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5433.02.005", "maps": [], @@ -398024,8 +375016,6 @@ }, "description": "2006, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5433.02.006", "maps": [], @@ -398058,8 +375048,6 @@ }, "description": "2007, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5433.02.007", "maps": [], @@ -398092,8 +375080,6 @@ }, "description": "2008, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5433.02.008", "maps": [], @@ -398126,8 +375112,6 @@ }, "description": "2009, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5433.02.009", "maps": [], @@ -398160,8 +375144,6 @@ }, "description": "2010, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5433.02.010", "maps": [], @@ -398194,8 +375176,6 @@ }, "description": "2011, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5433.02.011", "maps": [], @@ -398228,8 +375208,6 @@ }, "description": "2012, Server", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5433.02.012", "maps": [], @@ -398262,8 +375240,6 @@ }, "description": "2013, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5433.02.013", "maps": [], @@ -398296,8 +375272,6 @@ }, "description": "2014, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5433.02.014", "maps": [], @@ -398330,8 +375304,6 @@ }, "description": "2015, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5433.02.015", "maps": [], @@ -398364,8 +375336,6 @@ }, "description": "2016, Kopierer/Archiv", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5433.02.016", "maps": [], @@ -398398,8 +375368,6 @@ }, "description": "2017, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5433.02.017", "maps": [], @@ -398432,8 +375400,6 @@ }, "description": "2018, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5433.02.018", "maps": [], @@ -398466,8 +375432,6 @@ }, "description": "2019, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5433.02.019", "maps": [], @@ -398500,8 +375464,6 @@ }, "description": "2020, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5433.02.020", "maps": [], @@ -398534,8 +375496,6 @@ }, "description": "2021, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5433.02.021", "maps": [], @@ -398568,8 +375528,6 @@ }, "description": "2022, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5433.02.022", "maps": [], @@ -398602,8 +375560,6 @@ }, "description": "2023, Sozialraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5433.02.023", "maps": [], @@ -398636,8 +375592,6 @@ }, "description": "2024, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5433.02.024", "maps": [], @@ -398670,8 +375624,6 @@ }, "description": "2025, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5433.02.025", "maps": [], @@ -398704,8 +375656,6 @@ }, "description": "2026, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5433.02.026", "maps": [], @@ -398738,8 +375688,6 @@ }, "description": "2027, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5433.02.027", "maps": [], @@ -398772,8 +375720,6 @@ }, "description": "2028, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5433.02.028", "maps": [], @@ -398806,8 +375752,6 @@ }, "description": "2029, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5433.02.029", "maps": [], @@ -398840,8 +375784,6 @@ }, "description": "2030, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5433.02.030", "maps": [], @@ -398874,8 +375816,6 @@ }, "description": "2031, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5433.02.031", "maps": [], @@ -398908,8 +375848,6 @@ }, "description": "2032, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5433.02.032", "maps": [], @@ -398942,8 +375880,6 @@ }, "description": "2033, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5433.02.033", "maps": [], @@ -398976,8 +375912,6 @@ }, "description": "2034, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5433.02.034", "maps": [], @@ -399010,8 +375944,6 @@ }, "description": "2035, ELT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5433.02.035", "maps": [], @@ -399044,8 +375976,6 @@ }, "description": "2036, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5433.02.036", "maps": [], @@ -399078,8 +376008,6 @@ }, "description": "2037, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5433.02.037", "maps": [], @@ -399112,8 +376040,6 @@ }, "description": "2038, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5433.02.038", "maps": [], @@ -399146,8 +376072,6 @@ }, "description": "2039, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5433.02.039", "maps": [], @@ -399180,8 +376104,6 @@ }, "description": "2040, Bibliothek", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5433.02.040", "maps": [], @@ -399214,8 +376136,6 @@ }, "description": "2091, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5433.02.091", "maps": [], @@ -399248,8 +376168,6 @@ }, "description": "2091A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5433.02.091A", "maps": [], @@ -399282,8 +376200,6 @@ }, "description": "2091B, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5433.02.091B", "maps": [], @@ -399316,8 +376232,6 @@ }, "description": "2092, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5433.02.092", "maps": [], @@ -399350,8 +376264,6 @@ }, "description": "2093, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5433.02.093", "maps": [], @@ -399384,8 +376296,6 @@ }, "description": "2094, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5433.02.094", "maps": [], @@ -399418,8 +376328,6 @@ }, "description": "2095, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5433.02.095", "maps": [], @@ -399452,8 +376360,6 @@ }, "description": "3035, Technik 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5433.03.035", "maps": [], @@ -399486,8 +376392,6 @@ }, "description": "0001, Seminarraum 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5433.EG.001", "maps": [], @@ -399520,8 +376424,6 @@ }, "description": "0002, Seminarraum 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5433.EG.002", "maps": [], @@ -399554,8 +376456,6 @@ }, "description": "0003, Seminarraum 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5433.EG.003", "maps": [], @@ -399588,8 +376488,6 @@ }, "description": "0004, Shared Space", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5433.EG.004", "maps": [], @@ -399622,8 +376520,6 @@ }, "description": "0031, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5433.EG.031", "maps": [], @@ -399656,8 +376552,6 @@ }, "description": "0032, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5433.EG.032", "maps": [], @@ -399690,8 +376584,6 @@ }, "description": "0033, Beh.-WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5433.EG.033", "maps": [], @@ -399724,8 +376616,6 @@ }, "description": "0034, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5433.EG.034", "maps": [], @@ -399758,8 +376648,6 @@ }, "description": "0035, ELT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5433.EG.035", "maps": [], @@ -399792,8 +376680,6 @@ }, "description": "0036, HA Fernw\u00e4rme", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5433.EG.036", "maps": [], @@ -399826,8 +376712,6 @@ }, "description": "0037, HA Trinkwasser", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5433.EG.037", "maps": [], @@ -399860,8 +376744,6 @@ }, "description": "0038, HA Elektro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5433.EG.038", "maps": [], @@ -399894,8 +376776,6 @@ }, "description": "0039, Trafo", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5433.EG.039", "maps": [], @@ -399928,8 +376808,6 @@ }, "description": "0040, BMZ", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5433.EG.040", "maps": [], @@ -399962,8 +376840,6 @@ }, "description": "0040A, SiBe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5433.EG.040A", "maps": [], @@ -399996,8 +376872,6 @@ }, "description": "0041, 1. Hilfe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5433.EG.041", "maps": [], @@ -400030,8 +376904,6 @@ }, "description": "0042, Stuhllager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5433.EG.042", "maps": [], @@ -400064,8 +376936,6 @@ }, "description": "0090, Windfang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5433.EG.090", "maps": [], @@ -400098,8 +376968,6 @@ }, "description": "0091, Eingangsbereich", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5433.EG.091", "maps": [], @@ -400132,8 +377000,6 @@ }, "description": "0091B, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5433.EG.091B", "maps": [], @@ -400166,8 +377032,6 @@ }, "description": "0092, Flur/Eingang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5433.EG.092", "maps": [], @@ -400200,8 +377064,6 @@ }, "description": "0094, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5433.EG.094", "maps": [], @@ -400234,8 +377096,6 @@ }, "description": "0095, Flur/Eingang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5433.EG.095", "maps": [], @@ -400268,8 +377128,6 @@ }, "description": "1101, Foyer/Studenten Arbeitspl\u00e4tze", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.101", "maps": [], @@ -400302,8 +377160,6 @@ }, "description": "1102, RP-Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.102", "maps": [], @@ -400336,8 +377192,6 @@ }, "description": "1102M, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.102M", "maps": [], @@ -400370,8 +377224,6 @@ }, "description": "1103, Emeritus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.103", "maps": [], @@ -400404,8 +377256,6 @@ }, "description": "1103M, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.103M", "maps": [], @@ -400438,8 +377288,6 @@ }, "description": "1103N, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.103N", "maps": [], @@ -400472,8 +377320,6 @@ }, "description": "1103P, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.103P", "maps": [], @@ -400506,8 +377352,6 @@ }, "description": "1103Q, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.103Q", "maps": [], @@ -400540,8 +377384,6 @@ }, "description": "1104, Ordinarius", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.104", "maps": [], @@ -400574,8 +377416,6 @@ }, "description": "1105, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.105", "maps": [], @@ -400608,8 +377448,6 @@ }, "description": "1106, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.106", "maps": [], @@ -400642,8 +377480,6 @@ }, "description": "1107, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.107", "maps": [], @@ -400676,8 +377512,6 @@ }, "description": "1107M, Sammlung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.107M", "maps": [], @@ -400710,8 +377544,6 @@ }, "description": "1108, Mikrotechniklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.108", "maps": [], @@ -400744,8 +377576,6 @@ }, "description": "1108MA, Spezialaufnahme", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.108L", "maps": [], @@ -400778,8 +377608,6 @@ }, "description": "1108M, Laser", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.108M", "maps": [], @@ -400812,8 +377640,6 @@ }, "description": "1109, Stud.arbeit", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.109", "maps": [], @@ -400846,8 +377672,6 @@ }, "description": "1109M, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.109M", "maps": [], @@ -400880,8 +377704,6 @@ }, "description": "1110, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.110", "maps": [], @@ -400914,8 +377736,6 @@ }, "description": "1111, Elektr. Labor/Mess.Techn./Tint.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.111", "maps": [], @@ -400948,8 +377768,6 @@ }, "description": "1112, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.112", "maps": [], @@ -400982,8 +377800,6 @@ }, "description": "1125, Emeritus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.125", "maps": [], @@ -401016,8 +377832,6 @@ }, "description": "1126, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.126", "maps": [], @@ -401050,8 +377864,6 @@ }, "description": "1127, B\u00fcro mit exp. Arbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.127", "maps": [], @@ -401084,8 +377896,6 @@ }, "description": "1127M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.127M", "maps": [], @@ -401118,8 +377928,6 @@ }, "description": "1127N, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.127N", "maps": [], @@ -401152,8 +377960,6 @@ }, "description": "1127o, Nebenraum zu 1127n", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.127O", "maps": [], @@ -401186,8 +377992,6 @@ }, "description": "1128, B\u00fcro mit exp. Arbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.128", "maps": [], @@ -401220,8 +378024,6 @@ }, "description": "1129, B\u00fcro mit exp. Arbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.129", "maps": [], @@ -401254,8 +378056,6 @@ }, "description": "1130, B\u00fcro mit exp. Arbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.130", "maps": [], @@ -401288,8 +378088,6 @@ }, "description": "1131, Ausstellung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.131", "maps": [], @@ -401322,8 +378120,6 @@ }, "description": "1131m, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.131M", "maps": [], @@ -401356,8 +378152,6 @@ }, "description": "1132, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.132", "maps": [], @@ -401390,8 +378184,6 @@ }, "description": "1133, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.133", "maps": [], @@ -401424,8 +378216,6 @@ }, "description": "1134, Seminarraum/Vorbereitung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.134", "maps": [], @@ -401458,8 +378248,6 @@ }, "description": "1150, Seminar", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.150", "maps": [], @@ -401492,8 +378280,6 @@ }, "description": "1150A, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.150A", "maps": [], @@ -401526,8 +378312,6 @@ }, "description": "1150B, Stud.arbeit", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.150B", "maps": [], @@ -401560,8 +378344,6 @@ }, "description": "1160, Aufenthaltsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.160", "maps": [], @@ -401594,8 +378376,6 @@ }, "description": "1160A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.160A", "maps": [], @@ -401628,8 +378408,6 @@ }, "description": "1160B, Beh.-WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.160B", "maps": [], @@ -401662,8 +378440,6 @@ }, "description": "1160C, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.160C", "maps": [], @@ -401696,8 +378472,6 @@ }, "description": "116, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.160M", "maps": [], @@ -401730,8 +378504,6 @@ }, "description": "1160N, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.160N", "maps": [], @@ -401764,8 +378536,6 @@ }, "description": "1160P, WC-D/Dusche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.160P", "maps": [], @@ -401798,8 +378568,6 @@ }, "description": "1160Q, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.160Q", "maps": [], @@ -401832,8 +378600,6 @@ }, "description": "1160S, Umkleide/Dusche-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.160S", "maps": [], @@ -401866,8 +378632,6 @@ }, "description": "1160T, Umkleide/Dusche-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.160T", "maps": [], @@ -401900,8 +378664,6 @@ }, "description": "1161A, Lager Optik Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.161A", "maps": [], @@ -401934,8 +378696,6 @@ }, "description": "1161B, Zugang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.161B", "maps": [], @@ -401968,8 +378728,6 @@ }, "description": "1161M, Besprechungsraum B6", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.161M", "maps": [], @@ -402002,8 +378760,6 @@ }, "description": "1162, Feinmechanische Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.162", "maps": [], @@ -402036,8 +378792,6 @@ }, "description": "1162A, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.162A", "maps": [], @@ -402070,8 +378824,6 @@ }, "description": "1162B, Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.162B", "maps": [], @@ -402104,8 +378856,6 @@ }, "description": "1163, Druckerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.163", "maps": [], @@ -402138,8 +378888,6 @@ }, "description": "1175, Opt. Messlabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.175", "maps": [], @@ -402172,8 +378920,6 @@ }, "description": "1175M, Schwei\u00dfraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.175M", "maps": [], @@ -402206,8 +378952,6 @@ }, "description": "1175N, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.175N", "maps": [], @@ -402240,8 +378984,6 @@ }, "description": "1176, Mechanikwerkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.176", "maps": [], @@ -402274,8 +379016,6 @@ }, "description": "1176A, Aufenthalt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.176A", "maps": [], @@ -402308,8 +379048,6 @@ }, "description": "1176M, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.176M", "maps": [], @@ -402342,8 +379080,6 @@ }, "description": "1176N, Materiallager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.176N", "maps": [], @@ -402376,8 +379112,6 @@ }, "description": "1177, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.177", "maps": [], @@ -402410,8 +379144,6 @@ }, "description": "1190A, Leitstand", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.190A", "maps": [], @@ -402444,8 +379176,6 @@ }, "description": "1190b, L\u00fcftungszentrale Nr.1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.190B", "maps": [], @@ -402478,8 +379208,6 @@ }, "description": "1198a, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.198A", "maps": [], @@ -402512,8 +379240,6 @@ }, "description": "1198b, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.198B", "maps": [], @@ -402546,8 +379272,6 @@ }, "description": "1198c, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.198C", "maps": [], @@ -402580,8 +379304,6 @@ }, "description": "1198d, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.198D", "maps": [], @@ -402614,8 +379336,6 @@ }, "description": "1198e, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.198E", "maps": [], @@ -402648,8 +379368,6 @@ }, "description": "1198f, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.198F", "maps": [], @@ -402682,8 +379400,6 @@ }, "description": "1198g, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.198G", "maps": [], @@ -402716,8 +379432,6 @@ }, "description": "1198h, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.198H", "maps": [], @@ -402750,8 +379464,6 @@ }, "description": "1198i, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.198I", "maps": [], @@ -402784,8 +379496,6 @@ }, "description": "1198j, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.198J", "maps": [], @@ -402818,8 +379528,6 @@ }, "description": "1198k, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.198K", "maps": [], @@ -402852,8 +379560,6 @@ }, "description": "1198l, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.198L", "maps": [], @@ -402886,8 +379592,6 @@ }, "description": "1198m, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.198M", "maps": [], @@ -402920,8 +379624,6 @@ }, "description": "1198n, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.198N", "maps": [], @@ -402954,8 +379656,6 @@ }, "description": "1198o, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.198O", "maps": [], @@ -402988,8 +379688,6 @@ }, "description": "1198p, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.198P", "maps": [], @@ -403022,8 +379720,6 @@ }, "description": "1198q, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.198Q", "maps": [], @@ -403056,8 +379752,6 @@ }, "description": "1198r, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.198R", "maps": [], @@ -403090,8 +379784,6 @@ }, "description": "1198s, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.198S", "maps": [], @@ -403124,8 +379816,6 @@ }, "description": "1198t, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.198T", "maps": [], @@ -403158,8 +379848,6 @@ }, "description": "1198u, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.198U", "maps": [], @@ -403192,8 +379880,6 @@ }, "description": "1198v, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.198V", "maps": [], @@ -403226,8 +379912,6 @@ }, "description": "1198x, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.198X", "maps": [], @@ -403260,8 +379944,6 @@ }, "description": "1199A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.199A", "maps": [], @@ -403294,8 +379976,6 @@ }, "description": "1199B, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.199B", "maps": [], @@ -403328,8 +380008,6 @@ }, "description": "1199C, Flur/Allraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.199C", "maps": [], @@ -403362,8 +380040,6 @@ }, "description": "1199D, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.199D", "maps": [], @@ -403396,8 +380072,6 @@ }, "description": "1199E, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.199E", "maps": [], @@ -403430,8 +380104,6 @@ }, "description": "1199F, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.199F", "maps": [], @@ -403464,8 +380136,6 @@ }, "description": "1199G, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.199G", "maps": [], @@ -403498,8 +380168,6 @@ }, "description": "1199I, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.199I", "maps": [], @@ -403532,8 +380200,6 @@ }, "description": "1199J, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.199J", "maps": [], @@ -403566,8 +380232,6 @@ }, "description": "1199K, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.199K", "maps": [], @@ -403600,8 +380264,6 @@ }, "description": "1199L, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.199L", "maps": [], @@ -403634,8 +380296,6 @@ }, "description": "1199M, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.199M", "maps": [], @@ -403668,8 +380328,6 @@ }, "description": "1199N, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.199N", "maps": [], @@ -403702,8 +380360,6 @@ }, "description": "1199P, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.199P", "maps": [], @@ -403736,8 +380392,6 @@ }, "description": "1199Q, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.199Q", "maps": [], @@ -403770,8 +380424,6 @@ }, "description": "1199S, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.199S", "maps": [], @@ -403804,8 +380456,6 @@ }, "description": "1199T, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.199T", "maps": [], @@ -403838,8 +380488,6 @@ }, "description": "1199U, Treppe/Podest", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.199U", "maps": [], @@ -403872,8 +380520,6 @@ }, "description": "1199w, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.199W", "maps": [], @@ -403906,8 +380552,6 @@ }, "description": "1199R, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5501.01.199Y", "maps": [], @@ -403940,8 +380584,6 @@ }, "description": "2101, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.101", "maps": [], @@ -403974,8 +380616,6 @@ }, "description": "2102A, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.102A", "maps": [], @@ -404008,8 +380648,6 @@ }, "description": "2102B, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.102B", "maps": [], @@ -404042,8 +380680,6 @@ }, "description": "2102M, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.102M", "maps": [], @@ -404076,8 +380712,6 @@ }, "description": "2103, B\u00fcro/Emeritus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.103", "maps": [], @@ -404110,8 +380744,6 @@ }, "description": "2103M, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.103M", "maps": [], @@ -404144,8 +380776,6 @@ }, "description": "2103N, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.103N", "maps": [], @@ -404178,8 +380808,6 @@ }, "description": "2103P, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.103P", "maps": [], @@ -404212,8 +380840,6 @@ }, "description": "2103Q, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.103Q", "maps": [], @@ -404246,8 +380872,6 @@ }, "description": "2104, Seminar", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.104", "maps": [], @@ -404280,8 +380904,6 @@ }, "description": "2105, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.105", "maps": [], @@ -404314,8 +380936,6 @@ }, "description": "2106, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.106", "maps": [], @@ -404348,8 +380968,6 @@ }, "description": "2107, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.107", "maps": [], @@ -404382,8 +381000,6 @@ }, "description": "2108, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.108", "maps": [], @@ -404416,8 +381032,6 @@ }, "description": "2109, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.109", "maps": [], @@ -404450,8 +381064,6 @@ }, "description": "2109M, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.109M", "maps": [], @@ -404484,8 +381096,6 @@ }, "description": "2110, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.110", "maps": [], @@ -404518,8 +381128,6 @@ }, "description": "2111, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.111", "maps": [], @@ -404552,8 +381160,6 @@ }, "description": "2112, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.112", "maps": [], @@ -404586,8 +381192,6 @@ }, "description": "2113, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.113", "maps": [], @@ -404620,8 +381224,6 @@ }, "description": "2114, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.114", "maps": [], @@ -404654,8 +381256,6 @@ }, "description": "2125, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.125", "maps": [], @@ -404688,8 +381288,6 @@ }, "description": "2126, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.126", "maps": [], @@ -404722,8 +381320,6 @@ }, "description": "2127, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.127", "maps": [], @@ -404756,8 +381352,6 @@ }, "description": "2128, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.128", "maps": [], @@ -404790,8 +381384,6 @@ }, "description": "2128M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.128M", "maps": [], @@ -404824,8 +381416,6 @@ }, "description": "2128N, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.128N", "maps": [], @@ -404858,8 +381448,6 @@ }, "description": "2129, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.129", "maps": [], @@ -404892,8 +381480,6 @@ }, "description": "2129M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.129M", "maps": [], @@ -404926,8 +381512,6 @@ }, "description": "2130, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.130", "maps": [], @@ -404960,8 +381544,6 @@ }, "description": "2131, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.131", "maps": [], @@ -404994,8 +381576,6 @@ }, "description": "2131M, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.131M", "maps": [], @@ -405028,8 +381608,6 @@ }, "description": "2132, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.132", "maps": [], @@ -405062,8 +381640,6 @@ }, "description": "2133, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.133", "maps": [], @@ -405096,8 +381672,6 @@ }, "description": "2134, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.134", "maps": [], @@ -405130,8 +381704,6 @@ }, "description": "2135, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.135", "maps": [], @@ -405164,8 +381736,6 @@ }, "description": "2136, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.136", "maps": [], @@ -405198,8 +381768,6 @@ }, "description": "2137, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.137", "maps": [], @@ -405232,8 +381800,6 @@ }, "description": "2138, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.138", "maps": [], @@ -405266,8 +381832,6 @@ }, "description": "2138M, EDV-Praktikum/VR-Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.138M", "maps": [], @@ -405300,8 +381864,6 @@ }, "description": "2139, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.139", "maps": [], @@ -405334,8 +381896,6 @@ }, "description": "2139m, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.139M", "maps": [], @@ -405368,8 +381928,6 @@ }, "description": "2140, Verwaltung Drittmittel", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.140", "maps": [], @@ -405402,8 +381960,6 @@ }, "description": "2141, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.141", "maps": [], @@ -405436,8 +381992,6 @@ }, "description": "2142, Studentenarbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.142", "maps": [], @@ -405470,8 +382024,6 @@ }, "description": "2150, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.150", "maps": [], @@ -405504,8 +382056,6 @@ }, "description": "2150A, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.150A", "maps": [], @@ -405538,8 +382088,6 @@ }, "description": "2150B, Peripherie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.150B", "maps": [], @@ -405572,8 +382120,6 @@ }, "description": "2160, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.160", "maps": [], @@ -405606,8 +382152,6 @@ }, "description": "2161, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.161", "maps": [], @@ -405640,8 +382184,6 @@ }, "description": "2198a, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.198A", "maps": [], @@ -405674,8 +382216,6 @@ }, "description": "2198b, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.198B", "maps": [], @@ -405708,8 +382248,6 @@ }, "description": "2198c, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.198C", "maps": [], @@ -405742,8 +382280,6 @@ }, "description": "2198d, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.198D", "maps": [], @@ -405776,8 +382312,6 @@ }, "description": "2198e, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.198E", "maps": [], @@ -405810,8 +382344,6 @@ }, "description": "2198f, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.198F", "maps": [], @@ -405844,8 +382376,6 @@ }, "description": "2198g, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.198G", "maps": [], @@ -405878,8 +382408,6 @@ }, "description": "2198h, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.198H", "maps": [], @@ -405912,8 +382440,6 @@ }, "description": "2198i, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.198I", "maps": [], @@ -405946,8 +382472,6 @@ }, "description": "2198j, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.198J", "maps": [], @@ -405980,8 +382504,6 @@ }, "description": "2198k, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.198K", "maps": [], @@ -406014,8 +382536,6 @@ }, "description": "2198l, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.198L", "maps": [], @@ -406048,8 +382568,6 @@ }, "description": "2198M, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.198M", "maps": [], @@ -406082,8 +382600,6 @@ }, "description": "2198n, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.198N", "maps": [], @@ -406116,8 +382632,6 @@ }, "description": "2198o, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.198O", "maps": [], @@ -406150,8 +382664,6 @@ }, "description": "2198p, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.198P", "maps": [], @@ -406184,8 +382696,6 @@ }, "description": "2198q, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.198Q", "maps": [], @@ -406218,8 +382728,6 @@ }, "description": "2199A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.199A", "maps": [], @@ -406252,8 +382760,6 @@ }, "description": "2199B, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.199B", "maps": [], @@ -406286,8 +382792,6 @@ }, "description": "2199C, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.199C", "maps": [], @@ -406320,8 +382824,6 @@ }, "description": "2199D, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.199D", "maps": [], @@ -406354,8 +382856,6 @@ }, "description": "2199E, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.199E", "maps": [], @@ -406388,8 +382888,6 @@ }, "description": "2199F, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.199F", "maps": [], @@ -406422,8 +382920,6 @@ }, "description": "2199G, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.199G", "maps": [], @@ -406456,8 +382952,6 @@ }, "description": "2199H, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.199H", "maps": [], @@ -406490,8 +382984,6 @@ }, "description": "2199I, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.199I", "maps": [], @@ -406524,8 +383016,6 @@ }, "description": "2199K, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.199K", "maps": [], @@ -406558,8 +383048,6 @@ }, "description": "2199M, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.199M", "maps": [], @@ -406592,8 +383080,6 @@ }, "description": "2199N, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.199N", "maps": [], @@ -406626,8 +383112,6 @@ }, "description": "2199O, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5501.02.199O", "maps": [], @@ -406660,8 +383144,6 @@ }, "description": "3101, Steuerung L\u00fcftung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.101", "maps": [], @@ -406694,8 +383176,6 @@ }, "description": "3102, Praktikumsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.102", "maps": [], @@ -406728,8 +383208,6 @@ }, "description": "3102M, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.102M", "maps": [], @@ -406762,8 +383240,6 @@ }, "description": "3103, Gastprofessor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.103", "maps": [], @@ -406796,8 +383272,6 @@ }, "description": "3103M, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.103M", "maps": [], @@ -406830,8 +383304,6 @@ }, "description": "3103N, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.103N", "maps": [], @@ -406864,8 +383336,6 @@ }, "description": "3103P, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.103P", "maps": [], @@ -406898,8 +383368,6 @@ }, "description": "3103Q, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.103Q", "maps": [], @@ -406932,8 +383400,6 @@ }, "description": "3104, Mitarbeiterb\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.104", "maps": [], @@ -406966,8 +383432,6 @@ }, "description": "3104M, Foyer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.104M", "maps": [], @@ -407000,8 +383464,6 @@ }, "description": "3104N, Verkehrsfl.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.104N", "maps": [], @@ -407034,8 +383496,6 @@ }, "description": "3104P, Unterrichtsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.104P", "maps": [], @@ -407068,8 +383528,6 @@ }, "description": "3104Q, Unterrichtsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.104Q", "maps": [], @@ -407102,8 +383560,6 @@ }, "description": "3105, MKS-Lab, Computer/Studenten", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.105", "maps": [], @@ -407136,8 +383592,6 @@ }, "description": "3106, Werkstattlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.106", "maps": [], @@ -407170,8 +383624,6 @@ }, "description": "3107, Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.107", "maps": [], @@ -407204,8 +383656,6 @@ }, "description": "3107M, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.107M", "maps": [], @@ -407238,8 +383688,6 @@ }, "description": "3108, Exp. Arbeitsplatz/Labor 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.108", "maps": [], @@ -407272,8 +383720,6 @@ }, "description": "3108M, Archiv/Dokumentation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.108M", "maps": [], @@ -407306,8 +383752,6 @@ }, "description": "3109, Exp. Arbeitsplatz/Labor 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.109", "maps": [], @@ -407340,8 +383784,6 @@ }, "description": "3110, Exp. Arbeitsplatz/Labor 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.110", "maps": [], @@ -407374,8 +383816,6 @@ }, "description": "3125, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.125", "maps": [], @@ -407408,8 +383848,6 @@ }, "description": "3126, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.126", "maps": [], @@ -407442,8 +383880,6 @@ }, "description": "3126M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.126M", "maps": [], @@ -407476,8 +383912,6 @@ }, "description": "3126N, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.126N", "maps": [], @@ -407510,8 +383944,6 @@ }, "description": "3127, Mitarbeiterb\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.127", "maps": [], @@ -407544,8 +383976,6 @@ }, "description": "3127M, Server", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.127M", "maps": [], @@ -407578,8 +384008,6 @@ }, "description": "3128, Kopierraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.128", "maps": [], @@ -407612,8 +384040,6 @@ }, "description": "3128M, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.128M", "maps": [], @@ -407646,8 +384072,6 @@ }, "description": "3129, Mitarbeiterb\u00fcro mit Besprechung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.129", "maps": [], @@ -407680,8 +384104,6 @@ }, "description": "3129M, Archiv", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.129M", "maps": [], @@ -407714,8 +384136,6 @@ }, "description": "3130, Mitarbeiterb\u00fcro mit Besprechung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.130", "maps": [], @@ -407748,8 +384168,6 @@ }, "description": "3131, Mitarbeiterb\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.131", "maps": [], @@ -407782,8 +384200,6 @@ }, "description": "3132, Mitarbeiterb\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.132", "maps": [], @@ -407816,8 +384232,6 @@ }, "description": "3133, Mitarbeiterb\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.133", "maps": [], @@ -407850,8 +384264,6 @@ }, "description": "3134, Mitarbeiterb\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.134", "maps": [], @@ -407884,8 +384296,6 @@ }, "description": "3135, Mitarbeiterb\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.135", "maps": [], @@ -407918,8 +384328,6 @@ }, "description": "3136, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.136", "maps": [], @@ -407952,8 +384360,6 @@ }, "description": "3138, Besprechungsraum/Studenten", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.138", "maps": [], @@ -407986,8 +384392,6 @@ }, "description": "3138M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.138M", "maps": [], @@ -408020,8 +384424,6 @@ }, "description": "3139, Mitarbeiterb\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.139", "maps": [], @@ -408054,8 +384456,6 @@ }, "description": "3140, Mitarbeiterb\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.140", "maps": [], @@ -408088,8 +384488,6 @@ }, "description": "3141, Mitarbeiterb\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.141", "maps": [], @@ -408122,8 +384520,6 @@ }, "description": "3142, Gastprofessor, Postdoc's", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.142", "maps": [], @@ -408156,8 +384552,6 @@ }, "description": "3143, Mitarbeiterb\u00fcro mit Besprechung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.143", "maps": [], @@ -408190,8 +384584,6 @@ }, "description": "3144, Wechselrichtraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.144", "maps": [], @@ -408224,8 +384616,6 @@ }, "description": "3198a, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.198A", "maps": [], @@ -408258,8 +384648,6 @@ }, "description": "3198b, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.198B", "maps": [], @@ -408292,8 +384680,6 @@ }, "description": "3198c, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.198C", "maps": [], @@ -408326,8 +384712,6 @@ }, "description": "3198d, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.198D", "maps": [], @@ -408360,8 +384744,6 @@ }, "description": "3198e, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.198E", "maps": [], @@ -408394,8 +384776,6 @@ }, "description": "3198f, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.198F", "maps": [], @@ -408428,8 +384808,6 @@ }, "description": "3198g, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.198G", "maps": [], @@ -408462,8 +384840,6 @@ }, "description": "3198h, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.198H", "maps": [], @@ -408496,8 +384872,6 @@ }, "description": "3198i, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.198I", "maps": [], @@ -408530,8 +384904,6 @@ }, "description": "3198j, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.198J", "maps": [], @@ -408564,8 +384936,6 @@ }, "description": "3198k, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.198K", "maps": [], @@ -408598,8 +384968,6 @@ }, "description": "3198l, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.198L", "maps": [], @@ -408632,8 +385000,6 @@ }, "description": "3198m, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.198M", "maps": [], @@ -408666,8 +385032,6 @@ }, "description": "3198n, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.198N", "maps": [], @@ -408700,8 +385064,6 @@ }, "description": "3198p, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.198P", "maps": [], @@ -408734,8 +385096,6 @@ }, "description": "3198q, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.198Q", "maps": [], @@ -408768,8 +385128,6 @@ }, "description": "3199A, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.199A", "maps": [], @@ -408802,8 +385160,6 @@ }, "description": "3199B, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.199B", "maps": [], @@ -408836,8 +385192,6 @@ }, "description": "3199C, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.199C", "maps": [], @@ -408870,8 +385224,6 @@ }, "description": "3199D, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.199D", "maps": [], @@ -408904,8 +385256,6 @@ }, "description": "3199F, Flur/Kopierer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.199F", "maps": [], @@ -408938,8 +385288,6 @@ }, "description": "3199G, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.199G", "maps": [], @@ -408972,8 +385320,6 @@ }, "description": "3199I, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.199I", "maps": [], @@ -409006,8 +385352,6 @@ }, "description": "3199K, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.199K", "maps": [], @@ -409040,8 +385384,6 @@ }, "description": "3199L, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.199L", "maps": [], @@ -409074,8 +385416,6 @@ }, "description": "3199M, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.199M", "maps": [], @@ -409108,8 +385448,6 @@ }, "description": "3199N, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5501.03.199N", "maps": [], @@ -409142,8 +385480,6 @@ }, "description": "0102, Praktikumsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.102", "maps": [], @@ -409176,8 +385512,6 @@ }, "description": "0102A, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.102A", "maps": [], @@ -409210,8 +385544,6 @@ }, "description": "0102M, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.102M", "maps": [], @@ -409244,8 +385576,6 @@ }, "description": "0102N, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.102N", "maps": [], @@ -409278,8 +385608,6 @@ }, "description": "0102O, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.102O", "maps": [], @@ -409312,8 +385640,6 @@ }, "description": "0102P, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.102P", "maps": [], @@ -409346,8 +385672,6 @@ }, "description": "0102Q, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.102Q", "maps": [], @@ -409380,8 +385704,6 @@ }, "description": "0103, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.103", "maps": [], @@ -409414,8 +385736,6 @@ }, "description": "0103M, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.103M", "maps": [], @@ -409448,8 +385768,6 @@ }, "description": "0103N, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.103N", "maps": [], @@ -409482,8 +385800,6 @@ }, "description": "0104, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.104", "maps": [], @@ -409516,8 +385832,6 @@ }, "description": "0104A, Archiv", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.104A", "maps": [], @@ -409550,8 +385864,6 @@ }, "description": "0105, Worklab", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.105", "maps": [], @@ -409584,8 +385896,6 @@ }, "description": "0105M, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.105M", "maps": [], @@ -409618,8 +385928,6 @@ }, "description": "0106, Mitarbeiterzimmer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.106", "maps": [], @@ -409652,8 +385960,6 @@ }, "description": "0106M, Bibliothek", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.106M", "maps": [], @@ -409686,8 +385992,6 @@ }, "description": "0107, Mitarbeiterzimmer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.107", "maps": [], @@ -409720,8 +386024,6 @@ }, "description": "0107M, Workstation-Pool", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.107M", "maps": [], @@ -409754,8 +386056,6 @@ }, "description": "0108, HiWi Lab", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.108", "maps": [], @@ -409788,8 +386088,6 @@ }, "description": "0108M, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.108M", "maps": [], @@ -409822,8 +386120,6 @@ }, "description": "0109, Mitarbeiterzimmer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.109", "maps": [], @@ -409856,8 +386152,6 @@ }, "description": "0110, Labor und Studentenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.110", "maps": [], @@ -409890,8 +386184,6 @@ }, "description": "0111, M\u00fcllraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.111", "maps": [], @@ -409924,8 +386216,6 @@ }, "description": "0125, Mitarbeiterzimmer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.125", "maps": [], @@ -409958,8 +386248,6 @@ }, "description": "0125M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.125M", "maps": [], @@ -409992,8 +386280,6 @@ }, "description": "0125N, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.125N", "maps": [], @@ -410026,8 +386312,6 @@ }, "description": "0125X, Fahrzeugverkehrsfl\u00e4che", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.125X", "maps": [], @@ -410060,8 +386344,6 @@ }, "description": "0126, Mitarbeiterzimmer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.126", "maps": [], @@ -410094,8 +386376,6 @@ }, "description": "0126M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.126M", "maps": [], @@ -410128,8 +386408,6 @@ }, "description": "0127, Mitarbeiterzimmer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.127", "maps": [], @@ -410162,8 +386440,6 @@ }, "description": "0128, Mitarbeiterzimmer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.128", "maps": [], @@ -410196,8 +386472,6 @@ }, "description": "0129, Mitarbeiterzimmer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.129", "maps": [], @@ -410230,8 +386504,6 @@ }, "description": "0130, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.130", "maps": [], @@ -410264,8 +386536,6 @@ }, "description": "0130N, Regieraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.130N", "maps": [], @@ -410298,8 +386568,6 @@ }, "description": "0131, Mitarbeiterzimmer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.131", "maps": [], @@ -410332,8 +386600,6 @@ }, "description": "0132, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.132", "maps": [], @@ -410366,8 +386632,6 @@ }, "description": "0133, Mitarbeiterzimmer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.133", "maps": [], @@ -410400,8 +386664,6 @@ }, "description": "0134, Mitarbeiterzimmer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.134", "maps": [], @@ -410434,8 +386696,6 @@ }, "description": "0135, Mitarbeiterzimmer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.135", "maps": [], @@ -410468,8 +386728,6 @@ }, "description": "0136, CopyLab / Drucker", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.136", "maps": [], @@ -410502,8 +386760,6 @@ }, "description": "0137, Praktikumsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.137", "maps": [], @@ -410536,8 +386792,6 @@ }, "description": "0138, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.138", "maps": [], @@ -410570,8 +386824,6 @@ }, "description": "0150, Seminar", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.150", "maps": [], @@ -410604,8 +386856,6 @@ }, "description": "0151, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.151", "maps": [], @@ -410638,8 +386888,6 @@ }, "description": "0160, Abstellraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.160", "maps": [], @@ -410672,8 +386920,6 @@ }, "description": "0160m, Trafo", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.160M", "maps": [], @@ -410706,8 +386952,6 @@ }, "description": "0160n, Trafo", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.160N", "maps": [], @@ -410740,8 +386984,6 @@ }, "description": "0160O, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.160O", "maps": [], @@ -410774,8 +387016,6 @@ }, "description": "0160p, Trafo", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.160P", "maps": [], @@ -410808,8 +387048,6 @@ }, "description": "0160Q, Server", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.160Q", "maps": [], @@ -410842,8 +387080,6 @@ }, "description": "0160R, Umkleide-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.160R", "maps": [], @@ -410876,8 +387112,6 @@ }, "description": "0160S, Dusche-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.160S", "maps": [], @@ -410910,8 +387144,6 @@ }, "description": "0160T, Umkleide-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.160T", "maps": [], @@ -410944,8 +387176,6 @@ }, "description": "0161, Innovation Lab. Studenten", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.161", "maps": [], @@ -410978,8 +387208,6 @@ }, "description": "0162, Innovation Lab. Studenten", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.162", "maps": [], @@ -411012,8 +387240,6 @@ }, "description": "0163, Pr\u00fcfstand", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.163", "maps": [], @@ -411046,8 +387272,6 @@ }, "description": "0164, Messwarte", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.164", "maps": [], @@ -411080,8 +387304,6 @@ }, "description": "0165A, Versuchshalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.165A", "maps": [], @@ -411114,8 +387336,6 @@ }, "description": "0165B, Versuchshalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.165B", "maps": [], @@ -411148,8 +387368,6 @@ }, "description": "0166, K\u00fchlwasserbeh\u00e4lter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.166", "maps": [], @@ -411182,8 +387400,6 @@ }, "description": "0166J, Messraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.166J", "maps": [], @@ -411216,8 +387432,6 @@ }, "description": "0166K, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.166K", "maps": [], @@ -411250,8 +387464,6 @@ }, "description": "0166M, Simmulationshalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.166M", "maps": [], @@ -411284,8 +387496,6 @@ }, "description": "0167, Gasflaschenlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.167", "maps": [], @@ -411318,8 +387528,6 @@ }, "description": "0175, K\u00fchlwasserbeh\u00e4lter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.175", "maps": [], @@ -411352,8 +387560,6 @@ }, "description": "0176, Gasflaschenlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.176", "maps": [], @@ -411386,8 +387592,6 @@ }, "description": "0177, Produktsimulation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.177", "maps": [], @@ -411420,8 +387624,6 @@ }, "description": "0177M, Opt. Messlabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.177M", "maps": [], @@ -411454,8 +387656,6 @@ }, "description": "0178, Mechanische Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.178", "maps": [], @@ -411488,8 +387688,6 @@ }, "description": "0178A, Aufenthalt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.178A", "maps": [], @@ -411522,8 +387720,6 @@ }, "description": "0178m, Laserlabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.178M", "maps": [], @@ -411556,8 +387752,6 @@ }, "description": "0178n, Operatorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.178N", "maps": [], @@ -411590,8 +387784,6 @@ }, "description": "0178O, Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.178O", "maps": [], @@ -411624,8 +387816,6 @@ }, "description": "0179, Meisterb\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.179", "maps": [], @@ -411658,8 +387848,6 @@ }, "description": "0190, Versuchsfeld", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.190", "maps": [], @@ -411692,8 +387880,6 @@ }, "description": "0190A, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.190A", "maps": [], @@ -411726,8 +387912,6 @@ }, "description": "0190B, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.190B", "maps": [], @@ -411760,8 +387944,6 @@ }, "description": "0190C, Lager Metalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.190C", "maps": [], @@ -411794,8 +387976,6 @@ }, "description": "0190D, \u00d6llager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.190D", "maps": [], @@ -411828,8 +388008,6 @@ }, "description": "0190E, Lager Vorrichtungen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.190E", "maps": [], @@ -411862,8 +388040,6 @@ }, "description": "0190F, Schw. Br\u00fcn. Raum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.190F", "maps": [], @@ -411896,8 +388072,6 @@ }, "description": "0190G, Holzwerkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.190G", "maps": [], @@ -411930,8 +388104,6 @@ }, "description": "0190H, Personal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.190H", "maps": [], @@ -411964,8 +388136,6 @@ }, "description": "0190I, Meisterb\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.190I", "maps": [], @@ -411998,8 +388168,6 @@ }, "description": "0190L, Feinmesser", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.190L", "maps": [], @@ -412032,8 +388200,6 @@ }, "description": "0190M, Fotolabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.190M", "maps": [], @@ -412066,8 +388232,6 @@ }, "description": "0190N, WC Gast-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.190N", "maps": [], @@ -412100,8 +388264,6 @@ }, "description": "0190O, Umkleide", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.190O", "maps": [], @@ -412134,8 +388296,6 @@ }, "description": "0190P, Umkleide-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.190P", "maps": [], @@ -412168,8 +388328,6 @@ }, "description": "0190Q, Dusche-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.190Q", "maps": [], @@ -412202,8 +388360,6 @@ }, "description": "0190X, Technologisches Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.190X", "maps": [], @@ -412236,8 +388392,6 @@ }, "description": "0191, Technologisches Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.191", "maps": [], @@ -412270,8 +388424,6 @@ }, "description": "0191A, Technologisches Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.191A", "maps": [], @@ -412304,8 +388456,6 @@ }, "description": "0191B, Technologisches Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.191B", "maps": [], @@ -412338,8 +388488,6 @@ }, "description": "0191C, Technologisches Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.191C", "maps": [], @@ -412372,8 +388520,6 @@ }, "description": "0191D, Technologisches Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.191D", "maps": [], @@ -412406,8 +388552,6 @@ }, "description": "0191E, Technologisches Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.191E", "maps": [], @@ -412440,8 +388584,6 @@ }, "description": "0191F, Technologisches Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.191F", "maps": [], @@ -412474,8 +388616,6 @@ }, "description": "0191G, Technologisches Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.191G", "maps": [], @@ -412508,8 +388648,6 @@ }, "description": "0191H, Technologisches Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.191H", "maps": [], @@ -412542,8 +388680,6 @@ }, "description": "0191I, Technologisches Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.191I", "maps": [], @@ -412576,8 +388712,6 @@ }, "description": "0191K, Technologisches Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.191K", "maps": [], @@ -412610,8 +388744,6 @@ }, "description": "0191L, Technologisches Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.191L", "maps": [], @@ -412644,8 +388776,6 @@ }, "description": "0191M, Technologisches Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.191M", "maps": [], @@ -412678,8 +388808,6 @@ }, "description": "0192, Technologisches Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.192", "maps": [], @@ -412712,8 +388840,6 @@ }, "description": "0192A, Technologisches Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.192A", "maps": [], @@ -412746,8 +388872,6 @@ }, "description": "0198a, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.198A", "maps": [], @@ -412780,8 +388904,6 @@ }, "description": "0198B, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.198B", "maps": [], @@ -412814,8 +388936,6 @@ }, "description": "0198C, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.198C", "maps": [], @@ -412848,8 +388968,6 @@ }, "description": "0198d, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.198D", "maps": [], @@ -412882,8 +389000,6 @@ }, "description": "0198e, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.198E", "maps": [], @@ -412916,8 +389032,6 @@ }, "description": "0198f, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.198F", "maps": [], @@ -412950,8 +389064,6 @@ }, "description": "0198g, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.198G", "maps": [], @@ -412984,8 +389096,6 @@ }, "description": "0198h, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.198H", "maps": [], @@ -413018,8 +389128,6 @@ }, "description": "0198i, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.198I", "maps": [], @@ -413052,8 +389160,6 @@ }, "description": "0198j, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.198J", "maps": [], @@ -413086,8 +389192,6 @@ }, "description": "0198k, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.198K", "maps": [], @@ -413120,8 +389224,6 @@ }, "description": "0198l, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.198L", "maps": [], @@ -413154,8 +389256,6 @@ }, "description": "0198M, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.198M", "maps": [], @@ -413188,8 +389288,6 @@ }, "description": "0198n, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.198N", "maps": [], @@ -413222,8 +389320,6 @@ }, "description": "0198o, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.198O", "maps": [], @@ -413256,8 +389352,6 @@ }, "description": "0198q, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.198Q", "maps": [], @@ -413290,8 +389384,6 @@ }, "description": "0198v, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.198V", "maps": [], @@ -413324,8 +389416,6 @@ }, "description": "0198w, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.198W", "maps": [], @@ -413358,8 +389448,6 @@ }, "description": "0198x, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.198X", "maps": [], @@ -413392,8 +389480,6 @@ }, "description": "0199A, MW 1 Innenhof", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.199A", "maps": [], @@ -413426,8 +389512,6 @@ }, "description": "0199B, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.199B", "maps": [], @@ -413460,8 +389544,6 @@ }, "description": "0199C, Allraum/Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.199C", "maps": [], @@ -413494,8 +389576,6 @@ }, "description": "0199D, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.199D", "maps": [], @@ -413528,8 +389608,6 @@ }, "description": "0199E, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.199E", "maps": [], @@ -413562,8 +389640,6 @@ }, "description": "0199I, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.199I", "maps": [], @@ -413596,8 +389672,6 @@ }, "description": "0199J, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.199J", "maps": [], @@ -413630,8 +389704,6 @@ }, "description": "0199K, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.199K", "maps": [], @@ -413664,8 +389736,6 @@ }, "description": "0199L, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.199L", "maps": [], @@ -413698,8 +389768,6 @@ }, "description": "0199N, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.199N", "maps": [], @@ -413732,8 +389800,6 @@ }, "description": "0199O, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.199O", "maps": [], @@ -413766,8 +389832,6 @@ }, "description": "0199Q, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.199Q", "maps": [], @@ -413800,8 +389864,6 @@ }, "description": "0199R, Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.199R", "maps": [], @@ -413834,8 +389896,6 @@ }, "description": "0199s, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.199S", "maps": [], @@ -413868,8 +389928,6 @@ }, "description": "0199T, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.199T", "maps": [], @@ -413902,8 +389960,6 @@ }, "description": "0199U, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.199U", "maps": [], @@ -413936,8 +389992,6 @@ }, "description": "0199V, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.199V", "maps": [], @@ -413970,8 +390024,6 @@ }, "description": "0199W, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.199W", "maps": [], @@ -414004,8 +390056,6 @@ }, "description": "0199X, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.199X", "maps": [], @@ -414038,8 +390088,6 @@ }, "description": "0199Y, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.199Y", "maps": [], @@ -414072,8 +390120,6 @@ }, "description": "0199Z, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5501.EG.199Z", "maps": [], @@ -414106,8 +390152,6 @@ }, "description": "U101, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5501.U1.101", "maps": [], @@ -414140,8 +390184,6 @@ }, "description": "U101A, Installationskeller", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5501.U1.101A", "maps": [], @@ -414174,8 +390216,6 @@ }, "description": "U101M, Maschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5501.U1.101M", "maps": [], @@ -414208,8 +390248,6 @@ }, "description": "U101N, Schachtaufgang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5501.U1.101N", "maps": [], @@ -414242,8 +390280,6 @@ }, "description": "U103N, Maschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5501.U1.103N", "maps": [], @@ -414276,8 +390312,6 @@ }, "description": "U103M, Lager Hausmaterial", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5501.U1.109M", "maps": [], @@ -414310,8 +390344,6 @@ }, "description": "U125, Netz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5501.U1.125", "maps": [], @@ -414344,8 +390376,6 @@ }, "description": "U125M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5501.U1.125M", "maps": [], @@ -414378,8 +390408,6 @@ }, "description": "U126, SV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5501.U1.126", "maps": [], @@ -414412,8 +390440,6 @@ }, "description": "U126M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5501.U1.126M", "maps": [], @@ -414446,8 +390472,6 @@ }, "description": "U127, FM", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5501.U1.127", "maps": [], @@ -414480,8 +390504,6 @@ }, "description": "U128A, Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5501.U1.128A", "maps": [], @@ -414514,8 +390536,6 @@ }, "description": "U128B, Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5501.U1.128B", "maps": [], @@ -414548,8 +390568,6 @@ }, "description": "U128C, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5501.U1.128C", "maps": [], @@ -414582,8 +390600,6 @@ }, "description": "U128D, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5501.U1.128D", "maps": [], @@ -414616,8 +390632,6 @@ }, "description": "U129, Reinigungsdienst", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5501.U1.129", "maps": [], @@ -414650,8 +390664,6 @@ }, "description": "U130, Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5501.U1.130", "maps": [], @@ -414684,8 +390696,6 @@ }, "description": "U130M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5501.U1.130M", "maps": [], @@ -414718,8 +390728,6 @@ }, "description": "U131, Archiv", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5501.U1.131", "maps": [], @@ -414752,8 +390760,6 @@ }, "description": "U131M, B\u00fcchermagazin", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5501.U1.131M", "maps": [], @@ -414786,8 +390792,6 @@ }, "description": "U132, Archiv", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5501.U1.132", "maps": [], @@ -414820,8 +390824,6 @@ }, "description": "U150, Seminar", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5501.U1.150", "maps": [], @@ -414854,8 +390856,6 @@ }, "description": "U150B, Abstellraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5501.U1.150B", "maps": [], @@ -414888,8 +390888,6 @@ }, "description": "U150C, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5501.U1.150C", "maps": [], @@ -414922,8 +390920,6 @@ }, "description": "U150D, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5501.U1.150D", "maps": [], @@ -414956,8 +390952,6 @@ }, "description": "150E, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5501.U1.150E", "maps": [], @@ -414990,8 +390984,6 @@ }, "description": "U198B, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5501.U1.198B", "maps": [], @@ -415024,8 +391016,6 @@ }, "description": "U198C, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5501.U1.198C", "maps": [], @@ -415058,8 +391048,6 @@ }, "description": "U198D, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5501.U1.198D", "maps": [], @@ -415092,8 +391080,6 @@ }, "description": "U198E, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5501.U1.198E", "maps": [], @@ -415126,8 +391112,6 @@ }, "description": "U198F, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5501.U1.198F", "maps": [], @@ -415160,8 +391144,6 @@ }, "description": "U198G, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5501.U1.198G", "maps": [], @@ -415194,8 +391176,6 @@ }, "description": "U198H, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5501.U1.198H", "maps": [], @@ -415228,8 +391208,6 @@ }, "description": "U198I, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5501.U1.198I", "maps": [], @@ -415262,8 +391240,6 @@ }, "description": "U198J, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5501.U1.198J", "maps": [], @@ -415296,8 +391272,6 @@ }, "description": "U198K, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5501.U1.198K", "maps": [], @@ -415330,8 +391304,6 @@ }, "description": "U198L, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5501.U1.198L", "maps": [], @@ -415364,8 +391336,6 @@ }, "description": "U198M, Aufzugsmaschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5501.U1.198M", "maps": [], @@ -415398,8 +391368,6 @@ }, "description": "U198N, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5501.U1.198N", "maps": [], @@ -415432,8 +391400,6 @@ }, "description": "U198O, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5501.U1.198O", "maps": [], @@ -415466,8 +391432,6 @@ }, "description": "U198P, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5501.U1.198P", "maps": [], @@ -415500,8 +391464,6 @@ }, "description": "U198Q, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5501.U1.198Q", "maps": [], @@ -415534,8 +391496,6 @@ }, "description": "U198r, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5501.U1.198R", "maps": [], @@ -415568,8 +391528,6 @@ }, "description": "U198S, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5501.U1.198S", "maps": [], @@ -415602,8 +391560,6 @@ }, "description": "U199A, TB-Anlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5501.U1.199A", "maps": [], @@ -415636,8 +391592,6 @@ }, "description": "U199B, Installationskeller", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5501.U1.199B", "maps": [], @@ -415670,8 +391624,6 @@ }, "description": "U199C, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5501.U1.199C", "maps": [], @@ -415704,8 +391656,6 @@ }, "description": "U199D, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5501.U1.199D", "maps": [], @@ -415738,8 +391688,6 @@ }, "description": "U199E, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5501.U1.199E", "maps": [], @@ -415772,8 +391720,6 @@ }, "description": "U199G, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5501.U1.199G", "maps": [], @@ -415806,8 +391752,6 @@ }, "description": "U199H, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5501.U1.199H", "maps": [], @@ -415840,8 +391784,6 @@ }, "description": "U199N, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5501.U1.199N", "maps": [], @@ -415874,8 +391816,6 @@ }, "description": "U199R, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5501.U1.199R", "maps": [], @@ -415908,8 +391848,6 @@ }, "description": "1201, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.201", "maps": [], @@ -415942,8 +391880,6 @@ }, "description": "1202, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.202", "maps": [], @@ -415976,8 +391912,6 @@ }, "description": "1203, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.203", "maps": [], @@ -416010,8 +391944,6 @@ }, "description": "1203M, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.203M", "maps": [], @@ -416044,8 +391976,6 @@ }, "description": "1203N, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.203N", "maps": [], @@ -416078,8 +392008,6 @@ }, "description": "0203P, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.203P", "maps": [], @@ -416112,8 +392040,6 @@ }, "description": "1203Q, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.203Q", "maps": [], @@ -416146,8 +392072,6 @@ }, "description": "1204, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.204", "maps": [], @@ -416180,8 +392104,6 @@ }, "description": "1205, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.205", "maps": [], @@ -416214,8 +392136,6 @@ }, "description": "1206, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.206", "maps": [], @@ -416248,8 +392168,6 @@ }, "description": "1207, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.207", "maps": [], @@ -416282,8 +392200,6 @@ }, "description": "1208, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.208", "maps": [], @@ -416316,8 +392232,6 @@ }, "description": "1209, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.209", "maps": [], @@ -416350,8 +392264,6 @@ }, "description": "1209M, Bibliothek", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.209M", "maps": [], @@ -416384,8 +392296,6 @@ }, "description": "1210, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.210", "maps": [], @@ -416418,8 +392328,6 @@ }, "description": "1210M, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.210M", "maps": [], @@ -416452,8 +392360,6 @@ }, "description": "1211, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.211", "maps": [], @@ -416486,8 +392392,6 @@ }, "description": "1212A, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.212A", "maps": [], @@ -416520,8 +392424,6 @@ }, "description": "1212B, Server", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.212B", "maps": [], @@ -416554,8 +392456,6 @@ }, "description": "1213, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.213", "maps": [], @@ -416588,8 +392488,6 @@ }, "description": "1225, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.225", "maps": [], @@ -416622,8 +392520,6 @@ }, "description": "1226, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.226", "maps": [], @@ -416656,8 +392552,6 @@ }, "description": "1227, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.227", "maps": [], @@ -416690,8 +392584,6 @@ }, "description": "1228, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.228", "maps": [], @@ -416724,8 +392616,6 @@ }, "description": "1228M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.228M", "maps": [], @@ -416758,8 +392648,6 @@ }, "description": "1228N, Nebenraum zu 1228m", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.228N", "maps": [], @@ -416792,8 +392680,6 @@ }, "description": "1229, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.229", "maps": [], @@ -416826,8 +392712,6 @@ }, "description": "1229M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.229M", "maps": [], @@ -416860,8 +392744,6 @@ }, "description": "1230, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.230", "maps": [], @@ -416894,8 +392776,6 @@ }, "description": "1230M, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.230M", "maps": [], @@ -416928,8 +392808,6 @@ }, "description": "1231, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.231", "maps": [], @@ -416962,8 +392840,6 @@ }, "description": "1232, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.232", "maps": [], @@ -416996,8 +392872,6 @@ }, "description": "1233, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.233", "maps": [], @@ -417030,8 +392904,6 @@ }, "description": "1234, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.234", "maps": [], @@ -417064,8 +392936,6 @@ }, "description": "1234M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.234M", "maps": [], @@ -417098,8 +392968,6 @@ }, "description": "1235, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.235", "maps": [], @@ -417132,8 +393000,6 @@ }, "description": "1236, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.236", "maps": [], @@ -417166,8 +393032,6 @@ }, "description": "1237, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.237", "maps": [], @@ -417275,8 +393139,6 @@ }, "description": "1250A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.250A", "maps": [], @@ -417309,8 +393171,6 @@ }, "description": "MW 1250b, H\u00f6rsaalnebenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.250B", "maps": [], @@ -417343,8 +393203,6 @@ }, "description": "1251, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.251", "maps": [], @@ -417377,8 +393235,6 @@ }, "description": "1252, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.252", "maps": [], @@ -417411,8 +393267,6 @@ }, "description": "1260, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.260", "maps": [], @@ -417445,8 +393299,6 @@ }, "description": "1260M, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.260M", "maps": [], @@ -417479,8 +393331,6 @@ }, "description": "1260N, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.260N", "maps": [], @@ -417513,8 +393363,6 @@ }, "description": "1260O, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.260O", "maps": [], @@ -417547,8 +393395,6 @@ }, "description": "1260P, WC-Damen / Dusche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.260P", "maps": [], @@ -417581,8 +393427,6 @@ }, "description": "1260Q, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.260Q", "maps": [], @@ -417615,8 +393459,6 @@ }, "description": "1260R, Umkleide / Dusche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.260R", "maps": [], @@ -417649,8 +393491,6 @@ }, "description": "1260S, Gruppenumkleideraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.260S", "maps": [], @@ -417683,8 +393523,6 @@ }, "description": "1260T, Umkleide / Dusche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.260T", "maps": [], @@ -417717,8 +393555,6 @@ }, "description": "1260U, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.260U", "maps": [], @@ -417751,8 +393587,6 @@ }, "description": "1261, Elektrowerkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.261", "maps": [], @@ -417785,8 +393619,6 @@ }, "description": "1261M, Messger\u00e4telabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.261M", "maps": [], @@ -417819,8 +393651,6 @@ }, "description": "1261N, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.261N", "maps": [], @@ -417853,8 +393683,6 @@ }, "description": "1262, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.262", "maps": [], @@ -417887,8 +393715,6 @@ }, "description": "1263, Seminarnebenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.263", "maps": [], @@ -417921,8 +393747,6 @@ }, "description": "1263M, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.263M", "maps": [], @@ -417955,8 +393779,6 @@ }, "description": "1264, Seminar", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.264", "maps": [], @@ -417989,8 +393811,6 @@ }, "description": "1264M, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.264M", "maps": [], @@ -418023,8 +393843,6 @@ }, "description": "1264N, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.264N", "maps": [], @@ -418057,8 +393875,6 @@ }, "description": "1265M, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.265M", "maps": [], @@ -418091,8 +393907,6 @@ }, "description": "1266, Seminarnebenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.266", "maps": [], @@ -418125,8 +393939,6 @@ }, "description": "1290A, L\u00fcftungszentrale Nr. 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.290A", "maps": [], @@ -418159,8 +393971,6 @@ }, "description": "1290B, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.290B", "maps": [], @@ -418193,8 +394003,6 @@ }, "description": "1290C, Aufenthaltsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.290C", "maps": [], @@ -418227,8 +394035,6 @@ }, "description": "1290D, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.290D", "maps": [], @@ -418261,8 +394067,6 @@ }, "description": "1298a, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.298A", "maps": [], @@ -418295,8 +394099,6 @@ }, "description": "1298b, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.298B", "maps": [], @@ -418329,8 +394131,6 @@ }, "description": "1298c, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.298C", "maps": [], @@ -418363,8 +394163,6 @@ }, "description": "1298d, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.298D", "maps": [], @@ -418397,8 +394195,6 @@ }, "description": "1298e, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.298E", "maps": [], @@ -418431,8 +394227,6 @@ }, "description": "1298f, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.298F", "maps": [], @@ -418465,8 +394259,6 @@ }, "description": "1298g, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.298G", "maps": [], @@ -418499,8 +394291,6 @@ }, "description": "1298h, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.298H", "maps": [], @@ -418533,8 +394323,6 @@ }, "description": "1298k, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.298K", "maps": [], @@ -418567,8 +394355,6 @@ }, "description": "1298l, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.298L", "maps": [], @@ -418601,8 +394387,6 @@ }, "description": "1298m, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.298M", "maps": [], @@ -418635,8 +394419,6 @@ }, "description": "1298n, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.298N", "maps": [], @@ -418669,8 +394451,6 @@ }, "description": "1298o, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.298O", "maps": [], @@ -418703,8 +394483,6 @@ }, "description": "1298q, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.298Q", "maps": [], @@ -418737,8 +394515,6 @@ }, "description": "1298r, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.298R", "maps": [], @@ -418771,8 +394547,6 @@ }, "description": "1298s, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.298S", "maps": [], @@ -418805,8 +394579,6 @@ }, "description": "1298t, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.298T", "maps": [], @@ -418839,8 +394611,6 @@ }, "description": "1298u, Br\u00fccke", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.298U", "maps": [], @@ -418873,8 +394643,6 @@ }, "description": "1299A, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.299A", "maps": [], @@ -418907,8 +394675,6 @@ }, "description": "1299B, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.299B", "maps": [], @@ -418941,8 +394707,6 @@ }, "description": "1299C, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.299C", "maps": [], @@ -418975,8 +394739,6 @@ }, "description": "1299D, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.299D", "maps": [], @@ -419009,8 +394771,6 @@ }, "description": "1299E, Flur/Foyer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.299E", "maps": [], @@ -419043,8 +394803,6 @@ }, "description": "1299F, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.299F", "maps": [], @@ -419077,8 +394835,6 @@ }, "description": "1299G, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.299G", "maps": [], @@ -419111,8 +394867,6 @@ }, "description": "1299I, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.299I", "maps": [], @@ -419145,8 +394899,6 @@ }, "description": "1299K, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.299K", "maps": [], @@ -419179,8 +394931,6 @@ }, "description": "1299L, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.299L", "maps": [], @@ -419213,8 +394963,6 @@ }, "description": "1299M, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.299M", "maps": [], @@ -419247,8 +394995,6 @@ }, "description": "1299O, Flur LNM / Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.299O", "maps": [], @@ -419281,8 +395027,6 @@ }, "description": "1299P, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.299P", "maps": [], @@ -419315,8 +395059,6 @@ }, "description": "1299Q, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.299Q", "maps": [], @@ -419349,8 +395091,6 @@ }, "description": "1299S, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.299S", "maps": [], @@ -419383,8 +395123,6 @@ }, "description": "1299T, Gang, Weg im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.299T", "maps": [], @@ -419417,8 +395155,6 @@ }, "description": "1299U, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.299U", "maps": [], @@ -419451,8 +395187,6 @@ }, "description": "1299V, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5502.01.299V", "maps": [], @@ -419485,8 +395219,6 @@ }, "description": "2099A, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.099A", "maps": [], @@ -419519,8 +395251,6 @@ }, "description": "2201, Praktikumsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.201", "maps": [], @@ -419553,8 +395283,6 @@ }, "description": "2202, Wissenschaftliche Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.202", "maps": [], @@ -419587,8 +395315,6 @@ }, "description": "2203, Wissenschaftliche Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.203", "maps": [], @@ -419621,8 +395347,6 @@ }, "description": "2203M, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.203M", "maps": [], @@ -419655,8 +395379,6 @@ }, "description": "2203N, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.203N", "maps": [], @@ -419689,8 +395411,6 @@ }, "description": "2203P, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.203P", "maps": [], @@ -419723,8 +395443,6 @@ }, "description": "2203Q, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.203Q", "maps": [], @@ -419757,8 +395475,6 @@ }, "description": "2204, Wissenschaftliche Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.204", "maps": [], @@ -419791,8 +395507,6 @@ }, "description": "2205, Wiss. Mitarbeiter/LTD-Pr\u00fcfing.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.205", "maps": [], @@ -419825,8 +395539,6 @@ }, "description": "2206, Wissenschaftliche Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.206", "maps": [], @@ -419859,8 +395571,6 @@ }, "description": "2207, Wissenschaftliche Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.207", "maps": [], @@ -419893,8 +395603,6 @@ }, "description": "2208, Archiv", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.208", "maps": [], @@ -419927,8 +395635,6 @@ }, "description": "2208M, Dilatometrie+digitale Bildbearbeitung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.208M", "maps": [], @@ -419961,8 +395667,6 @@ }, "description": "2209, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.209", "maps": [], @@ -419995,8 +395699,6 @@ }, "description": "2209M, Dunkelkammer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.209M", "maps": [], @@ -420029,8 +395731,6 @@ }, "description": "2210, GDS", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.210", "maps": [], @@ -420063,8 +395763,6 @@ }, "description": "2210M, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.210M", "maps": [], @@ -420097,8 +395795,6 @@ }, "description": "2211, Bildanalyse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.211", "maps": [], @@ -420131,8 +395827,6 @@ }, "description": "2212, Met. Mikroskop", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.212", "maps": [], @@ -420165,8 +395859,6 @@ }, "description": "2213, Met. \u00c4tzlabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.213", "maps": [], @@ -420199,8 +395891,6 @@ }, "description": "2214, Met. Schleifen/Polieren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.214", "maps": [], @@ -420233,8 +395923,6 @@ }, "description": "2215, REM 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.215", "maps": [], @@ -420267,8 +395955,6 @@ }, "description": "2216, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.216", "maps": [], @@ -420301,8 +395987,6 @@ }, "description": "2217, Met. Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.217", "maps": [], @@ -420335,8 +396019,6 @@ }, "description": "2225, Beratungszimmer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.225", "maps": [], @@ -420369,8 +396051,6 @@ }, "description": "2226, B\u00fcro/Techn. Angestellter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.226", "maps": [], @@ -420403,8 +396083,6 @@ }, "description": "2227, B\u00fcro/Wiss. Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.227", "maps": [], @@ -420437,8 +396115,6 @@ }, "description": "2227M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.227M", "maps": [], @@ -420471,8 +396147,6 @@ }, "description": "2227N, Nebenraum 2227m", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.227N", "maps": [], @@ -420505,8 +396179,6 @@ }, "description": "2228, B\u00fcro/Wiss. Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.228", "maps": [], @@ -420539,8 +396211,6 @@ }, "description": "2228M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.228M", "maps": [], @@ -420573,8 +396243,6 @@ }, "description": "2229, Wissenschaftliche Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.229", "maps": [], @@ -420607,8 +396275,6 @@ }, "description": "2230, B\u00fcro/Wiss. Angestellter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.230", "maps": [], @@ -420641,8 +396307,6 @@ }, "description": "2231, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.231", "maps": [], @@ -420675,8 +396339,6 @@ }, "description": "2231M, Dunkelkammer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.231M", "maps": [], @@ -420709,8 +396371,6 @@ }, "description": "2231N, Dilatometrie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.231N", "maps": [], @@ -420743,8 +396403,6 @@ }, "description": "2232, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.232", "maps": [], @@ -420777,8 +396435,6 @@ }, "description": "2233, B\u00fcro/Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.233", "maps": [], @@ -420811,8 +396467,6 @@ }, "description": "2233M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.233M", "maps": [], @@ -420845,8 +396499,6 @@ }, "description": "2234, B\u00fcro Oberingenieur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.234", "maps": [], @@ -420949,8 +396601,6 @@ }, "description": "2250, Seminarraum B8", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.250", "maps": [ @@ -421004,8 +396654,6 @@ }, "description": "2250A, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.250A", "maps": [], @@ -421038,8 +396686,6 @@ }, "description": "2250b, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.250B", "maps": [], @@ -421072,8 +396718,6 @@ }, "description": "2260, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.260", "maps": [], @@ -421106,8 +396750,6 @@ }, "description": "2298a, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.298A", "maps": [], @@ -421140,8 +396782,6 @@ }, "description": "2298b, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.298B", "maps": [], @@ -421174,8 +396814,6 @@ }, "description": "2298C, Personenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.298C", "maps": [], @@ -421208,8 +396846,6 @@ }, "description": "2298d, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.298D", "maps": [], @@ -421242,8 +396878,6 @@ }, "description": "2298e, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.298E", "maps": [], @@ -421276,8 +396910,6 @@ }, "description": "2298f, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.298F", "maps": [], @@ -421310,8 +396942,6 @@ }, "description": "2298g, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.298G", "maps": [], @@ -421344,8 +396974,6 @@ }, "description": "2298h, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.298H", "maps": [], @@ -421378,8 +397006,6 @@ }, "description": "2298i, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.298I", "maps": [], @@ -421412,8 +397038,6 @@ }, "description": "2298j, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.298J", "maps": [], @@ -421446,8 +397070,6 @@ }, "description": "2298k, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.298K", "maps": [], @@ -421480,8 +397102,6 @@ }, "description": "2298m, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.298M", "maps": [], @@ -421514,8 +397134,6 @@ }, "description": "2298n, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.298N", "maps": [], @@ -421548,8 +397166,6 @@ }, "description": "2298o, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.298O", "maps": [], @@ -421582,8 +397198,6 @@ }, "description": "2299A, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.299A", "maps": [], @@ -421616,8 +397230,6 @@ }, "description": "2299C, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.299C", "maps": [], @@ -421650,8 +397262,6 @@ }, "description": "2299D, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.299D", "maps": [], @@ -421684,8 +397294,6 @@ }, "description": "2299E, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.299E", "maps": [], @@ -421718,8 +397326,6 @@ }, "description": "2299F, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.299F", "maps": [], @@ -421752,8 +397358,6 @@ }, "description": "2299G, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.299G", "maps": [], @@ -421786,8 +397390,6 @@ }, "description": "2299H, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.299H", "maps": [], @@ -421820,8 +397422,6 @@ }, "description": "2299I, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.299I", "maps": [], @@ -421854,8 +397454,6 @@ }, "description": "2299L, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.299L", "maps": [], @@ -421888,8 +397486,6 @@ }, "description": "2299M, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.299M", "maps": [], @@ -421922,8 +397518,6 @@ }, "description": "2299N, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.299N", "maps": [], @@ -421956,8 +397550,6 @@ }, "description": "2299U, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.299U", "maps": [], @@ -421990,8 +397582,6 @@ }, "description": "2299V, Verbindungsgang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.299V", "maps": [], @@ -422024,8 +397614,6 @@ }, "description": "2299W, Schleuse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5502.02.299W", "maps": [], @@ -422058,8 +397646,6 @@ }, "description": "3201, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.201", "maps": [], @@ -422092,8 +397678,6 @@ }, "description": "3202, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.202", "maps": [], @@ -422126,8 +397710,6 @@ }, "description": "3203, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.203", "maps": [], @@ -422160,8 +397742,6 @@ }, "description": "3203M, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.203M", "maps": [], @@ -422194,8 +397774,6 @@ }, "description": "3203N, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.203N", "maps": [], @@ -422228,8 +397806,6 @@ }, "description": "3203P, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.203P", "maps": [], @@ -422262,8 +397838,6 @@ }, "description": "3203Q, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.203Q", "maps": [], @@ -422296,8 +397870,6 @@ }, "description": "3204, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.204", "maps": [], @@ -422330,8 +397902,6 @@ }, "description": "3205, Bibliothek", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.205", "maps": [], @@ -422364,8 +397934,6 @@ }, "description": "3206, Bibliothek", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.206", "maps": [], @@ -422398,8 +397966,6 @@ }, "description": "3207, Nass. Chem. Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.207", "maps": [], @@ -422432,8 +397998,6 @@ }, "description": "3207M, Physiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.207M", "maps": [], @@ -422466,8 +398030,6 @@ }, "description": "3207N, Vorbereitungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.207N", "maps": [], @@ -422500,8 +398062,6 @@ }, "description": "3208, Metallographie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.208", "maps": [], @@ -422534,8 +398094,6 @@ }, "description": "3208M, REM JSM 7900F", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.208M", "maps": [], @@ -422568,8 +398126,6 @@ }, "description": "3209, Technolog. Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.209", "maps": [], @@ -422602,8 +398158,6 @@ }, "description": "3209M, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.209M", "maps": [], @@ -422636,8 +398190,6 @@ }, "description": "3210, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.210", "maps": [], @@ -422670,8 +398222,6 @@ }, "description": "3211, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.211", "maps": [], @@ -422704,8 +398254,6 @@ }, "description": "3212, R\u00f6ntgen GADDS", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.212", "maps": [], @@ -422738,8 +398286,6 @@ }, "description": "3213, R\u00f6ntgendiff. D8, D5000", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.213", "maps": [], @@ -422772,8 +398318,6 @@ }, "description": "3214, Labor (HIP-Pr\u00e4paration)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.214", "maps": [], @@ -422806,8 +398350,6 @@ }, "description": "3215, REM CS 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.215", "maps": [], @@ -422840,8 +398382,6 @@ }, "description": "3216, Zentrale Gasversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.216", "maps": [], @@ -422874,8 +398414,6 @@ }, "description": "3225, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.225", "maps": [], @@ -422908,8 +398446,6 @@ }, "description": "3226, Wissenschaftliche Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.226", "maps": [], @@ -422942,8 +398478,6 @@ }, "description": "3227, Wissenschaftliche Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.227", "maps": [], @@ -422976,8 +398510,6 @@ }, "description": "3228, Wissenschaftliche Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.228", "maps": [], @@ -423010,8 +398542,6 @@ }, "description": "3228M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.228M", "maps": [], @@ -423044,8 +398574,6 @@ }, "description": "3228n, Nebenraum ZU 3228m", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.228N", "maps": [], @@ -423078,8 +398606,6 @@ }, "description": "3229, Diplomanden", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.229", "maps": [], @@ -423112,8 +398638,6 @@ }, "description": "3229M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.229M", "maps": [], @@ -423146,8 +398670,6 @@ }, "description": "3230, Semesterr. K./Tutoren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.230", "maps": [], @@ -423180,8 +398702,6 @@ }, "description": "3231, Wissenschaftliche Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.231", "maps": [], @@ -423214,8 +398734,6 @@ }, "description": "3232, Emeritus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.232", "maps": [], @@ -423248,8 +398766,6 @@ }, "description": "3233A, Ordinarius", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.233A", "maps": [], @@ -423282,8 +398798,6 @@ }, "description": "3233B, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.233B", "maps": [], @@ -423316,8 +398830,6 @@ }, "description": "3234, Besprechung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.234", "maps": [], @@ -423350,8 +398862,6 @@ }, "description": "3234M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.234M", "maps": [], @@ -423384,8 +398894,6 @@ }, "description": "3235, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.235", "maps": [], @@ -423418,8 +398926,6 @@ }, "description": "3236, Lager/Lehrmittel", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.236", "maps": [], @@ -423452,8 +398958,6 @@ }, "description": "3237, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.237", "maps": [], @@ -423486,8 +398990,6 @@ }, "description": "3298a, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.298A", "maps": [], @@ -423520,8 +399022,6 @@ }, "description": "3298B, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.298B", "maps": [], @@ -423554,8 +399054,6 @@ }, "description": "3298c, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.298C", "maps": [], @@ -423588,8 +399086,6 @@ }, "description": "3298d, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.298D", "maps": [], @@ -423622,8 +399118,6 @@ }, "description": "3298e, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.298E", "maps": [], @@ -423656,8 +399150,6 @@ }, "description": "3298f, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.298F", "maps": [], @@ -423690,8 +399182,6 @@ }, "description": "3298g, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.298G", "maps": [], @@ -423724,8 +399214,6 @@ }, "description": "3298h, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.298H", "maps": [], @@ -423758,8 +399246,6 @@ }, "description": "3298i, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.298I", "maps": [], @@ -423792,8 +399278,6 @@ }, "description": "3289j, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.298J", "maps": [], @@ -423826,8 +399310,6 @@ }, "description": "3298k, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.298K", "maps": [], @@ -423860,8 +399342,6 @@ }, "description": "3298m, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.298M", "maps": [], @@ -423894,8 +399374,6 @@ }, "description": "3298n, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.298N", "maps": [], @@ -423928,8 +399406,6 @@ }, "description": "3298p, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.298P", "maps": [], @@ -423962,8 +399438,6 @@ }, "description": "3299A, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.299A", "maps": [], @@ -423996,8 +399470,6 @@ }, "description": "3299B, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.299B", "maps": [], @@ -424030,8 +399502,6 @@ }, "description": "3299D, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.299D", "maps": [], @@ -424064,8 +399534,6 @@ }, "description": "3299E, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.299E", "maps": [], @@ -424098,8 +399566,6 @@ }, "description": "3299F, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.299F", "maps": [], @@ -424132,8 +399598,6 @@ }, "description": "3299G, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.299G", "maps": [], @@ -424166,8 +399630,6 @@ }, "description": "3299I, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.299I", "maps": [], @@ -424200,8 +399662,6 @@ }, "description": "3299J, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.299J", "maps": [], @@ -424234,8 +399694,6 @@ }, "description": "3299K, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.299K", "maps": [], @@ -424268,8 +399726,6 @@ }, "description": "3299L, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.299L", "maps": [], @@ -424302,8 +399758,6 @@ }, "description": "3299M, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.299M", "maps": [], @@ -424336,8 +399790,6 @@ }, "description": "3299N, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5502.03.299N", "maps": [], @@ -424370,8 +399822,6 @@ }, "description": "0201, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.201", "maps": [], @@ -424404,8 +399854,6 @@ }, "description": "0202, Gastwissenschaftler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.202", "maps": [], @@ -424438,8 +399886,6 @@ }, "description": "0203, Doktorand", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.203", "maps": [], @@ -424472,8 +399918,6 @@ }, "description": "0203M, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.203M", "maps": [], @@ -424506,8 +399950,6 @@ }, "description": "0203N, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.203N", "maps": [], @@ -424540,8 +399982,6 @@ }, "description": "0203P, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.203P", "maps": [], @@ -424574,8 +400014,6 @@ }, "description": "0203Q, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.203Q", "maps": [], @@ -424608,8 +400046,6 @@ }, "description": "0204, Doktorand", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.204", "maps": [], @@ -424642,8 +400078,6 @@ }, "description": "0205, Doktorand", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.205", "maps": [], @@ -424676,8 +400110,6 @@ }, "description": "0206, Doktorand", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.206", "maps": [], @@ -424710,8 +400142,6 @@ }, "description": "0207, Rechner", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.207", "maps": [], @@ -424744,8 +400174,6 @@ }, "description": "0207M, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.207M", "maps": [], @@ -424778,8 +400206,6 @@ }, "description": "0208, Rechner", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.208", "maps": [], @@ -424812,8 +400238,6 @@ }, "description": "0208M, Labor/Rechner", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.208M", "maps": [], @@ -424846,8 +400270,6 @@ }, "description": "0209, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.209", "maps": [], @@ -424880,8 +400302,6 @@ }, "description": "0209M, IT-, Lehrmittellager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.209M", "maps": [], @@ -424914,8 +400334,6 @@ }, "description": "0210, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.210", "maps": [], @@ -424948,8 +400366,6 @@ }, "description": "0210M, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.210M", "maps": [], @@ -424982,8 +400398,6 @@ }, "description": "0211, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.211", "maps": [], @@ -425016,8 +400430,6 @@ }, "description": "0212, M\u00fcllraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.212", "maps": [], @@ -425050,8 +400462,6 @@ }, "description": "0225, Doktorand", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.225", "maps": [], @@ -425084,8 +400494,6 @@ }, "description": "0225M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.225M", "maps": [], @@ -425118,8 +400526,6 @@ }, "description": "0225Y, Fahrzeugverkehrsfl\u00e4che", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.225Y", "maps": [], @@ -425152,8 +400558,6 @@ }, "description": "0226, Doktorand", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.226", "maps": [], @@ -425186,8 +400590,6 @@ }, "description": "0226M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.226M", "maps": [], @@ -425220,8 +400622,6 @@ }, "description": "0227, Doktorand", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.227", "maps": [], @@ -425254,8 +400654,6 @@ }, "description": "0228, Doktorand", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.228", "maps": [], @@ -425288,8 +400686,6 @@ }, "description": "0228M, Drucker", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.228M", "maps": [], @@ -425322,8 +400718,6 @@ }, "description": "0228N, Archiv", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.228N", "maps": [], @@ -425356,8 +400750,6 @@ }, "description": "0229, Doktorand", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.229", "maps": [], @@ -425390,8 +400782,6 @@ }, "description": "0229N, Kopierer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.229N", "maps": [], @@ -425424,8 +400814,6 @@ }, "description": "0230, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.230", "maps": [], @@ -425458,8 +400846,6 @@ }, "description": "0231, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.231", "maps": [], @@ -425492,8 +400878,6 @@ }, "description": "0232, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.232", "maps": [], @@ -425526,8 +400910,6 @@ }, "description": "0232M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.232M", "maps": [], @@ -425560,8 +400942,6 @@ }, "description": "0233, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.233", "maps": [], @@ -425736,8 +401116,6 @@ }, "description": "0250A, MW 0250a, H\u00f6rsaalnebenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.250A", "maps": [], @@ -425770,8 +401148,6 @@ }, "description": "0250B, MW 0250b, H\u00f6rsaalnebenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.250B", "maps": [], @@ -425804,8 +401180,6 @@ }, "description": "0260, Versuche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.260", "maps": [], @@ -425838,8 +401212,6 @@ }, "description": "0260m, Trafo", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.260M", "maps": [], @@ -425872,8 +401244,6 @@ }, "description": "0260n, Trafo", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.260N", "maps": [], @@ -425906,8 +401276,6 @@ }, "description": "0260O, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.260O", "maps": [], @@ -425940,8 +401308,6 @@ }, "description": "0260p, Trafo", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.260P", "maps": [], @@ -425974,8 +401340,6 @@ }, "description": "0260Q, Fernmeldetechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.260Q", "maps": [], @@ -426008,8 +401372,6 @@ }, "description": "0260R, Umkleide / Dusche Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.260R", "maps": [], @@ -426042,8 +401404,6 @@ }, "description": "0260S, Dusche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.260S", "maps": [], @@ -426076,8 +401436,6 @@ }, "description": "0260T, Umkleide", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.260T", "maps": [], @@ -426110,8 +401468,6 @@ }, "description": "0260U, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.260U", "maps": [], @@ -426144,8 +401500,6 @@ }, "description": "0260V, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.260V", "maps": [], @@ -426178,8 +401532,6 @@ }, "description": "0260W, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.260W", "maps": [], @@ -426212,8 +401564,6 @@ }, "description": "0261, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.261", "maps": [], @@ -426246,8 +401596,6 @@ }, "description": "0261M, \u00c4tzen, Schwei\u00dfen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.261M", "maps": [], @@ -426280,8 +401628,6 @@ }, "description": "0261N, Lager, S\u00e4ge", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.261N", "maps": [], @@ -426314,8 +401660,6 @@ }, "description": "0262, Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.262", "maps": [], @@ -426348,8 +401692,6 @@ }, "description": "0262A, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.262A", "maps": [], @@ -426382,8 +401724,6 @@ }, "description": "0263, Versuchshalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.263", "maps": [], @@ -426416,8 +401756,6 @@ }, "description": "0264, Pr\u00fcfungen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.264", "maps": [], @@ -426450,8 +401788,6 @@ }, "description": "0265, Aufenthaltstraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.265", "maps": [], @@ -426484,8 +401820,6 @@ }, "description": "0265A, Versuche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.265A", "maps": [], @@ -426518,8 +401852,6 @@ }, "description": "0290, Halle 1/Technologiehalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.290", "maps": [], @@ -426552,8 +401884,6 @@ }, "description": "0290B, CNC-Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.290B", "maps": [], @@ -426586,8 +401916,6 @@ }, "description": "0290C, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.290C", "maps": [], @@ -426620,8 +401948,6 @@ }, "description": "0290D, Grobmechanische Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.290D", "maps": [], @@ -426654,8 +401980,6 @@ }, "description": "0290E, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.290E", "maps": [], @@ -426688,8 +402012,6 @@ }, "description": "0290F, Werkstattlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.290F", "maps": [], @@ -426722,8 +402044,6 @@ }, "description": "0290G, Hydraulikaggregate", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.290G", "maps": [], @@ -426756,8 +402076,6 @@ }, "description": "0290H, Versuchshalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.290H", "maps": [], @@ -426790,8 +402108,6 @@ }, "description": "0290I, Garage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.290I", "maps": [], @@ -426824,8 +402140,6 @@ }, "description": "0290J, Lager/Holzbearbeitung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.290J", "maps": [], @@ -426858,8 +402172,6 @@ }, "description": "0290K, Festigkeitslabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.290K", "maps": [], @@ -426892,8 +402204,6 @@ }, "description": "0290L, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.290L", "maps": [], @@ -426926,8 +402236,6 @@ }, "description": "0290M, Pulserlabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.290M", "maps": [], @@ -426960,8 +402268,6 @@ }, "description": "0290N, Festigkeitslabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.290N", "maps": [], @@ -426994,8 +402300,6 @@ }, "description": "0290A, CNC-Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.290O", "maps": [], @@ -427028,8 +402332,6 @@ }, "description": "0290P, Kleinere + mittlere Pr\u00fcfhalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.290P", "maps": [], @@ -427062,8 +402364,6 @@ }, "description": "0290Q, Pr\u00fcfmaschinenhalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.290Q", "maps": [], @@ -427096,8 +402396,6 @@ }, "description": "0290R, Labor Impuls", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.290R", "maps": [], @@ -427130,8 +402428,6 @@ }, "description": "0290S, Sonst.Betriebst.Anlagen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.290S", "maps": [], @@ -427164,8 +402460,6 @@ }, "description": "0298a, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.298A", "maps": [], @@ -427198,8 +402492,6 @@ }, "description": "0298b, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.298B", "maps": [], @@ -427232,8 +402524,6 @@ }, "description": "0298C, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.298C", "maps": [], @@ -427266,8 +402556,6 @@ }, "description": "0298d, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.298D", "maps": [], @@ -427300,8 +402588,6 @@ }, "description": "0298e, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.298E", "maps": [], @@ -427334,8 +402620,6 @@ }, "description": "0298f, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.298F", "maps": [], @@ -427368,8 +402652,6 @@ }, "description": "0298g, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.298G", "maps": [], @@ -427402,8 +402684,6 @@ }, "description": "0298h, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.298H", "maps": [], @@ -427436,8 +402716,6 @@ }, "description": "0298i, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.298I", "maps": [], @@ -427470,8 +402748,6 @@ }, "description": "0298j, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.298J", "maps": [], @@ -427504,8 +402780,6 @@ }, "description": "0298K, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.298K", "maps": [], @@ -427538,8 +402812,6 @@ }, "description": "0298l, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.298L", "maps": [], @@ -427572,8 +402844,6 @@ }, "description": "0298m, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.298M", "maps": [], @@ -427606,8 +402876,6 @@ }, "description": "0298n, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.298N", "maps": [], @@ -427640,8 +402908,6 @@ }, "description": "0298o, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.298O", "maps": [], @@ -427674,8 +402940,6 @@ }, "description": "0298p, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.298P", "maps": [], @@ -427708,8 +402972,6 @@ }, "description": "0298s, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.298S", "maps": [], @@ -427742,8 +403004,6 @@ }, "description": "0298t, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.298T", "maps": [], @@ -427776,8 +403036,6 @@ }, "description": "0299A, MW 2 Innenhof", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.299A", "maps": [], @@ -427810,8 +403068,6 @@ }, "description": "0299B, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.299B", "maps": [], @@ -427844,8 +403100,6 @@ }, "description": "0299C, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.299C", "maps": [], @@ -427878,8 +403132,6 @@ }, "description": "0299D, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.299D", "maps": [], @@ -427912,8 +403164,6 @@ }, "description": "0299E, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.299E", "maps": [], @@ -427946,8 +403196,6 @@ }, "description": "0299G, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.299G", "maps": [], @@ -427980,8 +403228,6 @@ }, "description": "0299H, Flur Zugang zu M\u00fcllraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.299H", "maps": [], @@ -428014,8 +403260,6 @@ }, "description": "0299I, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.299I", "maps": [], @@ -428048,8 +403292,6 @@ }, "description": "0299J, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.299J", "maps": [], @@ -428082,8 +403324,6 @@ }, "description": "0299K, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.299K", "maps": [], @@ -428116,8 +403356,6 @@ }, "description": "0299L, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.299L", "maps": [], @@ -428150,8 +403388,6 @@ }, "description": "0299M, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.299M", "maps": [], @@ -428184,8 +403420,6 @@ }, "description": "0299N, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.299N", "maps": [], @@ -428218,8 +403452,6 @@ }, "description": "0299R, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.299R", "maps": [], @@ -428252,8 +403484,6 @@ }, "description": "0299S, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.299S", "maps": [], @@ -428286,8 +403516,6 @@ }, "description": "0299T, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.299T", "maps": [], @@ -428320,8 +403548,6 @@ }, "description": "0299U, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.299U", "maps": [], @@ -428354,8 +403580,6 @@ }, "description": "0299V, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.299V", "maps": [], @@ -428388,8 +403612,6 @@ }, "description": "0299W, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5502.EG.299W", "maps": [], @@ -428422,8 +403644,6 @@ }, "description": "U201, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.201", "maps": [], @@ -428456,8 +403676,6 @@ }, "description": "U202, Installationskeller", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.202", "maps": [], @@ -428490,8 +403708,6 @@ }, "description": "U203M, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.203M", "maps": [], @@ -428524,8 +403740,6 @@ }, "description": "U203N, Maschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.203N", "maps": [], @@ -428558,8 +403772,6 @@ }, "description": "U225, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.225", "maps": [], @@ -428592,8 +403804,6 @@ }, "description": "U226, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.226", "maps": [], @@ -428626,8 +403836,6 @@ }, "description": "U226m, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.226M", "maps": [], @@ -428660,8 +403868,6 @@ }, "description": "U227, Fernmeldetechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.227", "maps": [], @@ -428694,8 +403900,6 @@ }, "description": "U227m, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.227M", "maps": [], @@ -428728,8 +403932,6 @@ }, "description": "U228, B\u00fccher/Magazin/Zeitschriften", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.228", "maps": [], @@ -428762,8 +403964,6 @@ }, "description": "U229, Aufenthaltsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.229", "maps": [], @@ -428796,8 +403996,6 @@ }, "description": "U230, Gruppen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.230", "maps": [], @@ -428830,8 +404028,6 @@ }, "description": "U230M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.230M", "maps": [], @@ -428864,8 +404060,6 @@ }, "description": "U231, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.231", "maps": [], @@ -428898,8 +404092,6 @@ }, "description": "U232, Archiv", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.232", "maps": [], @@ -428932,8 +404124,6 @@ }, "description": "U233, Archiv/Pr\u00fcfungen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.233", "maps": [], @@ -428966,8 +404156,6 @@ }, "description": "U234, Archiv", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.234", "maps": [], @@ -429000,8 +404188,6 @@ }, "description": "U250A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.250A", "maps": [], @@ -429034,8 +404220,6 @@ }, "description": "U250C, Installationskeller", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.250C", "maps": [], @@ -429068,8 +404252,6 @@ }, "description": "U250D, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.250D", "maps": [], @@ -429102,8 +404284,6 @@ }, "description": "U250F, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.250F", "maps": [], @@ -429136,8 +404316,6 @@ }, "description": "U251a, L\u00f6sungsmittel AI", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.251A", "maps": [], @@ -429170,8 +404348,6 @@ }, "description": "U251b, L\u00f6sungsmittel AI", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.251B", "maps": [], @@ -429204,8 +404380,6 @@ }, "description": "U251c, L\u00f6sungsmittel AII/B", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.251C", "maps": [], @@ -429238,8 +404412,6 @@ }, "description": "U251d, L\u00f6sungsmittel AII/B", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.251D", "maps": [], @@ -429272,8 +404444,6 @@ }, "description": "U251E, Lager Leergut", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.251E", "maps": [], @@ -429306,8 +404476,6 @@ }, "description": "U251F, Lagerrist", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.251F", "maps": [], @@ -429340,8 +404508,6 @@ }, "description": "U252a, L\u00f6sungsmittel AI", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.252A", "maps": [], @@ -429374,8 +404540,6 @@ }, "description": "U252b, L\u00f6sungsmittel AI", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.252B", "maps": [], @@ -429408,8 +404572,6 @@ }, "description": "U252C, Bioprodukte", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.252C", "maps": [], @@ -429442,8 +404604,6 @@ }, "description": "U252D, Bioprodukte", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.252D", "maps": [], @@ -429476,8 +404636,6 @@ }, "description": "U252E, Bioprodukte", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.252E", "maps": [], @@ -429510,8 +404668,6 @@ }, "description": "U253a, Lager m. Brandschutz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.253A", "maps": [], @@ -429544,8 +404700,6 @@ }, "description": "U253b, Salze", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.253B", "maps": [], @@ -429578,8 +404732,6 @@ }, "description": "U253c, S\u00e4uren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.253C", "maps": [], @@ -429612,8 +404764,6 @@ }, "description": "U254a, Lager m. Brandschutz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.254A", "maps": [], @@ -429646,8 +404796,6 @@ }, "description": "U254b, Fette/\u00d6le", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.254B", "maps": [], @@ -429680,8 +404828,6 @@ }, "description": "U254c, Chemikalienlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.254C", "maps": [], @@ -429714,8 +404860,6 @@ }, "description": "U254D, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.254D", "maps": [], @@ -429748,8 +404892,6 @@ }, "description": "U254e, \u00d6le/Schmierstoffe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.254E", "maps": [], @@ -429782,8 +404924,6 @@ }, "description": "U254f, CKW-L\u00f6sungsmittel", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.254F", "maps": [], @@ -429816,8 +404956,6 @@ }, "description": "U255A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.255A", "maps": [], @@ -429850,8 +404988,6 @@ }, "description": "U255B, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.255B", "maps": [], @@ -429884,8 +405020,6 @@ }, "description": "U255C, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.255C", "maps": [], @@ -429918,8 +405052,6 @@ }, "description": "U260, Dampfzentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.260", "maps": [], @@ -429952,8 +405084,6 @@ }, "description": "U261, Gas\u00fcbergaberaum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.261", "maps": [], @@ -429986,8 +405116,6 @@ }, "description": "U298, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.298", "maps": [], @@ -430020,8 +405148,6 @@ }, "description": "U298B, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.298B", "maps": [], @@ -430054,8 +405180,6 @@ }, "description": "U298C, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.298C", "maps": [], @@ -430088,8 +405212,6 @@ }, "description": "U298D, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.298D", "maps": [], @@ -430122,8 +405244,6 @@ }, "description": "U298E, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.298E", "maps": [], @@ -430156,8 +405276,6 @@ }, "description": "U298F, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.298F", "maps": [], @@ -430190,8 +405308,6 @@ }, "description": "U298H, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.298H", "maps": [], @@ -430224,8 +405340,6 @@ }, "description": "U298I, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.298I", "maps": [], @@ -430258,8 +405372,6 @@ }, "description": "U298K, Aufzugs- u. F\u00f6rdermaschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.298K", "maps": [], @@ -430292,8 +405404,6 @@ }, "description": "U298L, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.298L", "maps": [], @@ -430326,8 +405436,6 @@ }, "description": "U298N, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.298N", "maps": [], @@ -430360,8 +405468,6 @@ }, "description": "U299, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.299", "maps": [], @@ -430394,8 +405500,6 @@ }, "description": "U299B, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.299B", "maps": [], @@ -430428,8 +405532,6 @@ }, "description": "U299C, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.299C", "maps": [], @@ -430462,8 +405564,6 @@ }, "description": "U299D, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.299D", "maps": [], @@ -430496,8 +405596,6 @@ }, "description": "U299E, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.299E", "maps": [], @@ -430530,8 +405628,6 @@ }, "description": "U299F, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.299F", "maps": [], @@ -430564,8 +405660,6 @@ }, "description": "U299G, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.299G", "maps": [], @@ -430598,8 +405692,6 @@ }, "description": "U299H, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.299H", "maps": [], @@ -430632,8 +405724,6 @@ }, "description": "U299I, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.299I", "maps": [], @@ -430666,8 +405756,6 @@ }, "description": "U299L, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.299L", "maps": [], @@ -430700,8 +405788,6 @@ }, "description": "U299M, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.299M", "maps": [], @@ -430734,8 +405820,6 @@ }, "description": "U299N, Gang, Weg im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.299N", "maps": [], @@ -430768,8 +405852,6 @@ }, "description": "U299O, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.299O", "maps": [], @@ -430802,8 +405884,6 @@ }, "description": "U255E, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5502.U1.981", "maps": [], @@ -430836,8 +405916,6 @@ }, "description": "1301, \u00dcbung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.301", "maps": [], @@ -430870,8 +405948,6 @@ }, "description": "1301A, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.301A", "maps": [], @@ -430904,8 +405980,6 @@ }, "description": "1302A, Verwaltung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.302A", "maps": [], @@ -430938,8 +406012,6 @@ }, "description": "1302B, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.302B", "maps": [], @@ -430972,8 +406044,6 @@ }, "description": "1302M, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.302M", "maps": [], @@ -431006,8 +406076,6 @@ }, "description": "1302N, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.302N", "maps": [], @@ -431040,8 +406108,6 @@ }, "description": "1302O, Sanit\u00e4r", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.302O", "maps": [], @@ -431074,8 +406140,6 @@ }, "description": "1303, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.303", "maps": [], @@ -431108,8 +406172,6 @@ }, "description": "1303A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.303A", "maps": [], @@ -431142,8 +406204,6 @@ }, "description": "1303M, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.303M", "maps": [], @@ -431176,8 +406236,6 @@ }, "description": "1303N, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.303N", "maps": [], @@ -431210,8 +406268,6 @@ }, "description": "1303P, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.303P", "maps": [], @@ -431244,8 +406300,6 @@ }, "description": "1303Q, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.303Q", "maps": [], @@ -431278,8 +406332,6 @@ }, "description": "1304, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.304", "maps": [], @@ -431312,8 +406364,6 @@ }, "description": "1305, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.305", "maps": [], @@ -431346,8 +406396,6 @@ }, "description": "1306, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.306", "maps": [], @@ -431380,8 +406428,6 @@ }, "description": "1306M, CIM I", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.306M", "maps": [], @@ -431414,8 +406460,6 @@ }, "description": "1307, Aufenthalt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.307", "maps": [], @@ -431448,8 +406492,6 @@ }, "description": "1307M, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.307M", "maps": [], @@ -431482,8 +406524,6 @@ }, "description": "1308, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.308", "maps": [], @@ -431516,8 +406556,6 @@ }, "description": "1309, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.309", "maps": [], @@ -431550,8 +406588,6 @@ }, "description": "1310, Graphiker", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.310", "maps": [], @@ -431584,8 +406620,6 @@ }, "description": "1311, B\u00fcro Marketing", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.311", "maps": [], @@ -431618,8 +406652,6 @@ }, "description": "1312, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.312", "maps": [], @@ -431652,8 +406684,6 @@ }, "description": "1325, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.325", "maps": [], @@ -431686,8 +406716,6 @@ }, "description": "1326, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.326", "maps": [], @@ -431720,8 +406748,6 @@ }, "description": "1327, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.327", "maps": [], @@ -431754,8 +406780,6 @@ }, "description": "1327M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.327M", "maps": [], @@ -431788,8 +406812,6 @@ }, "description": "1327N, Nebenraum von 1327m", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.327N", "maps": [], @@ -431822,8 +406844,6 @@ }, "description": "1328, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.328", "maps": [], @@ -431856,8 +406876,6 @@ }, "description": "1328M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.328M", "maps": [], @@ -431890,8 +406908,6 @@ }, "description": "1329, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.329", "maps": [], @@ -431924,8 +406940,6 @@ }, "description": "1330, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.330", "maps": [], @@ -431958,8 +406972,6 @@ }, "description": "1331, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.331", "maps": [], @@ -431992,8 +407004,6 @@ }, "description": "1332, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.332", "maps": [], @@ -432026,8 +407036,6 @@ }, "description": "1333, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.333", "maps": [], @@ -432060,8 +407068,6 @@ }, "description": "1334, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.334", "maps": [], @@ -432094,8 +407100,6 @@ }, "description": "1334M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.334M", "maps": [], @@ -432128,8 +407132,6 @@ }, "description": "1335, Besprechungsraum B3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.335", "maps": [], @@ -432162,8 +407164,6 @@ }, "description": "1336, Besprechungsraum B2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.336", "maps": [], @@ -432196,8 +407196,6 @@ }, "description": "1337, Besprechungsraum B1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.337", "maps": [], @@ -432300,8 +407298,6 @@ }, "description": "1360, Messflur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.360", "maps": [], @@ -432334,8 +407330,6 @@ }, "description": "1360m, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.360M", "maps": [], @@ -432368,8 +407362,6 @@ }, "description": "1360n, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.360N", "maps": [], @@ -432402,8 +407394,6 @@ }, "description": "1360O, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.360O", "maps": [], @@ -432436,8 +407426,6 @@ }, "description": "1360P, WC-Damen / Dusche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.360P", "maps": [], @@ -432470,8 +407458,6 @@ }, "description": "1360Q, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.360Q", "maps": [], @@ -432504,8 +407490,6 @@ }, "description": "1360R, Umkleide / Dusche Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.360R", "maps": [], @@ -432538,8 +407522,6 @@ }, "description": "1360S, Beh.-WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.360S", "maps": [], @@ -432572,8 +407554,6 @@ }, "description": "1360T, Umkleide / Dusche Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.360T", "maps": [], @@ -432606,8 +407586,6 @@ }, "description": "1361, Pr\u00fcfstand", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.361", "maps": [], @@ -432640,8 +407618,6 @@ }, "description": "1362, Pr\u00fcfstand", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.362", "maps": [], @@ -432674,8 +407650,6 @@ }, "description": "1362M, Pr\u00fcfstandstechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.362M", "maps": [], @@ -432708,8 +407682,6 @@ }, "description": "1363, Pr\u00fcfstand", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.363", "maps": [], @@ -432742,8 +407714,6 @@ }, "description": "1364, Pr\u00fcfstand", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.364", "maps": [], @@ -432776,8 +407746,6 @@ }, "description": "1365, Pr\u00fcfstand", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.365", "maps": [], @@ -432810,8 +407778,6 @@ }, "description": "1366, Pr\u00fcfstand", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.366", "maps": [], @@ -432844,8 +407810,6 @@ }, "description": "1367, Pr\u00fcfstand", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.367", "maps": [], @@ -432878,8 +407842,6 @@ }, "description": "1368, Pr\u00fcfstand", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.368", "maps": [], @@ -432912,8 +407874,6 @@ }, "description": "1369, Pr\u00fcfstand", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.369", "maps": [], @@ -432946,8 +407906,6 @@ }, "description": "1370, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.370", "maps": [], @@ -432980,8 +407938,6 @@ }, "description": "1370M, Ger\u00e4tereinigung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.370M", "maps": [], @@ -433014,8 +407970,6 @@ }, "description": "1370N, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.370N", "maps": [], @@ -433048,8 +408002,6 @@ }, "description": "1390a, L\u00fcftungszentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.390A", "maps": [], @@ -433082,8 +408034,6 @@ }, "description": "1390C, Stud.arbeit", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.390C", "maps": [], @@ -433116,8 +408066,6 @@ }, "description": "1390D, Stud.arbeit", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.390D", "maps": [], @@ -433150,8 +408098,6 @@ }, "description": "1398a, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.398A", "maps": [], @@ -433184,8 +408130,6 @@ }, "description": "1398b, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.398B", "maps": [], @@ -433218,8 +408162,6 @@ }, "description": "1398c, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.398C", "maps": [], @@ -433252,8 +408194,6 @@ }, "description": "1398d, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.398D", "maps": [], @@ -433286,8 +408226,6 @@ }, "description": "1398e, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.398E", "maps": [], @@ -433320,8 +408258,6 @@ }, "description": "1398f, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.398F", "maps": [], @@ -433354,8 +408290,6 @@ }, "description": "1398g, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.398G", "maps": [], @@ -433388,8 +408322,6 @@ }, "description": "1398h, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.398H", "maps": [], @@ -433422,8 +408354,6 @@ }, "description": "1398i, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.398I", "maps": [], @@ -433456,8 +408386,6 @@ }, "description": "1398j, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.398J", "maps": [], @@ -433490,8 +408418,6 @@ }, "description": "1398l, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.398L", "maps": [], @@ -433524,8 +408450,6 @@ }, "description": "1398m, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.398M", "maps": [], @@ -433558,8 +408482,6 @@ }, "description": "1398o, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.398O", "maps": [], @@ -433592,8 +408514,6 @@ }, "description": "1398p, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.398P", "maps": [], @@ -433626,8 +408546,6 @@ }, "description": "1398q, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.398Q", "maps": [], @@ -433660,8 +408578,6 @@ }, "description": "1398r, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.398R", "maps": [], @@ -433694,8 +408610,6 @@ }, "description": "1398s, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.398S", "maps": [], @@ -433728,8 +408642,6 @@ }, "description": "1398t, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.398T", "maps": [], @@ -433762,8 +408674,6 @@ }, "description": "1398v, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.398V", "maps": [], @@ -433796,8 +408706,6 @@ }, "description": "1399A, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.399A", "maps": [], @@ -433830,8 +408738,6 @@ }, "description": "1399B, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.399B", "maps": [], @@ -433864,8 +408770,6 @@ }, "description": "1399C, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.399C", "maps": [], @@ -433898,8 +408802,6 @@ }, "description": "1399D, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.399D", "maps": [], @@ -433932,8 +408834,6 @@ }, "description": "1399E, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.399E", "maps": [], @@ -433966,8 +408866,6 @@ }, "description": "1399F, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.399F", "maps": [], @@ -434000,8 +408898,6 @@ }, "description": "1399G, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.399G", "maps": [], @@ -434034,8 +408930,6 @@ }, "description": "1399I, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.399I", "maps": [], @@ -434068,8 +408962,6 @@ }, "description": "1399J, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.399J", "maps": [], @@ -434102,8 +408994,6 @@ }, "description": "1399K, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.399K", "maps": [], @@ -434136,8 +409026,6 @@ }, "description": "1399L, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.399L", "maps": [], @@ -434170,8 +409058,6 @@ }, "description": "1399M, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.399M", "maps": [], @@ -434204,8 +409090,6 @@ }, "description": "1399N, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.399N", "maps": [], @@ -434238,8 +409122,6 @@ }, "description": "1399O, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.399O", "maps": [], @@ -434272,8 +409154,6 @@ }, "description": "1399Q, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5503.01.399Q", "maps": [], @@ -434306,8 +409186,6 @@ }, "description": "2301, Archiv", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.301", "maps": [], @@ -434340,8 +409218,6 @@ }, "description": "2302M, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.302M", "maps": [], @@ -434374,8 +409250,6 @@ }, "description": "2302N, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.302N", "maps": [], @@ -434408,8 +409282,6 @@ }, "description": "2302O, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.302O", "maps": [], @@ -434442,8 +409314,6 @@ }, "description": "2302P, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.302P", "maps": [], @@ -434476,8 +409346,6 @@ }, "description": "2302Q, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.302Q", "maps": [], @@ -434510,8 +409378,6 @@ }, "description": "2303, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.303", "maps": [], @@ -434544,8 +409410,6 @@ }, "description": "2303M, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.303M", "maps": [], @@ -434578,8 +409442,6 @@ }, "description": "2303N, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.303N", "maps": [], @@ -434612,8 +409474,6 @@ }, "description": "2304, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.304", "maps": [], @@ -434646,8 +409506,6 @@ }, "description": "2305, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.305", "maps": [], @@ -434680,8 +409538,6 @@ }, "description": "2306, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.306", "maps": [], @@ -434714,8 +409570,6 @@ }, "description": "2307, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.307", "maps": [], @@ -434748,8 +409602,6 @@ }, "description": "2308, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.308", "maps": [], @@ -434782,8 +409634,6 @@ }, "description": "2308M, CIM II", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.308N", "maps": [], @@ -434816,8 +409666,6 @@ }, "description": "2309, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.309", "maps": [], @@ -434850,8 +409698,6 @@ }, "description": "2310, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.310", "maps": [], @@ -434884,8 +409730,6 @@ }, "description": "2311, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.311", "maps": [], @@ -434918,8 +409762,6 @@ }, "description": "2311M, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.311M", "maps": [], @@ -434952,8 +409794,6 @@ }, "description": "2312, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.312", "maps": [], @@ -434986,8 +409826,6 @@ }, "description": "2313, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.313", "maps": [], @@ -435020,8 +409858,6 @@ }, "description": "2314, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.314", "maps": [], @@ -435054,8 +409890,6 @@ }, "description": "2315, Rechnerwerkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.315", "maps": [], @@ -435088,8 +409922,6 @@ }, "description": "2316, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.316", "maps": [], @@ -435122,8 +409954,6 @@ }, "description": "2317, Rechner", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.317", "maps": [], @@ -435156,8 +409986,6 @@ }, "description": "2325, Poststelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.325", "maps": [], @@ -435190,8 +410018,6 @@ }, "description": "2326, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.326", "maps": [], @@ -435224,8 +410050,6 @@ }, "description": "2327, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.327", "maps": [], @@ -435258,8 +410082,6 @@ }, "description": "2327M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.327M", "maps": [], @@ -435292,8 +410114,6 @@ }, "description": "2327N, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.327N", "maps": [], @@ -435326,8 +410146,6 @@ }, "description": "2328, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.328", "maps": [], @@ -435360,8 +410178,6 @@ }, "description": "2328N, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.328N", "maps": [], @@ -435394,8 +410210,6 @@ }, "description": "2329, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.329", "maps": [], @@ -435428,8 +410242,6 @@ }, "description": "2330, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.330", "maps": [], @@ -435462,8 +410274,6 @@ }, "description": "2331, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.331", "maps": [], @@ -435496,8 +410306,6 @@ }, "description": "2333M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.333M", "maps": [], @@ -435530,8 +410338,6 @@ }, "description": "2334, Besprechung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.334", "maps": [], @@ -435564,8 +410370,6 @@ }, "description": "2335, Besprechungsraum B7", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.335", "maps": [], @@ -435598,8 +410402,6 @@ }, "description": "2336, Archiv", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.336", "maps": [], @@ -435632,8 +410434,6 @@ }, "description": "2350, Stud.arbeit", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.350", "maps": [], @@ -435666,8 +410466,6 @@ }, "description": "2360, TB-Anlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.360", "maps": [], @@ -435700,8 +410498,6 @@ }, "description": "2398a, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.398A", "maps": [], @@ -435734,8 +410530,6 @@ }, "description": "2398b, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.398B", "maps": [], @@ -435768,8 +410562,6 @@ }, "description": "2398d, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.398D", "maps": [], @@ -435802,8 +410594,6 @@ }, "description": "2398e, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.398E", "maps": [], @@ -435836,8 +410626,6 @@ }, "description": "2398f, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.398F", "maps": [], @@ -435870,8 +410658,6 @@ }, "description": "2398g, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.398G", "maps": [], @@ -435904,8 +410690,6 @@ }, "description": "2398h, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.398H", "maps": [], @@ -435938,8 +410722,6 @@ }, "description": "2398i, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.398I", "maps": [], @@ -435972,8 +410754,6 @@ }, "description": "2398j, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.398J", "maps": [], @@ -436006,8 +410786,6 @@ }, "description": "2398l, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.398L", "maps": [], @@ -436040,8 +410818,6 @@ }, "description": "2398m, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.398M", "maps": [], @@ -436074,8 +410850,6 @@ }, "description": "2398n, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.398N", "maps": [], @@ -436108,8 +410882,6 @@ }, "description": "2398o, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.398O", "maps": [], @@ -436142,8 +410914,6 @@ }, "description": "2398p, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.398P", "maps": [], @@ -436176,8 +410946,6 @@ }, "description": "2398q, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.398Q", "maps": [], @@ -436210,8 +410978,6 @@ }, "description": "2399A, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.399A", "maps": [], @@ -436244,8 +411010,6 @@ }, "description": "2399C, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.399C", "maps": [], @@ -436278,8 +411042,6 @@ }, "description": "2399D, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.399D", "maps": [], @@ -436312,8 +411074,6 @@ }, "description": "2399E, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.399E", "maps": [], @@ -436346,8 +411106,6 @@ }, "description": "2399F, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.399F", "maps": [], @@ -436380,8 +411138,6 @@ }, "description": "2399I, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.399I", "maps": [], @@ -436414,8 +411170,6 @@ }, "description": "2399J, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.399J", "maps": [], @@ -436448,8 +411202,6 @@ }, "description": "2399K, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.399K", "maps": [], @@ -436482,8 +411234,6 @@ }, "description": "2399M, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.399M", "maps": [], @@ -436516,8 +411266,6 @@ }, "description": "2399N, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.399N", "maps": [], @@ -436550,8 +411298,6 @@ }, "description": "2399Q, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.399Q", "maps": [], @@ -436584,8 +411330,6 @@ }, "description": "2399S, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.399S", "maps": [], @@ -436618,8 +411362,6 @@ }, "description": "2399T, Verbindungsgang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.399T", "maps": [], @@ -436652,8 +411394,6 @@ }, "description": "2399U, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5503.02.399U", "maps": [], @@ -436686,8 +411426,6 @@ }, "description": "3301, Steuerung L\u00fcftung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.301", "maps": [], @@ -436720,8 +411458,6 @@ }, "description": "3302, Seminarraum/Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.302", "maps": [], @@ -436754,8 +411490,6 @@ }, "description": "3302M, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.302M", "maps": [], @@ -436788,8 +411522,6 @@ }, "description": "3303, B\u00fcro/Buchhaltung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.303", "maps": [], @@ -436822,8 +411554,6 @@ }, "description": "3303M, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.303M", "maps": [], @@ -436856,8 +411586,6 @@ }, "description": "3303N, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.303N", "maps": [], @@ -436890,8 +411618,6 @@ }, "description": "3303P, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.303P", "maps": [], @@ -436924,8 +411650,6 @@ }, "description": "3303Q, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.303Q", "maps": [], @@ -436958,8 +411682,6 @@ }, "description": "3304, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.304", "maps": [], @@ -436992,8 +411714,6 @@ }, "description": "3305, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.305", "maps": [], @@ -437026,8 +411746,6 @@ }, "description": "3306, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.306", "maps": [], @@ -437060,8 +411778,6 @@ }, "description": "3307, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.307", "maps": [], @@ -437094,8 +411810,6 @@ }, "description": "3308, Bibliothek", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.308", "maps": [], @@ -437128,8 +411842,6 @@ }, "description": "3309, Exp. Praktikumsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.309", "maps": [], @@ -437162,8 +411874,6 @@ }, "description": "3310, Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.310", "maps": [], @@ -437196,8 +411906,6 @@ }, "description": "3310M, Motionlab", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.310M", "maps": [], @@ -437230,8 +411938,6 @@ }, "description": "3311, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.311", "maps": [], @@ -437264,8 +411970,6 @@ }, "description": "3311M, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.311M", "maps": [], @@ -437298,8 +412002,6 @@ }, "description": "3312, Archiv", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.312", "maps": [], @@ -437332,8 +412034,6 @@ }, "description": "3313, Forschungsarbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.313", "maps": [], @@ -437366,8 +412066,6 @@ }, "description": "3314, Forschungsarbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.314", "maps": [], @@ -437400,8 +412098,6 @@ }, "description": "3315, Forschungsarbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.315", "maps": [], @@ -437434,8 +412130,6 @@ }, "description": "3316, Ergonomisches Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.316", "maps": [], @@ -437468,8 +412162,6 @@ }, "description": "3317, Kraftmessung Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.317", "maps": [], @@ -437502,8 +412194,6 @@ }, "description": "3325, B\u00fcro Wissenschaftler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.325", "maps": [], @@ -437536,8 +412226,6 @@ }, "description": "3326, B\u00fcro Wissenschaftler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.326", "maps": [], @@ -437570,8 +412258,6 @@ }, "description": "3327, B\u00fcro Wissenschaftler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.327", "maps": [], @@ -437604,8 +412290,6 @@ }, "description": "3327M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.327M", "maps": [], @@ -437638,8 +412322,6 @@ }, "description": "3327N, Nebenraum von 3327m", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.327N", "maps": [], @@ -437672,8 +412354,6 @@ }, "description": "3328, B\u00fcro Wissenschaftler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.328", "maps": [], @@ -437706,8 +412386,6 @@ }, "description": "3328M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.328M", "maps": [], @@ -437740,8 +412418,6 @@ }, "description": "3329, B\u00fcro Wissenschaftler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.329", "maps": [], @@ -437774,8 +412450,6 @@ }, "description": "3330, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.330", "maps": [], @@ -437808,8 +412482,6 @@ }, "description": "3332, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.332", "maps": [], @@ -437842,8 +412514,6 @@ }, "description": "3333, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.333", "maps": [], @@ -437876,8 +412546,6 @@ }, "description": "3334, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.334", "maps": [], @@ -437910,8 +412578,6 @@ }, "description": "3335, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.335", "maps": [], @@ -437944,8 +412610,6 @@ }, "description": "3336, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.336", "maps": [], @@ -437978,8 +412642,6 @@ }, "description": "3336M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.336M", "maps": [], @@ -438012,8 +412674,6 @@ }, "description": "3337, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.337", "maps": [], @@ -438046,8 +412706,6 @@ }, "description": "3338, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.338", "maps": [], @@ -438080,8 +412738,6 @@ }, "description": "3339, Kopierraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.339", "maps": [], @@ -438114,8 +412770,6 @@ }, "description": "3340, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.340", "maps": [], @@ -438148,8 +412802,6 @@ }, "description": "3341, Wechselrichterraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.341", "maps": [], @@ -438182,8 +412834,6 @@ }, "description": "3398a, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.398A", "maps": [], @@ -438216,8 +412866,6 @@ }, "description": "3398b, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.398B", "maps": [], @@ -438250,8 +412898,6 @@ }, "description": "3398c, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.398C", "maps": [], @@ -438284,8 +412930,6 @@ }, "description": "3398d, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.398D", "maps": [], @@ -438318,8 +412962,6 @@ }, "description": "3398E, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.398E", "maps": [], @@ -438352,8 +412994,6 @@ }, "description": "3398f, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.398F", "maps": [], @@ -438386,8 +413026,6 @@ }, "description": "3398g, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.398G", "maps": [], @@ -438420,8 +413058,6 @@ }, "description": "3398h, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.398H", "maps": [], @@ -438454,8 +413090,6 @@ }, "description": "3398i, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.398I", "maps": [], @@ -438488,8 +413122,6 @@ }, "description": "3398j, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.398J", "maps": [], @@ -438522,8 +413154,6 @@ }, "description": "3398l, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.398L", "maps": [], @@ -438556,8 +413186,6 @@ }, "description": "3398m, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.398M", "maps": [], @@ -438590,8 +413218,6 @@ }, "description": "3398n, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.398N", "maps": [], @@ -438624,8 +413250,6 @@ }, "description": "3398o, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.398O", "maps": [], @@ -438658,8 +413282,6 @@ }, "description": "3398p, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.398P", "maps": [], @@ -438692,8 +413314,6 @@ }, "description": "3398q, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.398Q", "maps": [], @@ -438726,8 +413346,6 @@ }, "description": "3399A, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.399A", "maps": [], @@ -438760,8 +413378,6 @@ }, "description": "3399B, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.399B", "maps": [], @@ -438794,8 +413410,6 @@ }, "description": "3399C, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.399C", "maps": [], @@ -438828,8 +413442,6 @@ }, "description": "3399D, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.399D", "maps": [], @@ -438862,8 +413474,6 @@ }, "description": "3399E, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.399E", "maps": [], @@ -438896,8 +413506,6 @@ }, "description": "3399F, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.399F", "maps": [], @@ -438930,8 +413538,6 @@ }, "description": "3399G, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.399G", "maps": [], @@ -438964,8 +413570,6 @@ }, "description": "3399H, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.399H", "maps": [], @@ -438998,8 +413602,6 @@ }, "description": "3399I, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.399I", "maps": [], @@ -439032,8 +413634,6 @@ }, "description": "3399K, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.399K", "maps": [], @@ -439066,8 +413666,6 @@ }, "description": "3399L, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.399L", "maps": [], @@ -439100,8 +413698,6 @@ }, "description": "3399M, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.399M", "maps": [], @@ -439134,8 +413730,6 @@ }, "description": "3399P, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.399P", "maps": [], @@ -439168,8 +413762,6 @@ }, "description": "3399Q, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5503.03.399Q", "maps": [], @@ -439202,8 +413794,6 @@ }, "description": "0301A, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.301A", "maps": [], @@ -439236,8 +413826,6 @@ }, "description": "0398B, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.301B", "maps": [], @@ -439270,8 +413858,6 @@ }, "description": "0301C, Beh.-WC / Wickeltisch", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.301C", "maps": [], @@ -439304,8 +413890,6 @@ }, "description": "0301D, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.301D", "maps": [], @@ -439338,8 +413922,6 @@ }, "description": "0301E, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.301E", "maps": [], @@ -439372,8 +413954,6 @@ }, "description": "0301F, Laden (Loske) Cafebar", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.301F", "maps": [], @@ -439406,8 +413986,6 @@ }, "description": "0302, Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.302", "maps": [], @@ -439440,8 +414018,6 @@ }, "description": "0302M, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.302M", "maps": [], @@ -439474,8 +414050,6 @@ }, "description": "0303, Mechanische Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.303", "maps": [], @@ -439508,8 +414082,6 @@ }, "description": "0303N, Duschen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.303N", "maps": [], @@ -439542,8 +414114,6 @@ }, "description": "0303O, Klimakammer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.303O", "maps": [], @@ -439576,8 +414146,6 @@ }, "description": "0303P, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.303P", "maps": [], @@ -439610,8 +414178,6 @@ }, "description": "0303Q, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.303Q", "maps": [], @@ -439644,8 +414210,6 @@ }, "description": "0303R, Vorraum WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.303R", "maps": [], @@ -439678,8 +414242,6 @@ }, "description": "0303S, Sanit\u00e4rr\u00e4ume", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.303S", "maps": [], @@ -439712,8 +414274,6 @@ }, "description": "0303T, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.303T", "maps": [], @@ -439746,8 +414306,6 @@ }, "description": "0304, Schlosserei", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.304", "maps": [], @@ -439780,8 +414338,6 @@ }, "description": "0304M, Umkleide/Dusche-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.304M", "maps": [], @@ -439814,8 +414370,6 @@ }, "description": "0304N, Seminar- u. Schulungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.304N", "maps": [], @@ -439848,8 +414402,6 @@ }, "description": "0305, Versuchshalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.305", "maps": [], @@ -439882,8 +414434,6 @@ }, "description": "0305M, CNC-Maschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.305M", "maps": [], @@ -439916,8 +414466,6 @@ }, "description": "0306, Simulationshalle + Steuerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.306", "maps": [], @@ -439950,8 +414498,6 @@ }, "description": "0306M, Materiallager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.306M", "maps": [], @@ -439984,8 +414530,6 @@ }, "description": "0306N, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.306N", "maps": [], @@ -440018,8 +414562,6 @@ }, "description": "0308, M\u00fcllraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.308", "maps": [], @@ -440052,8 +414594,6 @@ }, "description": "0325, Elektronik Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.325", "maps": [], @@ -440086,8 +414626,6 @@ }, "description": "0325M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.325M", "maps": [], @@ -440120,8 +414658,6 @@ }, "description": "0325N, Nebenraum von 0325m", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.325N", "maps": [], @@ -440154,8 +414690,6 @@ }, "description": "0325X, Fahrzeugverkehrsfl\u00e4che", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.325X", "maps": [], @@ -440188,8 +414722,6 @@ }, "description": "0326, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.326", "maps": [], @@ -440222,8 +414754,6 @@ }, "description": "0326M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.326M", "maps": [], @@ -440256,8 +414786,6 @@ }, "description": "0327, Team Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.327", "maps": [], @@ -440290,8 +414818,6 @@ }, "description": "0328, Gast", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.328", "maps": [], @@ -440324,8 +414850,6 @@ }, "description": "0329, Technische Angestellte", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.329", "maps": [], @@ -440358,8 +414882,6 @@ }, "description": "0330, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.330", "maps": [], @@ -440392,8 +414914,6 @@ }, "description": "0331, Studentenarbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.331", "maps": [], @@ -440426,8 +414946,6 @@ }, "description": "0332, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.332", "maps": [], @@ -440460,8 +414978,6 @@ }, "description": "0332A, Installationsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.332A", "maps": [], @@ -440494,8 +415010,6 @@ }, "description": "0333, Drucker", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.333", "maps": [], @@ -440528,8 +415042,6 @@ }, "description": "0334, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.334", "maps": [], @@ -440562,8 +415074,6 @@ }, "description": "0334M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.334M", "maps": [], @@ -440596,8 +415106,6 @@ }, "description": "0335, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.335", "maps": [], @@ -440630,8 +415138,6 @@ }, "description": "0336, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.336", "maps": [], @@ -440734,8 +415240,6 @@ }, "description": "0338, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.338", "maps": [], @@ -440851,8 +415355,6 @@ }, "description": "0360, Messflur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.360", "maps": [], @@ -440885,8 +415387,6 @@ }, "description": "0360m, Trafo", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.360M", "maps": [], @@ -440919,8 +415419,6 @@ }, "description": "0360n, Trafo", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.360N", "maps": [], @@ -440953,8 +415451,6 @@ }, "description": "0360O, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.360O", "maps": [], @@ -440987,8 +415483,6 @@ }, "description": "0360p, Trafo", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.360P", "maps": [], @@ -441021,8 +415515,6 @@ }, "description": "0360Q, Fernmeldetechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.360Q", "maps": [], @@ -441055,8 +415547,6 @@ }, "description": "0360R, Umkleide / Dusche Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.360R", "maps": [], @@ -441089,8 +415579,6 @@ }, "description": "0360S, Umkleide / Dusche Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.360S", "maps": [], @@ -441123,8 +415611,6 @@ }, "description": "0360w, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.360W", "maps": [], @@ -441157,8 +415643,6 @@ }, "description": "0361, Pr\u00fcfstand", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.361", "maps": [], @@ -441191,8 +415675,6 @@ }, "description": "0362, Pr\u00fcfstand", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.362", "maps": [], @@ -441225,8 +415707,6 @@ }, "description": "0363, Pr\u00fcfstand", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.363", "maps": [], @@ -441259,8 +415739,6 @@ }, "description": "0364, Pr\u00fcfstand", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.364", "maps": [], @@ -441293,8 +415771,6 @@ }, "description": "0365, Pr\u00fcfstand", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.365", "maps": [], @@ -441327,8 +415803,6 @@ }, "description": "0366, Pr\u00fcfstand", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.366", "maps": [], @@ -441361,8 +415835,6 @@ }, "description": "0367, Pr\u00fcfstand", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.367", "maps": [], @@ -441395,8 +415867,6 @@ }, "description": "0368, Pr\u00fcfstand", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.368", "maps": [], @@ -441429,8 +415899,6 @@ }, "description": "0368A, Elektrowerkstatt o.f.e.M.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.368A", "maps": [], @@ -441463,8 +415931,6 @@ }, "description": "368B, Technologische Versuchshalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.368B", "maps": [], @@ -441497,8 +415963,6 @@ }, "description": "368C, Technologische Versuchshalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.368C", "maps": [], @@ -441531,8 +415995,6 @@ }, "description": "368D, Technologische Versuchshalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.368D", "maps": [], @@ -441565,8 +416027,6 @@ }, "description": "368E, Sonst.Betriebst.Anlagen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.368E", "maps": [], @@ -441599,8 +416059,6 @@ }, "description": "368F, Technologische Versuchshalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.368F", "maps": [], @@ -441633,8 +416091,6 @@ }, "description": "0369, K\u00fchlwasserbeh\u00e4lter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.369", "maps": [], @@ -441667,8 +416123,6 @@ }, "description": "0370, Gasflaschenlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.370", "maps": [], @@ -441701,8 +416155,6 @@ }, "description": "0390, Versuchshalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.390", "maps": [], @@ -441735,8 +416187,6 @@ }, "description": "0390A, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.390A", "maps": [], @@ -441769,8 +416219,6 @@ }, "description": "0390B, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.390B", "maps": [], @@ -441803,8 +416251,6 @@ }, "description": "0390C, Fahrsimulator", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.390C", "maps": [], @@ -441837,8 +416283,6 @@ }, "description": "0390D, VR.-Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.390D", "maps": [], @@ -441871,8 +416315,6 @@ }, "description": "0390E, Sens.-Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.390E", "maps": [], @@ -441905,8 +416347,6 @@ }, "description": "0390F, Elektro-Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.390F", "maps": [], @@ -441939,8 +416379,6 @@ }, "description": "0390G, Aufenthalt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.390G", "maps": [], @@ -441973,8 +416411,6 @@ }, "description": "0390H, Versuchshalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.390H", "maps": [], @@ -442007,8 +416443,6 @@ }, "description": "0390I, KFZ-Wartung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.390I", "maps": [], @@ -442041,8 +416475,6 @@ }, "description": "0390J, Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.390J", "maps": [], @@ -442075,8 +416507,6 @@ }, "description": "0390L, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.390L", "maps": [], @@ -442109,8 +416539,6 @@ }, "description": "0390K, Personal/Schulung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.391K", "maps": [], @@ -442143,8 +416571,6 @@ }, "description": "0392, Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.392", "maps": [], @@ -442177,8 +416603,6 @@ }, "description": "0392A, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.392A", "maps": [], @@ -442211,8 +416635,6 @@ }, "description": "0392B, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.392B", "maps": [], @@ -442245,8 +416667,6 @@ }, "description": "0392C, Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.392C", "maps": [], @@ -442279,8 +416699,6 @@ }, "description": "0392D, Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.392D", "maps": [], @@ -442313,8 +416731,6 @@ }, "description": "0398a, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.398A", "maps": [], @@ -442347,8 +416763,6 @@ }, "description": "0398B, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.398B", "maps": [], @@ -442381,8 +416795,6 @@ }, "description": "0398C, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.398C", "maps": [], @@ -442415,8 +416827,6 @@ }, "description": "0398d, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.398D", "maps": [], @@ -442449,8 +416859,6 @@ }, "description": "0398e, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.398E", "maps": [], @@ -442483,8 +416891,6 @@ }, "description": "0398f, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.398F", "maps": [], @@ -442517,8 +416923,6 @@ }, "description": "0398g, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.398G", "maps": [], @@ -442551,8 +416955,6 @@ }, "description": "0398h, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.398H", "maps": [], @@ -442585,8 +416987,6 @@ }, "description": "0398i, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.398I", "maps": [], @@ -442619,8 +417019,6 @@ }, "description": "0398j, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.398J", "maps": [], @@ -442653,8 +417051,6 @@ }, "description": "0398l, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.398L", "maps": [], @@ -442687,8 +417083,6 @@ }, "description": "0398M, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.398M", "maps": [], @@ -442721,8 +417115,6 @@ }, "description": "0398n, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.398N", "maps": [], @@ -442755,8 +417147,6 @@ }, "description": "0398o, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.398O", "maps": [], @@ -442789,8 +417179,6 @@ }, "description": "0398p, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.398P", "maps": [], @@ -442823,8 +417211,6 @@ }, "description": "0398q, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.398Q", "maps": [], @@ -442857,8 +417243,6 @@ }, "description": "0398S, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.398S", "maps": [], @@ -442891,8 +417275,6 @@ }, "description": "0398v, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.398V", "maps": [], @@ -442925,8 +417307,6 @@ }, "description": "0399A, MW 3 Innenhof", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.399A", "maps": [], @@ -442959,8 +417339,6 @@ }, "description": "0399B, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.399B", "maps": [], @@ -442993,8 +417371,6 @@ }, "description": "0399C, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.399C", "maps": [], @@ -443027,8 +417403,6 @@ }, "description": "0399D, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.399D", "maps": [], @@ -443061,8 +417435,6 @@ }, "description": "0399E, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.399E", "maps": [], @@ -443095,8 +417467,6 @@ }, "description": "0399F, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.399F", "maps": [], @@ -443129,8 +417499,6 @@ }, "description": "0399I, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.399I", "maps": [], @@ -443163,8 +417531,6 @@ }, "description": "0399J, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.399J", "maps": [], @@ -443197,8 +417563,6 @@ }, "description": "0399K, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.399K", "maps": [], @@ -443231,8 +417595,6 @@ }, "description": "0399L, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.399L", "maps": [], @@ -443265,8 +417627,6 @@ }, "description": "0399P, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.399M", "maps": [], @@ -443299,8 +417659,6 @@ }, "description": "0399N, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.399N", "maps": [], @@ -443333,8 +417691,6 @@ }, "description": "0399O, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.399O", "maps": [], @@ -443367,8 +417723,6 @@ }, "description": "0399P, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.399P", "maps": [], @@ -443401,8 +417755,6 @@ }, "description": "0399S, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.399S", "maps": [], @@ -443435,8 +417787,6 @@ }, "description": "0399T, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.399T", "maps": [], @@ -443469,8 +417819,6 @@ }, "description": "0399U, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.399U", "maps": [], @@ -443503,8 +417851,6 @@ }, "description": "0399X, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.399X", "maps": [], @@ -443537,8 +417883,6 @@ }, "description": "0399Y, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5503.EG.399Y", "maps": [], @@ -443571,8 +417915,6 @@ }, "description": "U301, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5503.U1.301", "maps": [], @@ -443605,8 +417947,6 @@ }, "description": "U301M, Schachtaufgang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5503.U1.301M", "maps": [], @@ -443639,8 +417979,6 @@ }, "description": "U302, Installationskeller", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5503.U1.302", "maps": [], @@ -443673,8 +418011,6 @@ }, "description": "U303M, Lager Laden 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5503.U1.303M", "maps": [], @@ -443707,8 +418043,6 @@ }, "description": "U303N, Maschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5503.U1.303N", "maps": [], @@ -443741,8 +418075,6 @@ }, "description": "U325, Elektrische Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5503.U1.325", "maps": [], @@ -443775,8 +418107,6 @@ }, "description": "U326, Elektrische Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5503.U1.326", "maps": [], @@ -443809,8 +418139,6 @@ }, "description": "U326M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5503.U1.326M", "maps": [], @@ -443843,8 +418171,6 @@ }, "description": "U327, Fernmeldetechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5503.U1.327", "maps": [], @@ -443877,8 +418203,6 @@ }, "description": "U327M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5503.U1.327M", "maps": [], @@ -443911,8 +418235,6 @@ }, "description": "U328, Studenten Hilfskr\u00e4fte/Arbeitspl\u00e4tze", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5503.U1.328", "maps": [], @@ -443945,8 +418267,6 @@ }, "description": "U329, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5503.U1.329", "maps": [], @@ -443979,8 +418299,6 @@ }, "description": "U330, Reinigungsdienst", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5503.U1.330", "maps": [], @@ -444013,8 +418331,6 @@ }, "description": "U331, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5503.U1.331", "maps": [], @@ -444047,8 +418363,6 @@ }, "description": "U331M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5503.U1.331M", "maps": [], @@ -444081,8 +418395,6 @@ }, "description": "U332, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5503.U1.332", "maps": [], @@ -444115,8 +418427,6 @@ }, "description": "U333, Filmbearbeitg.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5503.U1.333", "maps": [], @@ -444149,8 +418459,6 @@ }, "description": "U333M, B\u00fcchermagazin", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5503.U1.333M", "maps": [], @@ -444183,8 +418491,6 @@ }, "description": "U334, Lagerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5503.U1.334", "maps": [], @@ -444217,8 +418523,6 @@ }, "description": "U334M, Maschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5503.U1.334M", "maps": [], @@ -444251,8 +418555,6 @@ }, "description": "U350A, MW U350a, Vorbereitung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5503.U1.350A", "maps": [], @@ -444285,8 +418587,6 @@ }, "description": "U350B, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5503.U1.350B", "maps": [], @@ -444319,8 +418619,6 @@ }, "description": "U360, Installationskanal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5503.U1.360", "maps": [], @@ -444353,8 +418651,6 @@ }, "description": "U398B, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5503.U1.398B", "maps": [], @@ -444387,8 +418683,6 @@ }, "description": "U398c, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5503.U1.398C", "maps": [], @@ -444421,8 +418715,6 @@ }, "description": "U398D, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5503.U1.398D", "maps": [], @@ -444455,8 +418747,6 @@ }, "description": "U398E, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5503.U1.398E", "maps": [], @@ -444489,8 +418779,6 @@ }, "description": "U398F, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5503.U1.398F", "maps": [], @@ -444523,8 +418811,6 @@ }, "description": "U398G, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5503.U1.398G", "maps": [], @@ -444557,8 +418843,6 @@ }, "description": "U398I, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5503.U1.398I", "maps": [], @@ -444591,8 +418875,6 @@ }, "description": "U398J, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5503.U1.398J", "maps": [], @@ -444625,8 +418907,6 @@ }, "description": "U398K, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5503.U1.398K", "maps": [], @@ -444659,8 +418939,6 @@ }, "description": "U398M, Aufzugs-u. F\u00f6rdermaschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5503.U1.398M", "maps": [], @@ -444693,8 +418971,6 @@ }, "description": "U398O, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5503.U1.398O", "maps": [], @@ -444727,8 +419003,6 @@ }, "description": "U398P, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5503.U1.398P", "maps": [], @@ -444761,8 +419035,6 @@ }, "description": "U398Q, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5503.U1.398Q", "maps": [], @@ -444795,8 +419067,6 @@ }, "description": "U398S, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5503.U1.398S", "maps": [], @@ -444829,8 +419099,6 @@ }, "description": "U399A, Installationskeller", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5503.U1.399A", "maps": [], @@ -444863,8 +419131,6 @@ }, "description": "U399B, Betriebstechn. Anlagen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5503.U1.399B", "maps": [], @@ -444897,8 +419163,6 @@ }, "description": "U399D, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5503.U1.399D", "maps": [], @@ -444931,8 +419195,6 @@ }, "description": "U399E, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5503.U1.399E", "maps": [], @@ -444965,8 +419227,6 @@ }, "description": "U399F, Maschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5503.U1.399F", "maps": [], @@ -444999,8 +419259,6 @@ }, "description": "U399G, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5503.U1.399G", "maps": [], @@ -445033,8 +419291,6 @@ }, "description": "U399H, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5503.U1.399H", "maps": [], @@ -445067,8 +419323,6 @@ }, "description": "U399I, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5503.U1.399I", "maps": [], @@ -445101,8 +419355,6 @@ }, "description": "U399J, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5503.U1.399J", "maps": [], @@ -445135,8 +419387,6 @@ }, "description": "U399N, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5503.U1.399N", "maps": [], @@ -445169,8 +419419,6 @@ }, "description": "U399O, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5503.U1.399O", "maps": [], @@ -445203,8 +419451,6 @@ }, "description": "1401, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.401", "maps": [], @@ -445237,8 +419483,6 @@ }, "description": "1402, Praktikum Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.402", "maps": [], @@ -445271,8 +419515,6 @@ }, "description": "1402M, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.402M", "maps": [], @@ -445305,8 +419547,6 @@ }, "description": "1403, Teamroom", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.403", "maps": [], @@ -445339,8 +419579,6 @@ }, "description": "1403M, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.403M", "maps": [], @@ -445373,8 +419611,6 @@ }, "description": "1403N, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.403N", "maps": [], @@ -445407,8 +419643,6 @@ }, "description": "1403P, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.403P", "maps": [], @@ -445441,8 +419675,6 @@ }, "description": "1403Q, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.403Q", "maps": [], @@ -445475,8 +419707,6 @@ }, "description": "1404, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.404", "maps": [], @@ -445509,8 +419739,6 @@ }, "description": "1404M, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.404M", "maps": [], @@ -445543,8 +419771,6 @@ }, "description": "1405, RFA Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.405", "maps": [], @@ -445577,8 +419803,6 @@ }, "description": "1405M, Praktikum Labor-Brennstoffanalyse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.405M", "maps": [], @@ -445611,8 +419835,6 @@ }, "description": "1405N, AAS Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.405N", "maps": [], @@ -445645,8 +419867,6 @@ }, "description": "1406, Computerpool", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.406", "maps": [], @@ -445679,8 +419899,6 @@ }, "description": "1406M, Chemielabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.406M", "maps": [], @@ -445713,8 +419931,6 @@ }, "description": "1406N, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.406N", "maps": [], @@ -445747,8 +419963,6 @@ }, "description": "1407, Springer B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.407", "maps": [], @@ -445781,8 +419995,6 @@ }, "description": "1408, Permeabilit\u00e4tslabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.408", "maps": [], @@ -445815,8 +420027,6 @@ }, "description": "1409, Aditive Manufacturing Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.409", "maps": [], @@ -445849,8 +420059,6 @@ }, "description": "1410, Optiklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.410", "maps": [], @@ -445883,8 +420091,6 @@ }, "description": "1411, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.411", "maps": [], @@ -445917,8 +420123,6 @@ }, "description": "1425, Videokonferenzraum/Bibliothek", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.425", "maps": [], @@ -445951,8 +420155,6 @@ }, "description": "1426, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.426", "maps": [], @@ -445985,8 +420187,6 @@ }, "description": "1427, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.427", "maps": [], @@ -446019,8 +420219,6 @@ }, "description": "1428, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.428", "maps": [], @@ -446053,8 +420251,6 @@ }, "description": "1428M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.428M", "maps": [], @@ -446087,8 +420283,6 @@ }, "description": "1428N, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.428N", "maps": [], @@ -446121,8 +420315,6 @@ }, "description": "1429, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.429", "maps": [], @@ -446155,8 +420347,6 @@ }, "description": "1429M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.429M", "maps": [], @@ -446189,8 +420379,6 @@ }, "description": "1430, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.430", "maps": [], @@ -446223,8 +420411,6 @@ }, "description": "1431, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.431", "maps": [], @@ -446257,8 +420443,6 @@ }, "description": "1432, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.432", "maps": [], @@ -446291,8 +420475,6 @@ }, "description": "1433, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.433", "maps": [], @@ -446325,8 +420507,6 @@ }, "description": "1434, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.434", "maps": [], @@ -446359,8 +420539,6 @@ }, "description": "1435, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.435", "maps": [], @@ -446393,8 +420571,6 @@ }, "description": "1436, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.436", "maps": [], @@ -446427,8 +420603,6 @@ }, "description": "1437, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.437", "maps": [], @@ -446461,8 +420635,6 @@ }, "description": "1437M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.437M", "maps": [], @@ -446495,8 +420667,6 @@ }, "description": "1438, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.438", "maps": [], @@ -446529,8 +420699,6 @@ }, "description": "1439, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.439", "maps": [], @@ -446563,8 +420731,6 @@ }, "description": "1440, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.440", "maps": [], @@ -446597,8 +420763,6 @@ }, "description": "1441, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.441", "maps": [], @@ -446631,8 +420795,6 @@ }, "description": "1442, VR-Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.442", "maps": [], @@ -446735,8 +420897,6 @@ }, "description": "1450A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.450A", "maps": [], @@ -446769,8 +420929,6 @@ }, "description": "1460, Mikrobiologielabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.460", "maps": [], @@ -446803,8 +420961,6 @@ }, "description": "1460M, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.460M", "maps": [], @@ -446837,8 +420993,6 @@ }, "description": "1460O, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.460O", "maps": [], @@ -446871,8 +421025,6 @@ }, "description": "1460P, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.460P", "maps": [], @@ -446905,8 +421057,6 @@ }, "description": "1460Q, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.460Q", "maps": [], @@ -446939,8 +421089,6 @@ }, "description": "1460R, Beh.-WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.460R", "maps": [], @@ -446973,8 +421121,6 @@ }, "description": "1460S, Umkleide / Dusche D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.460S", "maps": [], @@ -447007,8 +421153,6 @@ }, "description": "1460T, Umkleide / Dusche Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.460T", "maps": [], @@ -447041,8 +421185,6 @@ }, "description": "1460N, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.460U", "maps": [], @@ -447075,8 +421217,6 @@ }, "description": "1461, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.461", "maps": [], @@ -447109,8 +421249,6 @@ }, "description": "1461A, Aufenthaltsraum/Lehrlingswerkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.461A", "maps": [], @@ -447143,8 +421281,6 @@ }, "description": "1461M, Gemeinsames Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.461M", "maps": [], @@ -447177,8 +421313,6 @@ }, "description": "1462, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.462", "maps": [], @@ -447211,8 +421345,6 @@ }, "description": "1462M, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.462M", "maps": [], @@ -447245,8 +421377,6 @@ }, "description": "1463, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.463", "maps": [], @@ -447279,8 +421409,6 @@ }, "description": "1463M, Chemie Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.463M", "maps": [], @@ -447313,8 +421441,6 @@ }, "description": "1464, Auswertung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.464", "maps": [], @@ -447347,8 +421473,6 @@ }, "description": "1490, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.490", "maps": [], @@ -447381,8 +421505,6 @@ }, "description": "1490A, L\u00fcftungszentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.490A", "maps": [], @@ -447415,8 +421537,6 @@ }, "description": "1490B, Elektrowerkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.490B", "maps": [], @@ -447449,8 +421569,6 @@ }, "description": "1490D, Praktikum Verfahrenstechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.490D", "maps": [], @@ -447483,8 +421601,6 @@ }, "description": "1490E, Schleuse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.490E", "maps": [], @@ -447517,8 +421633,6 @@ }, "description": "1490F, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.490F", "maps": [], @@ -447551,8 +421665,6 @@ }, "description": "1490G, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.490G", "maps": [], @@ -447585,8 +421697,6 @@ }, "description": "1490H, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.490H", "maps": [], @@ -447619,8 +421729,6 @@ }, "description": "1490I, Gast", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.490I", "maps": [], @@ -447653,8 +421761,6 @@ }, "description": "1499V, Verkehrsweg", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.490N", "maps": [], @@ -447687,8 +421793,6 @@ }, "description": "1490P, Balkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.490P", "maps": [], @@ -447721,8 +421825,6 @@ }, "description": "1497A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.497A", "maps": [], @@ -447755,8 +421857,6 @@ }, "description": "1497B, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.497B", "maps": [], @@ -447789,8 +421889,6 @@ }, "description": "1497C, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.497C", "maps": [], @@ -447823,8 +421921,6 @@ }, "description": "1497D, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.497D", "maps": [], @@ -447857,8 +421953,6 @@ }, "description": "1497E, Technologisches Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.497E", "maps": [], @@ -447891,8 +421985,6 @@ }, "description": "1497F, Technologisches Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.497F", "maps": [], @@ -447925,8 +422017,6 @@ }, "description": "1497G, Technologisches Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.497G", "maps": [], @@ -447959,8 +422049,6 @@ }, "description": "1497H, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.497H", "maps": [], @@ -447993,8 +422081,6 @@ }, "description": "1498S, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.498A", "maps": [], @@ -448027,8 +422113,6 @@ }, "description": "1498b, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.498B", "maps": [], @@ -448061,8 +422145,6 @@ }, "description": "1498C, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.498C", "maps": [], @@ -448095,8 +422177,6 @@ }, "description": "1498d, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.498D", "maps": [], @@ -448129,8 +422209,6 @@ }, "description": "1498e, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.498E", "maps": [], @@ -448163,8 +422241,6 @@ }, "description": "1498f, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.498F", "maps": [], @@ -448197,8 +422273,6 @@ }, "description": "1498g, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.498G", "maps": [], @@ -448231,8 +422305,6 @@ }, "description": "1498h, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.498H", "maps": [], @@ -448265,8 +422337,6 @@ }, "description": "1498i, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.498I", "maps": [], @@ -448299,8 +422369,6 @@ }, "description": "1498j, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.498J", "maps": [], @@ -448333,8 +422401,6 @@ }, "description": "1498k, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.498K", "maps": [], @@ -448367,8 +422433,6 @@ }, "description": "1498l, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.498L", "maps": [], @@ -448401,8 +422465,6 @@ }, "description": "1498m, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.498M", "maps": [], @@ -448435,8 +422497,6 @@ }, "description": "1498o, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.498O", "maps": [], @@ -448469,8 +422529,6 @@ }, "description": "1498p, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.498P", "maps": [], @@ -448503,8 +422561,6 @@ }, "description": "1498q, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.498Q", "maps": [], @@ -448537,8 +422593,6 @@ }, "description": "1498r, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.498R", "maps": [], @@ -448571,8 +422625,6 @@ }, "description": "1498s, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.498S", "maps": [], @@ -448605,8 +422657,6 @@ }, "description": "1498t, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.498T", "maps": [], @@ -448639,8 +422689,6 @@ }, "description": "1498u, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.498U", "maps": [], @@ -448673,8 +422721,6 @@ }, "description": "1499, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.499", "maps": [], @@ -448707,8 +422753,6 @@ }, "description": "1499A, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.499A", "maps": [], @@ -448741,8 +422785,6 @@ }, "description": "1499B, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.499B", "maps": [], @@ -448775,8 +422817,6 @@ }, "description": "1499C, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.499C", "maps": [], @@ -448809,8 +422849,6 @@ }, "description": "1499D, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.499D", "maps": [], @@ -448843,8 +422881,6 @@ }, "description": "1499E, Flur und Allraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.499E", "maps": [], @@ -448877,8 +422913,6 @@ }, "description": "1499F, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.499F", "maps": [], @@ -448911,8 +422945,6 @@ }, "description": "1499I, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.499I", "maps": [], @@ -448945,8 +422977,6 @@ }, "description": "1499J, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.499J", "maps": [], @@ -448979,8 +423009,6 @@ }, "description": "1499K, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.499K", "maps": [], @@ -449013,8 +423041,6 @@ }, "description": "1499M, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.499M", "maps": [], @@ -449047,8 +423073,6 @@ }, "description": "1499N, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.499N", "maps": [], @@ -449081,8 +423105,6 @@ }, "description": "1499O, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.499O", "maps": [], @@ -449115,8 +423137,6 @@ }, "description": "1499Q, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.499Q", "maps": [], @@ -449149,8 +423169,6 @@ }, "description": "1499R, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.499R", "maps": [], @@ -449183,8 +423201,6 @@ }, "description": "1499S, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.499S", "maps": [], @@ -449217,8 +423233,6 @@ }, "description": "1499T, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5504.01.499T", "maps": [], @@ -449251,8 +423265,6 @@ }, "description": "2401, Arbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.401", "maps": [], @@ -449285,8 +423297,6 @@ }, "description": "2402, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.402", "maps": [], @@ -449319,8 +423329,6 @@ }, "description": "2403, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.403", "maps": [], @@ -449353,8 +423361,6 @@ }, "description": "2403M, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.403M", "maps": [], @@ -449387,8 +423393,6 @@ }, "description": "2403N, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.403N", "maps": [], @@ -449421,8 +423425,6 @@ }, "description": "2403P, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.403P", "maps": [], @@ -449455,8 +423457,6 @@ }, "description": "2403Q, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.403Q", "maps": [], @@ -449489,8 +423489,6 @@ }, "description": "2404, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.404", "maps": [], @@ -449523,8 +423521,6 @@ }, "description": "2404M, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.404M", "maps": [], @@ -449557,8 +423553,6 @@ }, "description": "2405, Lehrbeauftragter 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.405", "maps": [], @@ -449591,8 +423585,6 @@ }, "description": "2406, Gast", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.406", "maps": [], @@ -449625,8 +423617,6 @@ }, "description": "2407, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.407", "maps": [], @@ -449659,8 +423649,6 @@ }, "description": "2408, Praktikumsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.408", "maps": [], @@ -449693,8 +423681,6 @@ }, "description": "2408M, W\u00e4geraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.408M", "maps": [], @@ -449727,8 +423713,6 @@ }, "description": "2409, Laboranten", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.409", "maps": [], @@ -449761,8 +423745,6 @@ }, "description": "2410, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.410", "maps": [], @@ -449795,8 +423777,6 @@ }, "description": "2410a, Gasflaschen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.410A", "maps": [], @@ -449829,8 +423809,6 @@ }, "description": "2410M, Phasengleichgewichtslabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.410M", "maps": [], @@ -449863,8 +423841,6 @@ }, "description": "2410N, Schleuse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.410N", "maps": [], @@ -449897,8 +423873,6 @@ }, "description": "2410O, Lagerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.410O", "maps": [], @@ -449931,8 +423905,6 @@ }, "description": "2410P, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.410P", "maps": [], @@ -449965,8 +423937,6 @@ }, "description": "2410Q, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.410Q", "maps": [], @@ -449999,8 +423969,6 @@ }, "description": "2411, Handlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.411", "maps": [], @@ -450033,8 +424001,6 @@ }, "description": "2412, Rechner", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.412", "maps": [], @@ -450067,8 +424033,6 @@ }, "description": "2413, \u00dcbungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.413", "maps": [], @@ -450101,8 +424065,6 @@ }, "description": "2419M, Fotolabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.419M", "maps": [], @@ -450135,8 +424097,6 @@ }, "description": "2419N, Fotolabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.419N", "maps": [], @@ -450169,8 +424129,6 @@ }, "description": "2425, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.425", "maps": [], @@ -450203,8 +424161,6 @@ }, "description": "2426, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.426", "maps": [], @@ -450237,8 +424193,6 @@ }, "description": "2427, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.427", "maps": [], @@ -450271,8 +424225,6 @@ }, "description": "2428, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.428", "maps": [], @@ -450305,8 +424257,6 @@ }, "description": "2428M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.428M", "maps": [], @@ -450339,8 +424289,6 @@ }, "description": "2428N, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.428N", "maps": [], @@ -450373,8 +424321,6 @@ }, "description": "2428O, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.428O", "maps": [], @@ -450407,8 +424353,6 @@ }, "description": "2429, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.429", "maps": [], @@ -450441,8 +424385,6 @@ }, "description": "2430, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.430", "maps": [], @@ -450475,8 +424417,6 @@ }, "description": "2431, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.431", "maps": [], @@ -450509,8 +424449,6 @@ }, "description": "2432, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.432", "maps": [], @@ -450543,8 +424481,6 @@ }, "description": "2433, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.433", "maps": [], @@ -450577,8 +424513,6 @@ }, "description": "2434, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.434", "maps": [], @@ -450611,8 +424545,6 @@ }, "description": "2435, Bibliothek", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.435", "maps": [], @@ -450645,8 +424577,6 @@ }, "description": "2435M, Laserlabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.435M", "maps": [], @@ -450679,8 +424609,6 @@ }, "description": "2435N, Registratur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.435N", "maps": [], @@ -450713,8 +424641,6 @@ }, "description": "2436, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.436", "maps": [], @@ -450747,8 +424673,6 @@ }, "description": "2436M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.436M", "maps": [], @@ -450781,8 +424705,6 @@ }, "description": "2437, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.437", "maps": [], @@ -450815,8 +424737,6 @@ }, "description": "2438, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.438", "maps": [], @@ -450849,8 +424769,6 @@ }, "description": "2439, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.439", "maps": [], @@ -450883,8 +424801,6 @@ }, "description": "2440, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.440", "maps": [], @@ -450917,8 +424833,6 @@ }, "description": "2450, Zeichensaal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.450", "maps": [ @@ -450963,8 +424877,6 @@ }, "description": "2451, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.451", "maps": [], @@ -450997,8 +424909,6 @@ }, "description": "2452, Seminar", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.452", "maps": [], @@ -451031,8 +424941,6 @@ }, "description": "2452A, Besprechung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.452A", "maps": [], @@ -451065,8 +424973,6 @@ }, "description": "2460, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.460", "maps": [], @@ -451099,8 +425005,6 @@ }, "description": "2498a, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.498A", "maps": [], @@ -451133,8 +425037,6 @@ }, "description": "2498b, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.498B", "maps": [], @@ -451167,8 +425069,6 @@ }, "description": "2498C, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.498C", "maps": [], @@ -451201,8 +425101,6 @@ }, "description": "2498d, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.498D", "maps": [], @@ -451235,8 +425133,6 @@ }, "description": "2498e, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.498E", "maps": [], @@ -451269,8 +425165,6 @@ }, "description": "2498f, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.498F", "maps": [], @@ -451303,8 +425197,6 @@ }, "description": "2498g, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.498G", "maps": [], @@ -451337,8 +425229,6 @@ }, "description": "2498h, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.498H", "maps": [], @@ -451371,8 +425261,6 @@ }, "description": "2498i, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.498I", "maps": [], @@ -451405,8 +425293,6 @@ }, "description": "2498j, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.498J", "maps": [], @@ -451439,8 +425325,6 @@ }, "description": "2498k, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.498K", "maps": [], @@ -451473,8 +425357,6 @@ }, "description": "2498L, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.498L", "maps": [], @@ -451507,8 +425389,6 @@ }, "description": "2498m, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.498M", "maps": [], @@ -451541,8 +425421,6 @@ }, "description": "2498o, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.498O", "maps": [], @@ -451575,8 +425453,6 @@ }, "description": "2498p, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.498P", "maps": [], @@ -451609,8 +425485,6 @@ }, "description": "2499A, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.499A", "maps": [], @@ -451643,8 +425517,6 @@ }, "description": "2499B, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.499B", "maps": [], @@ -451677,8 +425549,6 @@ }, "description": "2499C, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.499C", "maps": [], @@ -451711,8 +425581,6 @@ }, "description": "2499D, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.499D", "maps": [], @@ -451745,8 +425613,6 @@ }, "description": "2499E, Flur und Allraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.499E", "maps": [], @@ -451779,8 +425645,6 @@ }, "description": "2499F, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.499F", "maps": [], @@ -451813,8 +425677,6 @@ }, "description": "2499G, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.499G", "maps": [], @@ -451847,8 +425709,6 @@ }, "description": "2499H, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.499H", "maps": [], @@ -451881,8 +425741,6 @@ }, "description": "2499I, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.499I", "maps": [], @@ -451915,8 +425773,6 @@ }, "description": "2499J, Verbindungsgang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.499J", "maps": [], @@ -451949,8 +425805,6 @@ }, "description": "2499K, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.499K", "maps": [], @@ -451983,8 +425837,6 @@ }, "description": "2499L, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.499L", "maps": [], @@ -452017,8 +425869,6 @@ }, "description": "2499M, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.499M", "maps": [], @@ -452051,8 +425901,6 @@ }, "description": "2499N, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.499N", "maps": [], @@ -452085,8 +425933,6 @@ }, "description": "2499O, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.499O", "maps": [], @@ -452119,8 +425965,6 @@ }, "description": "2499P, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.499P", "maps": [], @@ -452153,8 +425997,6 @@ }, "description": "2499Q, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5504.02.499Q", "maps": [], @@ -452187,8 +426029,6 @@ }, "description": "3401, Computation Room", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.401", "maps": [], @@ -452221,8 +426061,6 @@ }, "description": "3402, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.402", "maps": [], @@ -452255,8 +426093,6 @@ }, "description": "3403, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.403", "maps": [], @@ -452289,8 +426125,6 @@ }, "description": "3403M, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.403M", "maps": [], @@ -452323,8 +426157,6 @@ }, "description": "3403N, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.403N", "maps": [], @@ -452357,8 +426189,6 @@ }, "description": "3403P, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.403P", "maps": [], @@ -452391,8 +426221,6 @@ }, "description": "3403Q, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.403Q", "maps": [], @@ -452425,8 +426253,6 @@ }, "description": "3404, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.404", "maps": [], @@ -452459,8 +426285,6 @@ }, "description": "3405, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.405", "maps": [], @@ -452493,8 +426317,6 @@ }, "description": "3405M, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.405M", "maps": [], @@ -452527,8 +426349,6 @@ }, "description": "3406, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.406", "maps": [], @@ -452561,8 +426381,6 @@ }, "description": "3407, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.407", "maps": [], @@ -452595,8 +426413,6 @@ }, "description": "3408, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.408", "maps": [], @@ -452629,8 +426445,6 @@ }, "description": "3409, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.409", "maps": [], @@ -452663,8 +426477,6 @@ }, "description": "3409M, Allraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.409M", "maps": [], @@ -452697,8 +426509,6 @@ }, "description": "3410, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.410", "maps": [], @@ -452731,8 +426541,6 @@ }, "description": "3410M, 3D Druckerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.410M", "maps": [], @@ -452765,8 +426573,6 @@ }, "description": "3411, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.411", "maps": [], @@ -452799,8 +426605,6 @@ }, "description": "3411M, Kopierraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.411M", "maps": [], @@ -452833,8 +426637,6 @@ }, "description": "3412, Studentenraum / Biofabrication Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.412", "maps": [], @@ -452867,8 +426669,6 @@ }, "description": "3412M, Gelblichtlabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.412M", "maps": [], @@ -452901,8 +426701,6 @@ }, "description": "3412N, Gelblichtlabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.412N", "maps": [], @@ -452935,8 +426733,6 @@ }, "description": "3412O, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.412O", "maps": [], @@ -452969,8 +426765,6 @@ }, "description": "3413, Zellkulturlabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.413", "maps": [], @@ -453003,8 +426797,6 @@ }, "description": "3414, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.414", "maps": [], @@ -453037,8 +426829,6 @@ }, "description": "3425, B\u00fcro Dipl./Hiwis", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.425", "maps": [], @@ -453071,8 +426861,6 @@ }, "description": "3426, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.426", "maps": [], @@ -453105,8 +426893,6 @@ }, "description": "3427, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.427", "maps": [], @@ -453139,8 +426925,6 @@ }, "description": "3428, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.428", "maps": [], @@ -453173,8 +426957,6 @@ }, "description": "3428M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.428M", "maps": [], @@ -453207,8 +426989,6 @@ }, "description": "3428n, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.428N", "maps": [], @@ -453241,8 +427021,6 @@ }, "description": "3429, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.429", "maps": [], @@ -453275,8 +427053,6 @@ }, "description": "3429M, Server", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.429M", "maps": [], @@ -453309,8 +427085,6 @@ }, "description": "3430, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.430", "maps": [], @@ -453343,8 +427117,6 @@ }, "description": "3430M, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.430M", "maps": [], @@ -453377,8 +427149,6 @@ }, "description": "3432, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.432", "maps": [], @@ -453411,8 +427181,6 @@ }, "description": "3433, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.433", "maps": [], @@ -453445,8 +427213,6 @@ }, "description": "3433M, Archiv", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.433M", "maps": [], @@ -453479,8 +427245,6 @@ }, "description": "3434, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.434", "maps": [], @@ -453513,8 +427277,6 @@ }, "description": "3435, Medienraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.435", "maps": [], @@ -453547,8 +427309,6 @@ }, "description": "3436, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.436", "maps": [], @@ -453581,8 +427341,6 @@ }, "description": "3437, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.437", "maps": [], @@ -453615,8 +427373,6 @@ }, "description": "3437M, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.437M", "maps": [], @@ -453649,8 +427405,6 @@ }, "description": "3437N, Elektro-Unterverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.437N", "maps": [], @@ -453683,8 +427437,6 @@ }, "description": "3438, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.438", "maps": [], @@ -453717,8 +427469,6 @@ }, "description": "3439, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.439", "maps": [], @@ -453751,8 +427501,6 @@ }, "description": "3440, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.440", "maps": [], @@ -453785,8 +427533,6 @@ }, "description": "3441, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.441", "maps": [], @@ -453819,8 +427565,6 @@ }, "description": "3442, B\u00fcro Dipl./Hiwis", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.442", "maps": [], @@ -453853,8 +427597,6 @@ }, "description": "3498a, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.498A", "maps": [], @@ -453887,8 +427629,6 @@ }, "description": "3498b, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.498B", "maps": [], @@ -453921,8 +427661,6 @@ }, "description": "3498C, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.498C", "maps": [], @@ -453955,8 +427693,6 @@ }, "description": "3498d, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.498D", "maps": [], @@ -453989,8 +427725,6 @@ }, "description": "3498e, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.498E", "maps": [], @@ -454023,8 +427757,6 @@ }, "description": "3498F, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.498F", "maps": [], @@ -454057,8 +427789,6 @@ }, "description": "3498f, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.498G", "maps": [], @@ -454091,8 +427821,6 @@ }, "description": "3498H, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.498H", "maps": [], @@ -454125,8 +427853,6 @@ }, "description": "3498i, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.498I", "maps": [], @@ -454159,8 +427885,6 @@ }, "description": "3498j, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.498J", "maps": [], @@ -454193,8 +427917,6 @@ }, "description": "3498k, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.498K", "maps": [], @@ -454227,8 +427949,6 @@ }, "description": "3498L, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.498L", "maps": [], @@ -454261,8 +427981,6 @@ }, "description": "3498m, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.498M", "maps": [], @@ -454295,8 +428013,6 @@ }, "description": "3498o, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.498O", "maps": [], @@ -454329,8 +428045,6 @@ }, "description": "3498p, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.498P", "maps": [], @@ -454363,8 +428077,6 @@ }, "description": "3499A, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.499A", "maps": [], @@ -454397,8 +428109,6 @@ }, "description": "3499B, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.499B", "maps": [], @@ -454431,8 +428141,6 @@ }, "description": "3499C, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.499C", "maps": [], @@ -454465,8 +428173,6 @@ }, "description": "3499D, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.499D", "maps": [], @@ -454499,8 +428205,6 @@ }, "description": "3499E, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.499E", "maps": [], @@ -454533,8 +428237,6 @@ }, "description": "3499F, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.499F", "maps": [], @@ -454567,8 +428269,6 @@ }, "description": "3499G, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.499G", "maps": [], @@ -454601,8 +428301,6 @@ }, "description": "3499H, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.499H", "maps": [], @@ -454635,8 +428333,6 @@ }, "description": "3499I, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.499I", "maps": [], @@ -454669,8 +428365,6 @@ }, "description": "3499K, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.499K", "maps": [], @@ -454703,8 +428397,6 @@ }, "description": "3499L, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.499L", "maps": [], @@ -454737,8 +428429,6 @@ }, "description": "3499O, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.499O", "maps": [], @@ -454771,8 +428461,6 @@ }, "description": "3499P, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.499P", "maps": [], @@ -454805,8 +428493,6 @@ }, "description": "3499Q, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.499Q", "maps": [], @@ -454839,8 +428525,6 @@ }, "description": "3499R, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.499R", "maps": [], @@ -454873,8 +428557,6 @@ }, "description": "3499S, Unterrichtsgro\u00dfraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5504.03.499S", "maps": [], @@ -454907,8 +428589,6 @@ }, "description": "0401A, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.401A", "maps": [], @@ -454941,8 +428621,6 @@ }, "description": "0401B, Beh.-WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.401B", "maps": [], @@ -454975,8 +428653,6 @@ }, "description": "0401C, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.401C", "maps": [], @@ -455009,8 +428685,6 @@ }, "description": "0401D, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.401D", "maps": [], @@ -455043,8 +428717,6 @@ }, "description": "0401E, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.401E", "maps": [], @@ -455077,8 +428749,6 @@ }, "description": "0402, Praktikum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.402", "maps": [], @@ -455111,8 +428781,6 @@ }, "description": "0402M, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.402M", "maps": [], @@ -455145,8 +428813,6 @@ }, "description": "0403, techn. \u00dcbungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.403", "maps": [], @@ -455179,8 +428845,6 @@ }, "description": "0403P, Bibliothek", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.403J", "maps": [], @@ -455213,8 +428877,6 @@ }, "description": "0403M, Umkleide/Dusche-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.403K", "maps": [], @@ -455247,8 +428909,6 @@ }, "description": "0403M, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.403M", "maps": [], @@ -455281,8 +428941,6 @@ }, "description": "0403N, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.403N", "maps": [], @@ -455315,8 +428973,6 @@ }, "description": "0403O, Umkleide/Dusche-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.403O", "maps": [], @@ -455349,8 +429005,6 @@ }, "description": "0403P, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.403P", "maps": [], @@ -455383,8 +429037,6 @@ }, "description": "0403Q, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.403Q", "maps": [], @@ -455417,8 +429069,6 @@ }, "description": "0403S, Duschraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.403S", "maps": [], @@ -455451,8 +429101,6 @@ }, "description": "0403T, Duschraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.403T", "maps": [], @@ -455485,8 +429133,6 @@ }, "description": "0404, technologisches Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.404", "maps": [], @@ -455519,8 +429165,6 @@ }, "description": "0404a, Gasflaschenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.404A", "maps": [], @@ -455553,8 +429197,6 @@ }, "description": "0405, M\u00fcllraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.405", "maps": [], @@ -455587,8 +429229,6 @@ }, "description": "0425, Meeting Room", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.425", "maps": [], @@ -455621,8 +429261,6 @@ }, "description": "0425M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.425M", "maps": [], @@ -455655,8 +429293,6 @@ }, "description": "0425N, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.425N", "maps": [], @@ -455689,8 +429325,6 @@ }, "description": "0425Y, Fahrzeugverkehrsfl\u00e4che", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.425Y", "maps": [], @@ -455723,8 +429357,6 @@ }, "description": "0426, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.426", "maps": [], @@ -455757,8 +429389,6 @@ }, "description": "0426M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.426M", "maps": [], @@ -455791,8 +429421,6 @@ }, "description": "0427, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.427", "maps": [], @@ -455825,8 +429453,6 @@ }, "description": "0427M, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.427M", "maps": [], @@ -455859,8 +429485,6 @@ }, "description": "0428, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.428", "maps": [], @@ -455893,8 +429517,6 @@ }, "description": "0428M, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.428M", "maps": [], @@ -455927,8 +429549,6 @@ }, "description": "0429, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.429", "maps": [], @@ -455961,8 +429581,6 @@ }, "description": "0430, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.430", "maps": [], @@ -455995,8 +429613,6 @@ }, "description": "0430M, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.430M", "maps": [], @@ -456029,8 +429645,6 @@ }, "description": "0431, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.431", "maps": [], @@ -456063,8 +429677,6 @@ }, "description": "0432, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.432", "maps": [], @@ -456097,8 +429709,6 @@ }, "description": "0433, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.433", "maps": [], @@ -456131,8 +429741,6 @@ }, "description": "0434, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.434", "maps": [], @@ -456165,8 +429773,6 @@ }, "description": "0435, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.435", "maps": [], @@ -456199,8 +429805,6 @@ }, "description": "0435M, Installationsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.435M", "maps": [], @@ -456233,8 +429837,6 @@ }, "description": "0436, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.436", "maps": [], @@ -456267,8 +429869,6 @@ }, "description": "0437, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.437", "maps": [], @@ -456301,8 +429901,6 @@ }, "description": "0438, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.438", "maps": [], @@ -456335,8 +429933,6 @@ }, "description": "0439, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.439", "maps": [], @@ -456369,8 +429965,6 @@ }, "description": "0450, Rechnerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.450", "maps": [], @@ -456403,8 +429997,6 @@ }, "description": "0450A, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.450A", "maps": [], @@ -456437,8 +430029,6 @@ }, "description": "0450B, Server", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.450B", "maps": [], @@ -456471,8 +430061,6 @@ }, "description": "0460, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.460", "maps": [], @@ -456505,8 +430093,6 @@ }, "description": "0460m, Trafo", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.460M", "maps": [], @@ -456539,8 +430125,6 @@ }, "description": "0460n, Trafo", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.460N", "maps": [], @@ -456573,8 +430157,6 @@ }, "description": "0460O, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.460O", "maps": [], @@ -456607,8 +430189,6 @@ }, "description": "0460p, Trafo", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.460P", "maps": [], @@ -456641,8 +430221,6 @@ }, "description": "0460Q, Fernmeldetechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.460Q", "maps": [], @@ -456675,8 +430253,6 @@ }, "description": "0460R, Umkleide / Dusche H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.460R", "maps": [], @@ -456709,8 +430285,6 @@ }, "description": "0460S, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.460S", "maps": [], @@ -456743,8 +430317,6 @@ }, "description": "0460T, Umkleide / Dusche H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.460T", "maps": [], @@ -456777,8 +430349,6 @@ }, "description": "0460U, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.460U", "maps": [], @@ -456811,8 +430381,6 @@ }, "description": "0460V, Duschraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.460V", "maps": [], @@ -456845,8 +430413,6 @@ }, "description": "0460W, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.460W", "maps": [], @@ -456879,8 +430445,6 @@ }, "description": "0461, Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.461", "maps": [], @@ -456913,8 +430477,6 @@ }, "description": "0461A, Meister", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.461A", "maps": [], @@ -456947,8 +430509,6 @@ }, "description": "0461B, Aufenthalt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.461B", "maps": [], @@ -456981,8 +430541,6 @@ }, "description": "0461M, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.461M", "maps": [], @@ -457015,8 +430573,6 @@ }, "description": "0461N, Schwei\u00dfraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.461N", "maps": [], @@ -457049,8 +430605,6 @@ }, "description": "0461O, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.461O", "maps": [], @@ -457083,8 +430637,6 @@ }, "description": "0461P, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.461P", "maps": [], @@ -457117,8 +430669,6 @@ }, "description": "0462, Mechanische Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.462", "maps": [], @@ -457151,8 +430701,6 @@ }, "description": "0462B, Schwei\u00dfraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.462B", "maps": [], @@ -457185,8 +430733,6 @@ }, "description": "0462M, Mechanische Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.462M", "maps": [], @@ -457219,8 +430765,6 @@ }, "description": "0462N, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.462N", "maps": [], @@ -457253,8 +430797,6 @@ }, "description": "0462O, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.462O", "maps": [], @@ -457287,8 +430829,6 @@ }, "description": "0463, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.463", "maps": [], @@ -457321,8 +430861,6 @@ }, "description": "0464, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.464", "maps": [], @@ -457355,8 +430893,6 @@ }, "description": "0490, Biotechnikum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.490", "maps": [], @@ -457389,8 +430925,6 @@ }, "description": "0490A, Verkehrsfl\u00e4che", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.490A", "maps": [], @@ -457423,8 +430957,6 @@ }, "description": "0490B, Anlieferung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.490B", "maps": [], @@ -457457,8 +430989,6 @@ }, "description": "0490C, Rotorblattpr\u00fcfstand", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.490C", "maps": [], @@ -457491,8 +431021,6 @@ }, "description": "0490D, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.490D", "maps": [], @@ -457525,8 +431053,6 @@ }, "description": "0490E, Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.490E", "maps": [], @@ -457559,8 +431085,6 @@ }, "description": "0490F, Mechanische Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.490F", "maps": [], @@ -457593,8 +431117,6 @@ }, "description": "0490G, Aufenthaltsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.490G", "maps": [], @@ -457627,8 +431149,6 @@ }, "description": "0490I, Anlieferung/Abstellfl\u00e4che", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.490I", "maps": [], @@ -457661,8 +431181,6 @@ }, "description": "0490J, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.490J", "maps": [], @@ -457695,8 +431213,6 @@ }, "description": "0490L, Technikum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.490L", "maps": [], @@ -457729,8 +431245,6 @@ }, "description": "0490M, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.490M", "maps": [], @@ -457763,8 +431277,6 @@ }, "description": "0490N, Verkehrsfl\u00e4che", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.490N", "maps": [], @@ -457797,8 +431309,6 @@ }, "description": "0490R, Technikum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.490R", "maps": [], @@ -457831,8 +431341,6 @@ }, "description": "0490S, Verkehrsfl.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.490S", "maps": [], @@ -457865,8 +431373,6 @@ }, "description": "0498a, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.498A", "maps": [], @@ -457899,8 +431405,6 @@ }, "description": "0498b, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.498B", "maps": [], @@ -457933,8 +431437,6 @@ }, "description": "0498C, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.498C", "maps": [], @@ -457967,8 +431469,6 @@ }, "description": "0498d, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.498D", "maps": [], @@ -458001,8 +431501,6 @@ }, "description": "0498E, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.498E", "maps": [], @@ -458035,8 +431533,6 @@ }, "description": "0498f, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.498F", "maps": [], @@ -458069,8 +431565,6 @@ }, "description": "0498g, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.498G", "maps": [], @@ -458103,8 +431597,6 @@ }, "description": "0498h, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.498H", "maps": [], @@ -458137,8 +431629,6 @@ }, "description": "0498i, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.498I", "maps": [], @@ -458171,8 +431661,6 @@ }, "description": "0498j, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.498J", "maps": [], @@ -458205,8 +431693,6 @@ }, "description": "0498k, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.498K", "maps": [], @@ -458239,8 +431725,6 @@ }, "description": "0498L, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.498L", "maps": [], @@ -458273,8 +431757,6 @@ }, "description": "0498m, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.498M", "maps": [], @@ -458307,8 +431789,6 @@ }, "description": "0498n, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.498N", "maps": [], @@ -458341,8 +431821,6 @@ }, "description": "0498O, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.498O", "maps": [], @@ -458375,8 +431853,6 @@ }, "description": "0498P, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.498P", "maps": [], @@ -458409,8 +431885,6 @@ }, "description": "0498q, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.498Q", "maps": [], @@ -458443,8 +431917,6 @@ }, "description": "0498R, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.498R", "maps": [], @@ -458477,8 +431949,6 @@ }, "description": "0498p, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.498S", "maps": [], @@ -458511,8 +431981,6 @@ }, "description": "0499A, MW 4 Innenhof", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.499A", "maps": [], @@ -458545,8 +432013,6 @@ }, "description": "0499B, Flurbereich im Finger 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.499B", "maps": [], @@ -458579,8 +432045,6 @@ }, "description": "0499C, Flurbereich im Finger 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.499C", "maps": [], @@ -458613,8 +432077,6 @@ }, "description": "0499D, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.499D", "maps": [], @@ -458647,8 +432109,6 @@ }, "description": "0499E, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.499E", "maps": [], @@ -458681,8 +432141,6 @@ }, "description": "0499F, Flurbereich im Finger 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.499F", "maps": [], @@ -458715,8 +432173,6 @@ }, "description": "0499G, Flurbereich im Finger 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.499G", "maps": [], @@ -458749,8 +432205,6 @@ }, "description": "0499H, Flurbereich im Finger 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.499H", "maps": [], @@ -458783,8 +432237,6 @@ }, "description": "0499I, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.499I", "maps": [], @@ -458817,8 +432269,6 @@ }, "description": "0499J, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.499J", "maps": [], @@ -458851,8 +432301,6 @@ }, "description": "0499K, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.499K", "maps": [], @@ -458885,8 +432333,6 @@ }, "description": "0499L, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.499L", "maps": [], @@ -458919,8 +432365,6 @@ }, "description": "0499M, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.499M", "maps": [], @@ -458953,8 +432397,6 @@ }, "description": "0499N, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.499N", "maps": [], @@ -458987,8 +432429,6 @@ }, "description": "0499Q, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.499Q", "maps": [], @@ -459021,8 +432461,6 @@ }, "description": "0499R, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.499R", "maps": [], @@ -459055,8 +432493,6 @@ }, "description": "0499S, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.499S", "maps": [], @@ -459089,8 +432525,6 @@ }, "description": "0499T, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.499T", "maps": [], @@ -459123,8 +432557,6 @@ }, "description": "0499u, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.499U", "maps": [], @@ -459157,8 +432589,6 @@ }, "description": "0499V, Flur und Allraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.499V", "maps": [], @@ -459191,8 +432621,6 @@ }, "description": "0499W, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.499W", "maps": [], @@ -459225,8 +432653,6 @@ }, "description": "0499X, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5504.EG.499X", "maps": [], @@ -459259,8 +432685,6 @@ }, "description": "U401, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5504.U1.401", "maps": [], @@ -459293,8 +432717,6 @@ }, "description": "U402, Installationskeller", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5504.U1.402", "maps": [], @@ -459327,8 +432749,6 @@ }, "description": "U402M, Schachtaufgang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5504.U1.402M", "maps": [], @@ -459361,8 +432781,6 @@ }, "description": "U403M, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5504.U1.403M", "maps": [], @@ -459395,8 +432813,6 @@ }, "description": "U403N, Maschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5504.U1.403N", "maps": [], @@ -459429,8 +432845,6 @@ }, "description": "U403O, Labor 6/Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5504.U1.403O", "maps": [], @@ -459463,8 +432877,6 @@ }, "description": "U403P, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5504.U1.403P", "maps": [], @@ -459497,8 +432909,6 @@ }, "description": "U403Q, M\u00f6bellager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5504.U1.403Q", "maps": [], @@ -459531,8 +432941,6 @@ }, "description": "U403R, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5504.U1.403R", "maps": [], @@ -459565,8 +432973,6 @@ }, "description": "U425, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5504.U1.425", "maps": [], @@ -459599,8 +433005,6 @@ }, "description": "U425M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5504.U1.425M", "maps": [], @@ -459633,8 +433037,6 @@ }, "description": "U426, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5504.U1.426", "maps": [], @@ -459667,8 +433069,6 @@ }, "description": "U426M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5504.U1.426M", "maps": [], @@ -459701,8 +433101,6 @@ }, "description": "U427, Fernmeldetechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5504.U1.427", "maps": [], @@ -459735,8 +433133,6 @@ }, "description": "U428, Keller", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5504.U1.428", "maps": [], @@ -459769,8 +433165,6 @@ }, "description": "U429, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5504.U1.429", "maps": [], @@ -459803,8 +433197,6 @@ }, "description": "U430, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5504.U1.430", "maps": [], @@ -459837,8 +433229,6 @@ }, "description": "U431, Reinigungsdienst", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5504.U1.431", "maps": [], @@ -459871,8 +433261,6 @@ }, "description": "U432, LDA-Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5504.U1.432", "maps": [], @@ -459905,8 +433293,6 @@ }, "description": "U432M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5504.U1.432M", "maps": [], @@ -459939,8 +433325,6 @@ }, "description": "U433, Technol. Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5504.U1.433", "maps": [], @@ -459973,8 +433357,6 @@ }, "description": "U433A, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5504.U1.433A", "maps": [], @@ -460007,8 +433389,6 @@ }, "description": "U434, Kristallisationslabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5504.U1.434", "maps": [], @@ -460041,8 +433421,6 @@ }, "description": "U434A, Kristallisationslabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5504.U1.434A", "maps": [], @@ -460075,8 +433453,6 @@ }, "description": "U435, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5504.U1.435", "maps": [], @@ -460109,8 +433485,6 @@ }, "description": "U450, Rechnerpraktikum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5504.U1.450", "maps": [], @@ -460143,8 +433517,6 @@ }, "description": "U450A, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5504.U1.450A", "maps": [], @@ -460177,8 +433549,6 @@ }, "description": "U450B, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5504.U1.450B", "maps": [], @@ -460211,8 +433581,6 @@ }, "description": "U450C, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5504.U1.450C", "maps": [], @@ -460245,8 +433613,6 @@ }, "description": "U498B, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5504.U1.498B", "maps": [], @@ -460279,8 +433645,6 @@ }, "description": "U498C, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5504.U1.498C", "maps": [], @@ -460313,8 +433677,6 @@ }, "description": "U498D, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5504.U1.498D", "maps": [], @@ -460347,8 +433709,6 @@ }, "description": "U498E, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5504.U1.498E", "maps": [], @@ -460381,8 +433741,6 @@ }, "description": "U498F, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5504.U1.498F", "maps": [], @@ -460415,8 +433773,6 @@ }, "description": "U498G, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5504.U1.498G", "maps": [], @@ -460449,8 +433805,6 @@ }, "description": "U498I, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5504.U1.498I", "maps": [], @@ -460483,8 +433837,6 @@ }, "description": "U498J, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5504.U1.498J", "maps": [], @@ -460517,8 +433869,6 @@ }, "description": "U498L, Aufzugs- u. F\u00f6rdermaschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5504.U1.498L", "maps": [], @@ -460551,8 +433901,6 @@ }, "description": "U498M, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5504.U1.498M", "maps": [], @@ -460585,8 +433933,6 @@ }, "description": "U498n, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5504.U1.498N", "maps": [], @@ -460619,8 +433965,6 @@ }, "description": "U498o, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5504.U1.498O", "maps": [], @@ -460653,8 +433997,6 @@ }, "description": "U498R, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5504.U1.498R", "maps": [], @@ -460687,8 +434029,6 @@ }, "description": "U499B, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5504.U1.499B", "maps": [], @@ -460721,8 +434061,6 @@ }, "description": "U499C, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5504.U1.499C", "maps": [], @@ -460755,8 +434093,6 @@ }, "description": "U499D, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5504.U1.499D", "maps": [], @@ -460789,8 +434125,6 @@ }, "description": "U499E, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5504.U1.499E", "maps": [], @@ -460823,8 +434157,6 @@ }, "description": "U499G, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5504.U1.499G", "maps": [], @@ -460857,8 +434189,6 @@ }, "description": "U499H, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5504.U1.499H", "maps": [], @@ -460891,8 +434221,6 @@ }, "description": "U499I, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5504.U1.499I", "maps": [], @@ -460925,8 +434253,6 @@ }, "description": "U499M, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5504.U1.499M", "maps": [], @@ -460959,8 +434285,6 @@ }, "description": "U499N, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5504.U1.499N", "maps": [], @@ -460993,8 +434317,6 @@ }, "description": "U499P, Installationsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5504.U1.499P", "maps": [], @@ -461027,8 +434349,6 @@ }, "description": "U499Q, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5504.U1.499Q", "maps": [], @@ -461061,8 +434381,6 @@ }, "description": "U499R, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5504.U1.499R", "maps": [], @@ -461095,8 +434413,6 @@ }, "description": "U499K, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5504.U1.996", "maps": [], @@ -461129,8 +434445,6 @@ }, "description": "1501, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.501", "maps": [], @@ -461163,8 +434477,6 @@ }, "description": "1502, Lager f. Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.502", "maps": [], @@ -461197,8 +434509,6 @@ }, "description": "1503, Offiziant", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.503", "maps": [], @@ -461231,8 +434541,6 @@ }, "description": "1503M, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.503M", "maps": [], @@ -461265,8 +434573,6 @@ }, "description": "1503N, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.503N", "maps": [], @@ -461299,8 +434605,6 @@ }, "description": "1503P, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.503P", "maps": [], @@ -461333,8 +434637,6 @@ }, "description": "1503Q, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.503Q", "maps": [], @@ -461367,8 +434669,6 @@ }, "description": "1504, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.504", "maps": [], @@ -461401,8 +434701,6 @@ }, "description": "1505, Elektr. Messlabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.505", "maps": [], @@ -461435,8 +434733,6 @@ }, "description": "1505m, Vorbereitung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.505M", "maps": [], @@ -461469,8 +434765,6 @@ }, "description": "1505n, HiWi Rechnerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.505N", "maps": [], @@ -461503,8 +434797,6 @@ }, "description": "1506, Messraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.506", "maps": [], @@ -461537,8 +434829,6 @@ }, "description": "1507, Videostation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.507", "maps": [], @@ -461571,8 +434861,6 @@ }, "description": "1507m, W\u00e4geraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.507M", "maps": [], @@ -461605,8 +434893,6 @@ }, "description": "1508, Messraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.508", "maps": [], @@ -461639,8 +434925,6 @@ }, "description": "1508m, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.508M", "maps": [], @@ -461673,8 +434957,6 @@ }, "description": "1509, Messraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.509", "maps": [], @@ -461707,8 +434989,6 @@ }, "description": "1510, Metalllabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.510", "maps": [], @@ -461741,8 +435021,6 @@ }, "description": "1511, Mikroskopie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.511", "maps": [], @@ -461775,8 +435053,6 @@ }, "description": "1512, \u00d6llabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.512", "maps": [], @@ -461809,8 +435085,6 @@ }, "description": "1513, Chemielabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.513", "maps": [], @@ -461843,8 +435117,6 @@ }, "description": "1514, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.514", "maps": [], @@ -461877,8 +435149,6 @@ }, "description": "1515, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.515", "maps": [], @@ -461911,8 +435181,6 @@ }, "description": "1526, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.526", "maps": [], @@ -461945,8 +435213,6 @@ }, "description": "1527, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.527", "maps": [], @@ -461979,8 +435245,6 @@ }, "description": "1527M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.527M", "maps": [], @@ -462013,8 +435277,6 @@ }, "description": "1527N, Nebenraum zu 1527m", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.527N", "maps": [], @@ -462047,8 +435309,6 @@ }, "description": "1528, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.528", "maps": [], @@ -462081,8 +435341,6 @@ }, "description": "1528M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.528M", "maps": [], @@ -462115,8 +435373,6 @@ }, "description": "1529, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.529", "maps": [], @@ -462149,8 +435405,6 @@ }, "description": "1530, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.530", "maps": [], @@ -462183,8 +435437,6 @@ }, "description": "1531, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.531", "maps": [], @@ -462217,8 +435469,6 @@ }, "description": "1531m, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.531M", "maps": [], @@ -462251,8 +435501,6 @@ }, "description": "1532, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.532", "maps": [], @@ -462285,8 +435533,6 @@ }, "description": "1533, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.533", "maps": [], @@ -462319,8 +435565,6 @@ }, "description": "1534, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.534", "maps": [], @@ -462353,8 +435597,6 @@ }, "description": "1535, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.535", "maps": [], @@ -462387,8 +435629,6 @@ }, "description": "1535M, Installationsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.535M", "maps": [], @@ -462421,8 +435661,6 @@ }, "description": "1536, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.536", "maps": [], @@ -462455,8 +435693,6 @@ }, "description": "1537, Besprechung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.537", "maps": [], @@ -462489,8 +435725,6 @@ }, "description": "1538, Modellsammlung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.538", "maps": [], @@ -462593,8 +435827,6 @@ }, "description": "1550a, Korrektur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.550A", "maps": [], @@ -462627,8 +435859,6 @@ }, "description": "1560, Messgang/Kontrollraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.560", "maps": [], @@ -462661,8 +435891,6 @@ }, "description": "1560A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.560A", "maps": [], @@ -462695,8 +435923,6 @@ }, "description": "1560B, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.560B", "maps": [], @@ -462729,8 +435955,6 @@ }, "description": "1560M, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.560M", "maps": [], @@ -462763,8 +435987,6 @@ }, "description": "1560N, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.560N", "maps": [], @@ -462797,8 +436019,6 @@ }, "description": "1560P, WC-Damen / Dusche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.560P", "maps": [], @@ -462831,8 +436051,6 @@ }, "description": "1560Q, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.560Q", "maps": [], @@ -462865,8 +436083,6 @@ }, "description": "1560r, Umkleide / Dusche H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.560R", "maps": [], @@ -462899,8 +436115,6 @@ }, "description": "1560S, Umkleide / Dusche H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.560S", "maps": [], @@ -462933,8 +436147,6 @@ }, "description": "1560t, Umkleide / Dusche H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.560T", "maps": [], @@ -462967,8 +436179,6 @@ }, "description": "1560U, Duschraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.560U", "maps": [], @@ -463001,8 +436211,6 @@ }, "description": "1560V, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.560V", "maps": [], @@ -463035,8 +436243,6 @@ }, "description": "1560W, WC-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.560W", "maps": [], @@ -463069,8 +436275,6 @@ }, "description": "1561, Pr\u00fcfstand", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.561", "maps": [], @@ -463103,8 +436307,6 @@ }, "description": "1561m, Elektronische Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.561M", "maps": [], @@ -463137,8 +436339,6 @@ }, "description": "1562, Pr\u00fcfstand", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.562", "maps": [], @@ -463171,8 +436371,6 @@ }, "description": "1563, Pr\u00fcfstand", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.563", "maps": [], @@ -463205,8 +436403,6 @@ }, "description": "1564, Pr\u00fcfstand", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.564", "maps": [], @@ -463239,8 +436435,6 @@ }, "description": "1565, Pr\u00fcfstand", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.565", "maps": [], @@ -463273,8 +436467,6 @@ }, "description": "1566, Pr\u00fcfstand", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.566", "maps": [], @@ -463307,8 +436499,6 @@ }, "description": "1567, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.567", "maps": [], @@ -463341,8 +436531,6 @@ }, "description": "1567m, Pr\u00fcfstandtechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.567M", "maps": [], @@ -463375,8 +436563,6 @@ }, "description": "1568, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.568", "maps": [], @@ -463409,8 +436595,6 @@ }, "description": "1590a, L\u00fcftungszentrale Nr. 5", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.590A", "maps": [], @@ -463443,8 +436627,6 @@ }, "description": "1590b, B\u00fcro mit exp.Arb.Pl.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.590B", "maps": [], @@ -463477,8 +436659,6 @@ }, "description": "1590c, B\u00fcro mit exp. Arbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.590C", "maps": [], @@ -463511,8 +436691,6 @@ }, "description": "1590d, B\u00fcro mit exp. Arbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.590D", "maps": [], @@ -463545,8 +436723,6 @@ }, "description": "1590e, B\u00fcro mit exp. Arbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.590E", "maps": [], @@ -463579,8 +436755,6 @@ }, "description": "1590f, B\u00fcro mit exp. Arbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.590F", "maps": [], @@ -463613,8 +436787,6 @@ }, "description": "1590g, B\u00fcro mit exp. Arbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.590G", "maps": [], @@ -463647,8 +436819,6 @@ }, "description": "1591C, Balkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.591C", "maps": [], @@ -463681,8 +436851,6 @@ }, "description": "1591E, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.591E", "maps": [], @@ -463715,8 +436883,6 @@ }, "description": "1591F, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.591F", "maps": [], @@ -463749,8 +436915,6 @@ }, "description": "1598A, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.598A", "maps": [], @@ -463783,8 +436947,6 @@ }, "description": "1598B, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.598B", "maps": [], @@ -463817,8 +436979,6 @@ }, "description": "1598c, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.598C", "maps": [], @@ -463851,8 +437011,6 @@ }, "description": "1598D, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.598D", "maps": [], @@ -463885,8 +437043,6 @@ }, "description": "1598e, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.598E", "maps": [], @@ -463919,8 +437075,6 @@ }, "description": "1598f, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.598F", "maps": [], @@ -463953,8 +437107,6 @@ }, "description": "1598g, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.598G", "maps": [], @@ -463987,8 +437139,6 @@ }, "description": "1598H, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.598H", "maps": [], @@ -464021,8 +437171,6 @@ }, "description": "1598I, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.598I", "maps": [], @@ -464055,8 +437203,6 @@ }, "description": "1598J, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.598J", "maps": [], @@ -464089,8 +437235,6 @@ }, "description": "1598k, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.598K", "maps": [], @@ -464123,8 +437267,6 @@ }, "description": "1598l, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.598L", "maps": [], @@ -464157,8 +437299,6 @@ }, "description": "1598m, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.598M", "maps": [], @@ -464191,8 +437331,6 @@ }, "description": "1598N, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.598N", "maps": [], @@ -464225,8 +437363,6 @@ }, "description": "1598O, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.598O", "maps": [], @@ -464259,8 +437395,6 @@ }, "description": "1598p, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.598P", "maps": [], @@ -464293,8 +437427,6 @@ }, "description": "1598q, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.598Q", "maps": [], @@ -464327,8 +437459,6 @@ }, "description": "1598R, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.598R", "maps": [], @@ -464361,8 +437491,6 @@ }, "description": "598s, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.598S", "maps": [], @@ -464395,8 +437523,6 @@ }, "description": "1598t, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.598T", "maps": [], @@ -464429,8 +437555,6 @@ }, "description": "1599A, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.599A", "maps": [], @@ -464463,8 +437587,6 @@ }, "description": "1599B, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.599B", "maps": [], @@ -464497,8 +437619,6 @@ }, "description": "1599C, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.599C", "maps": [], @@ -464531,8 +437651,6 @@ }, "description": "1599D, Messtechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.599D", "maps": [], @@ -464565,8 +437683,6 @@ }, "description": "1599E, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.599E", "maps": [], @@ -464599,8 +437715,6 @@ }, "description": "1599F, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.599F", "maps": [], @@ -464633,8 +437747,6 @@ }, "description": "1599G, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.599G", "maps": [], @@ -464667,8 +437779,6 @@ }, "description": "1599I, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.599I", "maps": [], @@ -464701,8 +437811,6 @@ }, "description": "1599Q, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.599J", "maps": [], @@ -464735,8 +437843,6 @@ }, "description": "1599K, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.599K", "maps": [], @@ -464769,8 +437875,6 @@ }, "description": "1599L, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.599L", "maps": [], @@ -464803,8 +437907,6 @@ }, "description": "1599M, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.599M", "maps": [], @@ -464837,8 +437939,6 @@ }, "description": "1599N, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.599N", "maps": [], @@ -464871,8 +437971,6 @@ }, "description": "1599O, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.599O", "maps": [], @@ -464905,8 +438003,6 @@ }, "description": "1599R, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5505.01.599R", "maps": [], @@ -464939,8 +438035,6 @@ }, "description": "2501, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.501", "maps": [], @@ -464973,8 +438067,6 @@ }, "description": "2501a, Vorbereitung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.501A", "maps": [], @@ -465007,8 +438099,6 @@ }, "description": "1502, Gast", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.502", "maps": [], @@ -465041,8 +438131,6 @@ }, "description": "2503M, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.503M", "maps": [], @@ -465075,8 +438163,6 @@ }, "description": "2503N, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.503N", "maps": [], @@ -465109,8 +438195,6 @@ }, "description": "2503P, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.503P", "maps": [], @@ -465143,8 +438227,6 @@ }, "description": "2503Q, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.503Q", "maps": [], @@ -465177,8 +438259,6 @@ }, "description": "2504, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.504", "maps": [], @@ -465211,8 +438291,6 @@ }, "description": "2505a, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.505A", "maps": [], @@ -465245,8 +438323,6 @@ }, "description": "2505b, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.505B", "maps": [], @@ -465279,8 +438355,6 @@ }, "description": "2505m, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.505M", "maps": [], @@ -465313,8 +438387,6 @@ }, "description": "2506, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.506", "maps": [], @@ -465347,8 +438419,6 @@ }, "description": "2507, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.507", "maps": [], @@ -465381,8 +438451,6 @@ }, "description": "2507M, EDV-Maschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.507M", "maps": [], @@ -465415,8 +438483,6 @@ }, "description": "2507n, EDV-Arbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.507N", "maps": [], @@ -465449,8 +438515,6 @@ }, "description": "2508m, Archiv / Modelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.508M", "maps": [], @@ -465483,8 +438547,6 @@ }, "description": "2509, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.509", "maps": [], @@ -465517,8 +438579,6 @@ }, "description": "2509m, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.509M", "maps": [], @@ -465551,8 +438611,6 @@ }, "description": "2511, B\u00fcro / Dipl.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.511", "maps": [], @@ -465585,8 +438643,6 @@ }, "description": "2512, B\u00fcro / Dipl.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.512", "maps": [], @@ -465619,8 +438675,6 @@ }, "description": "2513, B\u00fcro / Dipl.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.513", "maps": [], @@ -465653,8 +438707,6 @@ }, "description": "2514, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.514", "maps": [], @@ -465687,8 +438739,6 @@ }, "description": "2515, Handbibliothek / Archiv", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.515", "maps": [], @@ -465721,8 +438771,6 @@ }, "description": "2516, Lager EDV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.516", "maps": [], @@ -465755,8 +438803,6 @@ }, "description": "2526, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.526", "maps": [], @@ -465789,8 +438835,6 @@ }, "description": "2527, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.527", "maps": [], @@ -465823,8 +438867,6 @@ }, "description": "2528, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.528", "maps": [], @@ -465857,8 +438899,6 @@ }, "description": "2528M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.528M", "maps": [], @@ -465891,8 +438931,6 @@ }, "description": "2528N, Vorraum zu 2528m", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.528N", "maps": [], @@ -465925,8 +438963,6 @@ }, "description": "2529, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.529", "maps": [], @@ -465959,8 +438995,6 @@ }, "description": "2529M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.529M", "maps": [], @@ -465993,8 +439027,6 @@ }, "description": "2530, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.530", "maps": [], @@ -466027,8 +439059,6 @@ }, "description": "2531, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.531", "maps": [], @@ -466061,8 +439091,6 @@ }, "description": "2532, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.532", "maps": [], @@ -466095,8 +439123,6 @@ }, "description": "2533, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.533", "maps": [], @@ -466129,8 +439155,6 @@ }, "description": "2534, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.534", "maps": [], @@ -466163,8 +439187,6 @@ }, "description": "2535, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.535", "maps": [], @@ -466197,8 +439219,6 @@ }, "description": "2535M, Elektro-Unterverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.535M", "maps": [], @@ -466231,8 +439251,6 @@ }, "description": "2536, Besprechung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.536", "maps": [], @@ -466265,8 +439283,6 @@ }, "description": "2537, Kolloquium", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.537", "maps": [], @@ -466299,8 +439315,6 @@ }, "description": "2550, Zeichen\u00fcbung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.550", "maps": [], @@ -466333,8 +439347,6 @@ }, "description": "2550a, Kolloquium", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.550A", "maps": [], @@ -466367,8 +439379,6 @@ }, "description": "2560, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.560", "maps": [], @@ -466401,8 +439411,6 @@ }, "description": "2598a, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.598A", "maps": [], @@ -466435,8 +439443,6 @@ }, "description": "2598b, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.598B", "maps": [], @@ -466469,8 +439475,6 @@ }, "description": "2598c, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.598C", "maps": [], @@ -466503,8 +439507,6 @@ }, "description": "2598d, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.598D", "maps": [], @@ -466537,8 +439539,6 @@ }, "description": "2598e, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.598E", "maps": [], @@ -466571,8 +439571,6 @@ }, "description": "2598f, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.598F", "maps": [], @@ -466605,8 +439603,6 @@ }, "description": "2598g, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.598G", "maps": [], @@ -466639,8 +439635,6 @@ }, "description": "2598h, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.598H", "maps": [], @@ -466673,8 +439667,6 @@ }, "description": "2598i, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.598I", "maps": [], @@ -466707,8 +439699,6 @@ }, "description": "2598J, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.598J", "maps": [], @@ -466741,8 +439731,6 @@ }, "description": "2598k, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.598K", "maps": [], @@ -466775,8 +439763,6 @@ }, "description": "2598l, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.598L", "maps": [], @@ -466809,8 +439795,6 @@ }, "description": "2598M, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.598M", "maps": [], @@ -466843,8 +439827,6 @@ }, "description": "2598n, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.598N", "maps": [], @@ -466877,8 +439859,6 @@ }, "description": "2598o, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.598O", "maps": [], @@ -466911,8 +439891,6 @@ }, "description": "2598p, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.598P", "maps": [], @@ -466945,8 +439923,6 @@ }, "description": "2599A, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.599A", "maps": [], @@ -466979,8 +439955,6 @@ }, "description": "2599B, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.599B", "maps": [], @@ -467013,8 +439987,6 @@ }, "description": "2599C, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.599C", "maps": [], @@ -467047,8 +440019,6 @@ }, "description": "2599E, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.599E", "maps": [], @@ -467081,8 +440051,6 @@ }, "description": "2599F, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.599F", "maps": [], @@ -467115,8 +440083,6 @@ }, "description": "2599G, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.599G", "maps": [], @@ -467149,8 +440115,6 @@ }, "description": "2599H, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.599H", "maps": [], @@ -467183,8 +440147,6 @@ }, "description": "2599I, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.599I", "maps": [], @@ -467217,8 +440179,6 @@ }, "description": "2599J, Verbindungsgang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.599J", "maps": [], @@ -467251,8 +440211,6 @@ }, "description": "2599M, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.599M", "maps": [], @@ -467285,8 +440243,6 @@ }, "description": "2599N, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.599N", "maps": [], @@ -467319,8 +440275,6 @@ }, "description": "2599o, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.599O", "maps": [], @@ -467353,8 +440307,6 @@ }, "description": "2599Q, Br\u00fccke", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.599Q", "maps": [], @@ -467387,8 +440339,6 @@ }, "description": "2599R, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5505.02.599R", "maps": [], @@ -467421,8 +440371,6 @@ }, "description": "3501, Steuerung L\u00fcftung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.501", "maps": [], @@ -467455,8 +440403,6 @@ }, "description": "3502, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.502", "maps": [], @@ -467489,8 +440435,6 @@ }, "description": "3503, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.503", "maps": [], @@ -467523,8 +440467,6 @@ }, "description": "3503M, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.503M", "maps": [], @@ -467557,8 +440499,6 @@ }, "description": "3503N, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.503N", "maps": [], @@ -467591,8 +440531,6 @@ }, "description": "3503P, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.503P", "maps": [], @@ -467625,8 +440563,6 @@ }, "description": "3503Q, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.503Q", "maps": [], @@ -467659,8 +440595,6 @@ }, "description": "3504, Doktoranden", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.504", "maps": [], @@ -467693,8 +440627,6 @@ }, "description": "3505, Doktoranden", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.505", "maps": [], @@ -467727,8 +440659,6 @@ }, "description": "3505m, Aufenthaltsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.505M", "maps": [], @@ -467761,8 +440691,6 @@ }, "description": "3506, Bibliothek / Besprechung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.506", "maps": [], @@ -467795,8 +440723,6 @@ }, "description": "3507, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.507", "maps": [], @@ -467829,8 +440755,6 @@ }, "description": "3507m, Rechnerraum HiWi", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.507M", "maps": [], @@ -467863,8 +440787,6 @@ }, "description": "3507n, Druckger\u00e4teraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.507N", "maps": [], @@ -467897,8 +440819,6 @@ }, "description": "3508, Doktoranden", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.508", "maps": [], @@ -467931,8 +440851,6 @@ }, "description": "3508m, Aufenthaltsraum m. Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.508M", "maps": [], @@ -467965,8 +440883,6 @@ }, "description": "3509, Doktoranden", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.509", "maps": [], @@ -467999,8 +440915,6 @@ }, "description": "3510, Doktoranden", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.510", "maps": [], @@ -468033,8 +440947,6 @@ }, "description": "3511, Doktoranden", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.511", "maps": [], @@ -468067,8 +440979,6 @@ }, "description": "3512, Elektroniklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.512", "maps": [], @@ -468101,8 +441011,6 @@ }, "description": "3513, Elektroniklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.513", "maps": [], @@ -468135,8 +441043,6 @@ }, "description": "3525, Dozentenzimmer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.525", "maps": [], @@ -468169,8 +441075,6 @@ }, "description": "3527, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.527", "maps": [], @@ -468203,8 +441107,6 @@ }, "description": "3528, Doktoranden", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.528", "maps": [], @@ -468237,8 +441139,6 @@ }, "description": "3528M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.528M", "maps": [], @@ -468271,8 +441171,6 @@ }, "description": "3528N, Nebenraum zu 3528m", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.528N", "maps": [], @@ -468305,8 +441203,6 @@ }, "description": "3529, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.529", "maps": [], @@ -468339,8 +441235,6 @@ }, "description": "3529M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.529M", "maps": [], @@ -468373,8 +441267,6 @@ }, "description": "3530, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.530", "maps": [], @@ -468407,8 +441299,6 @@ }, "description": "3531, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.531", "maps": [], @@ -468441,8 +441331,6 @@ }, "description": "3531m, Archiv / Kopierer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.531M", "maps": [], @@ -468475,8 +441363,6 @@ }, "description": "3532, Studentenrechnerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.532", "maps": [], @@ -468509,8 +441395,6 @@ }, "description": "3532M, Elektro-Unterverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.532M", "maps": [], @@ -468543,8 +441427,6 @@ }, "description": "3533, Projektraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.533", "maps": [], @@ -468577,8 +441459,6 @@ }, "description": "3534, Wechselrichterraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.534", "maps": [], @@ -468611,8 +441491,6 @@ }, "description": "3535, Galerie/Stud. Arbeitspl\u00e4tze", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.535", "maps": [], @@ -468645,8 +441523,6 @@ }, "description": "3598a, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.598A", "maps": [], @@ -468679,8 +441555,6 @@ }, "description": "3598b, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.598B", "maps": [], @@ -468713,8 +441587,6 @@ }, "description": "3598c, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.598C", "maps": [], @@ -468747,8 +441619,6 @@ }, "description": "3598d, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.598D", "maps": [], @@ -468781,8 +441651,6 @@ }, "description": "3598e, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.598E", "maps": [], @@ -468815,8 +441683,6 @@ }, "description": "3598f, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.598F", "maps": [], @@ -468849,8 +441715,6 @@ }, "description": "3598G, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.598G", "maps": [], @@ -468883,8 +441747,6 @@ }, "description": "3598h, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.598H", "maps": [], @@ -468917,8 +441779,6 @@ }, "description": "3598i, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.598I", "maps": [], @@ -468951,8 +441811,6 @@ }, "description": "3598j, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.598J", "maps": [], @@ -468985,8 +441843,6 @@ }, "description": "3598k, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.598K", "maps": [], @@ -469019,8 +441875,6 @@ }, "description": "3598L, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.598L", "maps": [], @@ -469053,8 +441907,6 @@ }, "description": "3598m, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.598M", "maps": [], @@ -469087,8 +441939,6 @@ }, "description": "3598n, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.598N", "maps": [], @@ -469121,8 +441971,6 @@ }, "description": "3598o, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.598O", "maps": [], @@ -469155,8 +442003,6 @@ }, "description": "3599A, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.599A", "maps": [], @@ -469189,8 +442035,6 @@ }, "description": "3599B, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.599B", "maps": [], @@ -469223,8 +442067,6 @@ }, "description": "3599C, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.599C", "maps": [], @@ -469257,8 +442099,6 @@ }, "description": "3599D, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.599D", "maps": [], @@ -469291,8 +442131,6 @@ }, "description": "3599E, Install.schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.599E", "maps": [], @@ -469325,8 +442163,6 @@ }, "description": "3599F, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.599F", "maps": [], @@ -469359,8 +442195,6 @@ }, "description": "3599G, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.599G", "maps": [], @@ -469393,8 +442227,6 @@ }, "description": "3599H, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.599H", "maps": [], @@ -469427,8 +442259,6 @@ }, "description": "3599I, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.599I", "maps": [], @@ -469461,8 +442291,6 @@ }, "description": "3599K, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.599K", "maps": [], @@ -469495,8 +442323,6 @@ }, "description": "3599L, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.599L", "maps": [], @@ -469529,8 +442355,6 @@ }, "description": "3599N, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.599N", "maps": [], @@ -469563,8 +442387,6 @@ }, "description": "3599Q, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5505.03.599Q", "maps": [], @@ -469597,8 +442419,6 @@ }, "description": "0501, Gro\u00dfraumb\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.501", "maps": [], @@ -469631,8 +442451,6 @@ }, "description": "0501A, Laden", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.501A", "maps": [], @@ -469665,8 +442483,6 @@ }, "description": "0502, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.502", "maps": [], @@ -469699,8 +442515,6 @@ }, "description": "0503, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.503", "maps": [], @@ -469733,8 +442547,6 @@ }, "description": "0503M, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.503M", "maps": [], @@ -469767,8 +442579,6 @@ }, "description": "0503N, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.503N", "maps": [], @@ -469801,8 +442611,6 @@ }, "description": "0503P, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.503P", "maps": [], @@ -469835,8 +442643,6 @@ }, "description": "0503Q, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.503Q", "maps": [], @@ -469869,8 +442675,6 @@ }, "description": "0504, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.504", "maps": [], @@ -469903,8 +442707,6 @@ }, "description": "0505, Gro\u00dfraumb\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.505A", "maps": [], @@ -469937,8 +442739,6 @@ }, "description": "0505m, Allraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.505M", "maps": [], @@ -469971,8 +442771,6 @@ }, "description": "0506, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.506", "maps": [], @@ -470005,8 +442803,6 @@ }, "description": "0506m, Rechnerraum-Studenten", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.506A", "maps": [], @@ -470039,8 +442835,6 @@ }, "description": "0506M, Studentenarbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.506M", "maps": [], @@ -470073,8 +442867,6 @@ }, "description": "0506N, Studentenarbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.506N", "maps": [], @@ -470107,8 +442899,6 @@ }, "description": "0507, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.507", "maps": [], @@ -470141,8 +442931,6 @@ }, "description": "0508, Kopierraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.508", "maps": [], @@ -470175,8 +442963,6 @@ }, "description": "0509, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.509", "maps": [], @@ -470209,8 +442995,6 @@ }, "description": "0509m, Aufenthaltsraum m. Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.509M", "maps": [], @@ -470243,8 +443027,6 @@ }, "description": "0510, Gro\u00dfraumb\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.510", "maps": [], @@ -470277,8 +443059,6 @@ }, "description": "0511, M\u00fcllraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.511", "maps": [], @@ -470311,8 +443091,6 @@ }, "description": "0525, Besprechung 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.525", "maps": [], @@ -470345,8 +443123,6 @@ }, "description": "0525M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.525M", "maps": [], @@ -470379,8 +443155,6 @@ }, "description": "0525N, Nebenraum von 0525m", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.525N", "maps": [], @@ -470413,8 +443187,6 @@ }, "description": "0525Z, Fahrzeugverkehrsfl\u00e4che", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.525Z", "maps": [], @@ -470447,8 +443219,6 @@ }, "description": "0526, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.526", "maps": [], @@ -470481,8 +443251,6 @@ }, "description": "0526M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.526M", "maps": [], @@ -470515,8 +443283,6 @@ }, "description": "0527, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.527", "maps": [], @@ -470549,8 +443315,6 @@ }, "description": "0528, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.528", "maps": [], @@ -470583,8 +443347,6 @@ }, "description": "0529A, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.529A", "maps": [], @@ -470617,8 +443379,6 @@ }, "description": "0530, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.530", "maps": [], @@ -470651,8 +443411,6 @@ }, "description": "0531, B\u00fcro m. Registratur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.531", "maps": [], @@ -470685,8 +443443,6 @@ }, "description": "0531M, Elektro-Unterverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.531M", "maps": [], @@ -470719,8 +443475,6 @@ }, "description": "0532, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.532", "maps": [], @@ -470753,8 +443507,6 @@ }, "description": "0533, Bibliothek", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.533A", "maps": [], @@ -470787,8 +443539,6 @@ }, "description": "0533B, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.533B", "maps": [], @@ -470821,8 +443571,6 @@ }, "description": "0550, CAD-Pool", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.550", "maps": [], @@ -470855,8 +443603,6 @@ }, "description": "0550a, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.550A", "maps": [], @@ -470889,8 +443635,6 @@ }, "description": "0560, Vorraum / Durchgang zu 560b", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.560", "maps": [], @@ -470923,8 +443667,6 @@ }, "description": "0560a, K\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.560A", "maps": [], @@ -470957,8 +443699,6 @@ }, "description": "0560b, Personal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.560B", "maps": [], @@ -470991,8 +443731,6 @@ }, "description": "0560p, Trafo", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.560C", "maps": [], @@ -471025,8 +443763,6 @@ }, "description": "0560m, Trafo", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.560M", "maps": [], @@ -471059,8 +443795,6 @@ }, "description": "0560n, Trafo", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.560N", "maps": [], @@ -471093,8 +443827,6 @@ }, "description": "0560O, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.560O", "maps": [], @@ -471127,8 +443859,6 @@ }, "description": "0560Q, Fernmelderaum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.560Q", "maps": [], @@ -471161,8 +443891,6 @@ }, "description": "0560r, Umkleide / Dusche H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.560R", "maps": [], @@ -471195,8 +443923,6 @@ }, "description": "0560S, Nebenraum zu 0560s", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.560S", "maps": [], @@ -471229,8 +443955,6 @@ }, "description": "0560t, Umkleide / Dusche H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.560T", "maps": [], @@ -471263,8 +443987,6 @@ }, "description": "0560u, Dusche Nebenraum zu 560t", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.560U", "maps": [], @@ -471297,8 +444019,6 @@ }, "description": "0561, Montagehalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.561", "maps": [], @@ -471331,8 +444051,6 @@ }, "description": "0561m, Zahnradschleifmaschine", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.561M", "maps": [], @@ -471365,8 +444083,6 @@ }, "description": "0561n, Messflur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.561N", "maps": [], @@ -471399,8 +444115,6 @@ }, "description": "0562, Grobmechanikwerkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.562", "maps": [], @@ -471433,8 +444147,6 @@ }, "description": "0562a, Messmittel", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.562A", "maps": [], @@ -471467,8 +444179,6 @@ }, "description": "0562b, Materiallager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.562B", "maps": [], @@ -471501,8 +444211,6 @@ }, "description": "0562m, Pr\u00fcfstand", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.562M", "maps": [], @@ -471535,8 +444243,6 @@ }, "description": "0562n, Zahnradlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.562N", "maps": [], @@ -471569,8 +444275,6 @@ }, "description": "0563, Schleifraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.563", "maps": [], @@ -471603,8 +444307,6 @@ }, "description": "0563m, \u00d6llager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.563M", "maps": [], @@ -471637,8 +444339,6 @@ }, "description": "0564, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.564", "maps": [], @@ -471671,8 +444371,6 @@ }, "description": "0565, K\u00fchlwasserbeh\u00e4lter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.565", "maps": [], @@ -471705,8 +444403,6 @@ }, "description": "0565m, M\u00fcllraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.565M", "maps": [], @@ -471739,8 +444435,6 @@ }, "description": "0565n, Fotolabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.565N", "maps": [], @@ -471773,8 +444467,6 @@ }, "description": "0565O, Aufenthaltsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.565O", "maps": [], @@ -471807,8 +444499,6 @@ }, "description": "0565P, Meisterb\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.565P", "maps": [], @@ -471841,8 +444531,6 @@ }, "description": "0590, Versuchshalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.590", "maps": [], @@ -471875,8 +444563,6 @@ }, "description": "0590A, Anlieferung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.590A", "maps": [], @@ -471909,8 +444595,6 @@ }, "description": "0590b, KFZ-Praktikum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.590B", "maps": [], @@ -471943,8 +444627,6 @@ }, "description": "0590C, Schleuse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.590C", "maps": [], @@ -471977,8 +444659,6 @@ }, "description": "0590d, Spanende Fertigung + Montage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.590D", "maps": [], @@ -472011,8 +444691,6 @@ }, "description": "0590e, Werkstattpersonal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.590E", "maps": [], @@ -472045,8 +444723,6 @@ }, "description": "0590f, Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.590F", "maps": [], @@ -472079,8 +444755,6 @@ }, "description": "0590g, Schwei\u00dferei", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.590G", "maps": [], @@ -472113,8 +444787,6 @@ }, "description": "0590H, Maschinenhalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.590H", "maps": [], @@ -472147,8 +444819,6 @@ }, "description": "0590i, Grobmechanikwerkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.590I", "maps": [], @@ -472181,8 +444851,6 @@ }, "description": "0590J, Verkehrsfl\u00e4che", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.590J", "maps": [], @@ -472215,8 +444883,6 @@ }, "description": "0590P, KFZ-Praktikum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.590P", "maps": [], @@ -472249,8 +444915,6 @@ }, "description": "0590j, Durchfahrt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.590R", "maps": [], @@ -472283,8 +444947,6 @@ }, "description": "0591A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.591A", "maps": [], @@ -472317,8 +444979,6 @@ }, "description": "0591B, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.591B", "maps": [], @@ -472351,8 +445011,6 @@ }, "description": "0591C, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.591C", "maps": [], @@ -472385,8 +445043,6 @@ }, "description": "0591D, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.591D", "maps": [], @@ -472419,8 +445075,6 @@ }, "description": "0598a, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.598A", "maps": [], @@ -472453,8 +445107,6 @@ }, "description": "0598B, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.598B", "maps": [], @@ -472487,8 +445139,6 @@ }, "description": "0598C, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.598C", "maps": [], @@ -472521,8 +445171,6 @@ }, "description": "0598d, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.598D", "maps": [], @@ -472555,8 +445203,6 @@ }, "description": "0598e, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.598E", "maps": [], @@ -472589,8 +445235,6 @@ }, "description": "0598f, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.598F", "maps": [], @@ -472623,8 +445267,6 @@ }, "description": "0598g, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.598G", "maps": [], @@ -472657,8 +445299,6 @@ }, "description": "0598h, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.598H", "maps": [], @@ -472691,8 +445331,6 @@ }, "description": "0598i, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.598I", "maps": [], @@ -472725,8 +445363,6 @@ }, "description": "0598j, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.598J", "maps": [], @@ -472759,8 +445395,6 @@ }, "description": "0598K, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.598K", "maps": [], @@ -472793,8 +445427,6 @@ }, "description": "0598l, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.598L", "maps": [], @@ -472827,8 +445459,6 @@ }, "description": "0598m, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.598M", "maps": [], @@ -472861,8 +445491,6 @@ }, "description": "0598n, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.598N", "maps": [], @@ -472895,8 +445523,6 @@ }, "description": "0598O, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.598O", "maps": [], @@ -472929,8 +445555,6 @@ }, "description": "0598S, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.598S", "maps": [], @@ -472963,8 +445587,6 @@ }, "description": "0598t, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.598T", "maps": [], @@ -472997,8 +445619,6 @@ }, "description": "0599A, MW 5 Innenhof", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.599A", "maps": [], @@ -473031,8 +445651,6 @@ }, "description": "0599B, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.599B", "maps": [], @@ -473065,8 +445683,6 @@ }, "description": "0599D, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.599D", "maps": [], @@ -473099,8 +445715,6 @@ }, "description": "0599E, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.599E", "maps": [], @@ -473133,8 +445747,6 @@ }, "description": "0599F, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.599F", "maps": [], @@ -473167,8 +445779,6 @@ }, "description": "0599G, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.599G", "maps": [], @@ -473201,8 +445811,6 @@ }, "description": "0599I, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.599I", "maps": [], @@ -473235,8 +445843,6 @@ }, "description": "0599K, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.599K", "maps": [], @@ -473269,8 +445875,6 @@ }, "description": "0599L, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.599L", "maps": [], @@ -473303,8 +445907,6 @@ }, "description": "0599M, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.599M", "maps": [], @@ -473337,8 +445939,6 @@ }, "description": "0599N, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.599N", "maps": [], @@ -473371,8 +445971,6 @@ }, "description": "0599o, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.599O", "maps": [], @@ -473405,8 +446003,6 @@ }, "description": "0599P, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.599P", "maps": [], @@ -473439,8 +446035,6 @@ }, "description": "0599S, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.599S", "maps": [], @@ -473473,8 +446067,6 @@ }, "description": "0599U, Wendeltreppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.599U", "maps": [], @@ -473507,8 +446099,6 @@ }, "description": "0599v, Freiluftexperimentierfl\u00e4che", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.599V", "maps": [], @@ -473541,8 +446131,6 @@ }, "description": "0599W, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.599W", "maps": [], @@ -473575,8 +446163,6 @@ }, "description": "0599X, Freiluftexperimentierfl\u00e4che", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.599X", "maps": [], @@ -473609,8 +446195,6 @@ }, "description": "0599Z, Freiluftexperimentierfl\u00e4che", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5505.EG.599Z", "maps": [], @@ -473643,8 +446227,6 @@ }, "description": "U501, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5505.U1.501", "maps": [], @@ -473677,8 +446259,6 @@ }, "description": "U501M, FM-Zentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5505.U1.501M", "maps": [], @@ -473711,8 +446291,6 @@ }, "description": "U501N, FM-Zentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5505.U1.501N", "maps": [], @@ -473745,8 +446323,6 @@ }, "description": "U502, Installationskeller", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5505.U1.502", "maps": [], @@ -473779,8 +446355,6 @@ }, "description": "U502A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5505.U1.502A", "maps": [], @@ -473813,8 +446387,6 @@ }, "description": "U502B, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5505.U1.502B", "maps": [], @@ -473847,8 +446419,6 @@ }, "description": "U503M, M\u00f6bellager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5505.U1.503M", "maps": [], @@ -473881,8 +446451,6 @@ }, "description": "U530N, Maschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5505.U1.503N", "maps": [], @@ -473915,8 +446483,6 @@ }, "description": "U503o, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5505.U1.503O", "maps": [], @@ -473949,8 +446515,6 @@ }, "description": "U525, Netz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5505.U1.525", "maps": [], @@ -473983,8 +446547,6 @@ }, "description": "U525M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5505.U1.525M", "maps": [], @@ -474017,8 +446579,6 @@ }, "description": "U526, SV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5505.U1.526", "maps": [], @@ -474051,8 +446611,6 @@ }, "description": "U526M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5505.U1.526M", "maps": [], @@ -474085,8 +446643,6 @@ }, "description": "U527, FM", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5505.U1.527", "maps": [], @@ -474119,8 +446675,6 @@ }, "description": "U528, Arbeitspl\u00e4tze", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5505.U1.528", "maps": [], @@ -474153,8 +446707,6 @@ }, "description": "U529, Reinigungsdienst", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5505.U1.529", "maps": [], @@ -474187,8 +446739,6 @@ }, "description": "U530, Archiv", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5505.U1.530", "maps": [], @@ -474221,8 +446771,6 @@ }, "description": "U530M, Elektro-Unterverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5505.U1.530M", "maps": [], @@ -474255,8 +446803,6 @@ }, "description": "U531, Dokumentenarchiv", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5505.U1.531", "maps": [], @@ -474289,8 +446835,6 @@ }, "description": "U531M, FM-Zentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5505.U1.531M", "maps": [], @@ -474323,8 +446867,6 @@ }, "description": "U531n, LRZ-Verteilerknoten", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5505.U1.531N", "maps": [], @@ -474357,8 +446899,6 @@ }, "description": "U550, CAD-Pool", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5505.U1.550", "maps": [], @@ -474391,8 +446931,6 @@ }, "description": "U550a, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5505.U1.550A", "maps": [], @@ -474425,8 +446963,6 @@ }, "description": "U590a, Rollenpr\u00fcfstand", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5505.U1.590A", "maps": [], @@ -474459,8 +446995,6 @@ }, "description": "U590b, Maschinenstellfl\u00e4che", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5505.U1.590B", "maps": [], @@ -474493,8 +447027,6 @@ }, "description": "U590c, Lager m. Arbeitspl\u00e4tzen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5505.U1.590C", "maps": [], @@ -474527,8 +447059,6 @@ }, "description": "U598B, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5505.U1.598B", "maps": [], @@ -474561,8 +447091,6 @@ }, "description": "U598C, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5505.U1.598C", "maps": [], @@ -474595,8 +447123,6 @@ }, "description": "U598D, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5505.U1.598D", "maps": [], @@ -474629,8 +447155,6 @@ }, "description": "U598e, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5505.U1.598E", "maps": [], @@ -474663,8 +447187,6 @@ }, "description": "U598f, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5505.U1.598F", "maps": [], @@ -474697,8 +447219,6 @@ }, "description": "U598g, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5505.U1.598G", "maps": [], @@ -474731,8 +447251,6 @@ }, "description": "U598h, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5505.U1.598H", "maps": [], @@ -474765,8 +447283,6 @@ }, "description": "U598K, Aufzugs- und F\u00f6rdermaschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5505.U1.598K", "maps": [], @@ -474799,8 +447315,6 @@ }, "description": "U598L, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5505.U1.598L", "maps": [], @@ -474833,8 +447347,6 @@ }, "description": "U598M, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5505.U1.598M", "maps": [], @@ -474867,8 +447379,6 @@ }, "description": "U598N, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5505.U1.598N", "maps": [], @@ -474901,8 +447411,6 @@ }, "description": "U598O, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5505.U1.598O", "maps": [], @@ -474935,8 +447443,6 @@ }, "description": "U598P, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5505.U1.598P", "maps": [], @@ -474969,8 +447475,6 @@ }, "description": "U599A, Installationskeller", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5505.U1.599A", "maps": [], @@ -475003,8 +447507,6 @@ }, "description": "U599B, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5505.U1.599B", "maps": [], @@ -475037,8 +447539,6 @@ }, "description": "U599D, Aufzugs- und F\u00f6rdermaschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5505.U1.599D", "maps": [], @@ -475071,8 +447571,6 @@ }, "description": "U599E, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5505.U1.599E", "maps": [], @@ -475105,8 +447603,6 @@ }, "description": "U599F, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5505.U1.599F", "maps": [], @@ -475139,8 +447635,6 @@ }, "description": "U599G, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5505.U1.599G", "maps": [], @@ -475173,8 +447667,6 @@ }, "description": "U599H, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5505.U1.599H", "maps": [], @@ -475207,8 +447699,6 @@ }, "description": "U599I, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5505.U1.599I", "maps": [], @@ -475241,8 +447731,6 @@ }, "description": "U599J, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5505.U1.599J", "maps": [], @@ -475275,8 +447763,6 @@ }, "description": "U599K, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5505.U1.599K", "maps": [], @@ -475309,8 +447795,6 @@ }, "description": "U599L, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5505.U1.599L", "maps": [], @@ -475343,8 +447827,6 @@ }, "description": "U599M, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5505.U1.599M", "maps": [], @@ -475377,8 +447859,6 @@ }, "description": "U599O, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5505.U1.599O", "maps": [], @@ -475411,8 +447891,6 @@ }, "description": "U599R, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5505.U1.599R", "maps": [], @@ -475445,8 +447923,6 @@ }, "description": "U599S, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5505.U1.599S", "maps": [], @@ -475479,8 +447955,6 @@ }, "description": "1601, Studenten-Arbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.601", "maps": [], @@ -475513,8 +447987,6 @@ }, "description": "1602, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.602", "maps": [], @@ -475547,8 +448019,6 @@ }, "description": "1602m, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.602M", "maps": [], @@ -475581,8 +448051,6 @@ }, "description": "1603, Wissenschaftliche Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.603", "maps": [], @@ -475615,8 +448083,6 @@ }, "description": "1603M, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.603M", "maps": [], @@ -475649,8 +448115,6 @@ }, "description": "1603N, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.603N", "maps": [], @@ -475683,8 +448147,6 @@ }, "description": "1603P, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.603P", "maps": [], @@ -475717,8 +448179,6 @@ }, "description": "1603Q, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.603Q", "maps": [], @@ -475751,8 +448211,6 @@ }, "description": "1604, Wissenschaftliche Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.604", "maps": [], @@ -475785,8 +448243,6 @@ }, "description": "1605, Stipendiaten", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.605", "maps": [], @@ -475819,8 +448275,6 @@ }, "description": "1606, Wissenschaftliche Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.606", "maps": [], @@ -475853,8 +448307,6 @@ }, "description": "1607, WARR Studentengruppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.607", "maps": [], @@ -475887,8 +448339,6 @@ }, "description": "1608, Emeriti", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.608", "maps": [], @@ -475921,8 +448371,6 @@ }, "description": "1608m, \u00dcbungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.608M", "maps": [], @@ -475955,8 +448403,6 @@ }, "description": "1609, Studentenlabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.609", "maps": [], @@ -475989,8 +448435,6 @@ }, "description": "1609m, \u00dcbungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.609M", "maps": [], @@ -476023,8 +448467,6 @@ }, "description": "1610, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.610", "maps": [], @@ -476057,8 +448499,6 @@ }, "description": "1610m, HVA Labor, Project Room CopKa", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.610M", "maps": [], @@ -476091,8 +448531,6 @@ }, "description": "1611, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.611", "maps": [], @@ -476125,8 +448563,6 @@ }, "description": "1612, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.612", "maps": [], @@ -476159,8 +448595,6 @@ }, "description": "1612m, Berichtearchiv", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.612M", "maps": [], @@ -476193,8 +448627,6 @@ }, "description": "1613, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.613", "maps": [], @@ -476227,8 +448659,6 @@ }, "description": "1614, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.614", "maps": [], @@ -476261,8 +448691,6 @@ }, "description": "1614m, Aufenthaltsraum m. Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.614M", "maps": [], @@ -476295,8 +448723,6 @@ }, "description": "1615, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.615", "maps": [], @@ -476329,8 +448755,6 @@ }, "description": "1616, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.616", "maps": [], @@ -476363,8 +448787,6 @@ }, "description": "1617, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.617", "maps": [], @@ -476397,8 +448819,6 @@ }, "description": "1618, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.618", "maps": [], @@ -476431,8 +448851,6 @@ }, "description": "1619, Technikraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.619", "maps": [], @@ -476465,8 +448883,6 @@ }, "description": "1620, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.620", "maps": [], @@ -476499,8 +448915,6 @@ }, "description": "1625, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.625", "maps": [], @@ -476533,8 +448947,6 @@ }, "description": "1626, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.626", "maps": [], @@ -476567,8 +448979,6 @@ }, "description": "1627, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.627", "maps": [], @@ -476601,8 +449011,6 @@ }, "description": "1627m, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.627M", "maps": [], @@ -476635,8 +449043,6 @@ }, "description": "1627n, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.627N", "maps": [], @@ -476669,8 +449075,6 @@ }, "description": "1628, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.628", "maps": [], @@ -476703,8 +449107,6 @@ }, "description": "1628M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.628M", "maps": [], @@ -476737,8 +449139,6 @@ }, "description": "1629, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.629", "maps": [], @@ -476771,8 +449171,6 @@ }, "description": "1630, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.630", "maps": [], @@ -476805,8 +449203,6 @@ }, "description": "1630m, Experimente / Forschung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.630M", "maps": [], @@ -476839,8 +449235,6 @@ }, "description": "1631, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.631", "maps": [], @@ -476873,8 +449267,6 @@ }, "description": "1632, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.632", "maps": [], @@ -476907,8 +449299,6 @@ }, "description": "1632m, Aktenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.632M", "maps": [], @@ -476941,8 +449331,6 @@ }, "description": "1633, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.633", "maps": [], @@ -476975,8 +449363,6 @@ }, "description": "1633m, Bibliothek", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.633M", "maps": [], @@ -477009,8 +449395,6 @@ }, "description": "1634, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.634", "maps": [], @@ -477043,8 +449427,6 @@ }, "description": "1635, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.635", "maps": [], @@ -477077,8 +449459,6 @@ }, "description": "1635m, Foyer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.635M", "maps": [], @@ -477111,8 +449491,6 @@ }, "description": "1636, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.636", "maps": [], @@ -477145,8 +449523,6 @@ }, "description": "1636m, Foyer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.636M", "maps": [], @@ -477179,8 +449555,6 @@ }, "description": "1637, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.637", "maps": [], @@ -477213,8 +449587,6 @@ }, "description": "1638, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.638", "maps": [], @@ -477247,8 +449619,6 @@ }, "description": "1639, Vortragsraum/Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.639", "maps": [], @@ -477281,8 +449651,6 @@ }, "description": "1660, Flugsimulator DA-42", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.660", "maps": [], @@ -477315,8 +449683,6 @@ }, "description": "1660L, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.660L", "maps": [], @@ -477349,8 +449715,6 @@ }, "description": "1660M, Technikraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.660M", "maps": [], @@ -477383,8 +449747,6 @@ }, "description": "1660N, Technikraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.660N", "maps": [], @@ -477417,8 +449779,6 @@ }, "description": "1660P, WC-Damen / Dusche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.660P", "maps": [], @@ -477451,8 +449811,6 @@ }, "description": "1660Q, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.660Q", "maps": [], @@ -477485,8 +449843,6 @@ }, "description": "1660R, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.660R", "maps": [], @@ -477519,8 +449875,6 @@ }, "description": "1660S, Umkleide-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.660S", "maps": [], @@ -477553,8 +449907,6 @@ }, "description": "1660T, Dusche Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.660T", "maps": [], @@ -477587,8 +449939,6 @@ }, "description": "1661, Elektroniklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.661", "maps": [], @@ -477621,8 +449971,6 @@ }, "description": "1661a, Elektroniklabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.661A", "maps": [], @@ -477655,8 +450003,6 @@ }, "description": "1661m, Archivraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.661M", "maps": [], @@ -477689,8 +450035,6 @@ }, "description": "1661n, Lehrstuhlwerkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.661N", "maps": [], @@ -477723,8 +450067,6 @@ }, "description": "1661o, Materiallager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.661O", "maps": [], @@ -477757,8 +450099,6 @@ }, "description": "1662, Inkubationslabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.662", "maps": [], @@ -477791,8 +450131,6 @@ }, "description": "1662m, Werkstattlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.662M", "maps": [], @@ -477825,8 +450163,6 @@ }, "description": "1663, Analysenlabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.663", "maps": [], @@ -477859,8 +450195,6 @@ }, "description": "1663m, W\u00e4geraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.663M", "maps": [], @@ -477893,8 +450227,6 @@ }, "description": "1663n, Autoklavenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.663N", "maps": [], @@ -477927,8 +450259,6 @@ }, "description": "1663o, Sp\u00fclk\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.663O", "maps": [], @@ -477961,8 +450291,6 @@ }, "description": "1664, Bioprozesslabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.664", "maps": [], @@ -477995,8 +450323,6 @@ }, "description": "1664m, DNA-Raum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.664M", "maps": [], @@ -478029,8 +450355,6 @@ }, "description": "1664n, Gasflaschenlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.664N", "maps": [], @@ -478063,8 +450387,6 @@ }, "description": "1665, Garderobe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.665", "maps": [], @@ -478097,8 +450419,6 @@ }, "description": "1665a, Aufenthalt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.665A", "maps": [], @@ -478131,8 +450451,6 @@ }, "description": "1670A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.670A", "maps": [], @@ -478165,8 +450483,6 @@ }, "description": "1670B, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.670B", "maps": [], @@ -478199,8 +450515,6 @@ }, "description": "1670C, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.670C", "maps": [], @@ -478233,8 +450547,6 @@ }, "description": "1670E, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.670E", "maps": [], @@ -478267,8 +450579,6 @@ }, "description": "1670F, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.670F", "maps": [], @@ -478301,8 +450611,6 @@ }, "description": "1670G, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.670G", "maps": [], @@ -478335,8 +450643,6 @@ }, "description": "1670H, Balkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.670H", "maps": [], @@ -478369,8 +450675,6 @@ }, "description": "1670I, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.670I", "maps": [], @@ -478403,8 +450707,6 @@ }, "description": "1670J, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.670J", "maps": [], @@ -478437,8 +450739,6 @@ }, "description": "1675, B\u00fcro f\u00fcr Studenten", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.675", "maps": [], @@ -478471,8 +450771,6 @@ }, "description": "1676A, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.676A", "maps": [], @@ -478505,8 +450803,6 @@ }, "description": "1676B, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.676B", "maps": [], @@ -478539,8 +450835,6 @@ }, "description": "1676m, Schlosserei", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.676M", "maps": [], @@ -478573,8 +450867,6 @@ }, "description": "1677, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.677", "maps": [], @@ -478607,8 +450899,6 @@ }, "description": "1678, Elektrowerkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.678", "maps": [], @@ -478641,8 +450931,6 @@ }, "description": "1679, Elektrowerkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.679", "maps": [], @@ -478675,8 +450963,6 @@ }, "description": "1680, Rechnerraum Studenten", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.680", "maps": [], @@ -478709,8 +450995,6 @@ }, "description": "1681, Rechnerraum Studenten", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.681", "maps": [], @@ -478743,8 +451027,6 @@ }, "description": "1690A, L\u00fcftungszentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.690A", "maps": [], @@ -478777,8 +451059,6 @@ }, "description": "1690b, Reaktionstechn. Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.690B", "maps": [], @@ -478811,8 +451091,6 @@ }, "description": "1690c, Bildverarbeitendes Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.690C", "maps": [], @@ -478845,8 +451123,6 @@ }, "description": "1690d, Flammenlabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.690D", "maps": [], @@ -478879,8 +451155,6 @@ }, "description": "1690J, Raumlufttechnische Anlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.690J", "maps": [], @@ -478913,8 +451187,6 @@ }, "description": "1698b, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.698B", "maps": [], @@ -478947,8 +451219,6 @@ }, "description": "1698c, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.698C", "maps": [], @@ -478981,8 +451251,6 @@ }, "description": "1698e, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.698E", "maps": [], @@ -479015,8 +451283,6 @@ }, "description": "1698f, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.698F", "maps": [], @@ -479049,8 +451315,6 @@ }, "description": "198g, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.698G", "maps": [], @@ -479083,8 +451347,6 @@ }, "description": "1698h, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.698H", "maps": [], @@ -479117,8 +451379,6 @@ }, "description": "1698I, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.698I", "maps": [], @@ -479151,8 +451411,6 @@ }, "description": "1698j, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.698J", "maps": [], @@ -479185,8 +451443,6 @@ }, "description": "1698k, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.698K", "maps": [], @@ -479219,8 +451475,6 @@ }, "description": "1698L, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.698L", "maps": [], @@ -479253,8 +451507,6 @@ }, "description": "1698m, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.698M", "maps": [], @@ -479287,8 +451539,6 @@ }, "description": "1698n, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.698N", "maps": [], @@ -479321,8 +451571,6 @@ }, "description": "1698o, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.698O", "maps": [], @@ -479355,8 +451603,6 @@ }, "description": "1698p, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.698P", "maps": [], @@ -479389,8 +451635,6 @@ }, "description": "1698Q, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.698Q", "maps": [], @@ -479423,8 +451667,6 @@ }, "description": "1698S, Absetzfl\u00e4che", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.698S", "maps": [], @@ -479457,8 +451699,6 @@ }, "description": "1698u, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.698U", "maps": [], @@ -479491,8 +451731,6 @@ }, "description": "1699A, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.699A", "maps": [], @@ -479525,8 +451763,6 @@ }, "description": "1699B, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.699B", "maps": [], @@ -479559,8 +451795,6 @@ }, "description": "1699D, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.699D", "maps": [], @@ -479593,8 +451827,6 @@ }, "description": "1699F, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.699F", "maps": [], @@ -479627,8 +451859,6 @@ }, "description": "1699G, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.699G", "maps": [], @@ -479661,8 +451891,6 @@ }, "description": "1699H, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.699H", "maps": [], @@ -479695,8 +451923,6 @@ }, "description": "1699I, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.699I", "maps": [], @@ -479729,8 +451955,6 @@ }, "description": "1699j, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.699J", "maps": [], @@ -479763,8 +451987,6 @@ }, "description": "1699k, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.699K", "maps": [], @@ -479797,8 +452019,6 @@ }, "description": "1699L, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.699L", "maps": [], @@ -479831,8 +452051,6 @@ }, "description": "1699P, Verkehrsweg", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.699P", "maps": [], @@ -479865,8 +452083,6 @@ }, "description": "1699Q, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.699Q", "maps": [], @@ -479899,8 +452115,6 @@ }, "description": "1699v, Galerie Windkanal 1+2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.699R", "maps": [], @@ -479933,8 +452147,6 @@ }, "description": "1699S, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.699S", "maps": [], @@ -479967,8 +452179,6 @@ }, "description": "1699T, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.699T", "maps": [], @@ -480001,8 +452211,6 @@ }, "description": "1699U, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.699U", "maps": [], @@ -480035,8 +452243,6 @@ }, "description": "1699w, Galerie Windkanal 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5506.01.699W", "maps": [], @@ -480069,8 +452275,6 @@ }, "description": "2601, Studentenarbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.601", "maps": [], @@ -480103,8 +452307,6 @@ }, "description": "2602, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.602", "maps": [], @@ -480137,8 +452339,6 @@ }, "description": "2602M, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.602M", "maps": [], @@ -480171,8 +452371,6 @@ }, "description": "2603, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.603", "maps": [], @@ -480205,8 +452403,6 @@ }, "description": "2603M, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.603M", "maps": [], @@ -480239,8 +452435,6 @@ }, "description": "2603N, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.603N", "maps": [], @@ -480273,8 +452467,6 @@ }, "description": "2603P, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.603P", "maps": [], @@ -480307,8 +452499,6 @@ }, "description": "2603Q, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.603Q", "maps": [], @@ -480341,8 +452531,6 @@ }, "description": "2604, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.604", "maps": [], @@ -480375,8 +452563,6 @@ }, "description": "2605, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.605", "maps": [], @@ -480409,8 +452595,6 @@ }, "description": "2606, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.606", "maps": [], @@ -480443,8 +452627,6 @@ }, "description": "2607, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.607", "maps": [], @@ -480477,8 +452659,6 @@ }, "description": "2608, Techniker", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.608", "maps": [], @@ -480511,8 +452691,6 @@ }, "description": "2609, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.609", "maps": [], @@ -480545,8 +452723,6 @@ }, "description": "2610, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.610", "maps": [], @@ -480579,8 +452755,6 @@ }, "description": "2610m, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.610M", "maps": [], @@ -480613,8 +452787,6 @@ }, "description": "2610N, Vorbereitung/Allraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.610N", "maps": [], @@ -480647,8 +452819,6 @@ }, "description": "2611, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.611", "maps": [], @@ -480681,8 +452851,6 @@ }, "description": "2613, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.613", "maps": [], @@ -480715,8 +452883,6 @@ }, "description": "2613m2, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.613B", "maps": [], @@ -480749,8 +452915,6 @@ }, "description": "2613m1, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.613M", "maps": [], @@ -480783,8 +452947,6 @@ }, "description": "2614, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.614", "maps": [], @@ -480817,8 +452979,6 @@ }, "description": "2614m, DV-Raum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.614M", "maps": [], @@ -480851,8 +453011,6 @@ }, "description": "2615, B\u00fcro f\u00fcr Langzeit G\u00e4ste", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.615", "maps": [], @@ -480885,8 +453043,6 @@ }, "description": "2616, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.616", "maps": [], @@ -480919,8 +453075,6 @@ }, "description": "2616m, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.616M", "maps": [], @@ -480953,8 +453107,6 @@ }, "description": "2617, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.617", "maps": [], @@ -480987,8 +453139,6 @@ }, "description": "2618, Mission Control", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.618", "maps": [], @@ -481021,8 +453171,6 @@ }, "description": "2619A, Sat. Integration", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.619A", "maps": [], @@ -481055,8 +453203,6 @@ }, "description": "2620, Messraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.620", "maps": [], @@ -481089,8 +453235,6 @@ }, "description": "2621, Unterrichts- / \u00dcbungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.621", "maps": [], @@ -481123,8 +453267,6 @@ }, "description": "2625, Sammlungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.625", "maps": [], @@ -481157,8 +453299,6 @@ }, "description": "2626, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.626", "maps": [], @@ -481191,8 +453331,6 @@ }, "description": "2627, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.627", "maps": [], @@ -481225,8 +453363,6 @@ }, "description": "2628, Wissenschaftliche Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.628", "maps": [], @@ -481259,8 +453395,6 @@ }, "description": "2628m, Elektro Verteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.628M", "maps": [], @@ -481293,8 +453427,6 @@ }, "description": "2628n, Elektro Verteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.628N", "maps": [], @@ -481327,8 +453459,6 @@ }, "description": "2629, Wissenschaftliche Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.629", "maps": [], @@ -481361,8 +453491,6 @@ }, "description": "2630, Wiss. Assistent C1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.630", "maps": [], @@ -481395,8 +453523,6 @@ }, "description": "2630m, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.630M", "maps": [], @@ -481429,8 +453555,6 @@ }, "description": "2631, Drittmittel/Bat I B", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.631", "maps": [], @@ -481463,8 +453587,6 @@ }, "description": "2632, Wiss. Assistent", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.632", "maps": [], @@ -481497,8 +453619,6 @@ }, "description": "2633, Drittmittel", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.633", "maps": [], @@ -481531,8 +453651,6 @@ }, "description": "2634, Wiss. Assistent", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.634", "maps": [], @@ -481565,8 +453683,6 @@ }, "description": "2635, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.635", "maps": [], @@ -481599,8 +453715,6 @@ }, "description": "2636, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.636", "maps": [], @@ -481633,8 +453747,6 @@ }, "description": "2637, Wiss. Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.637", "maps": [], @@ -481667,8 +453779,6 @@ }, "description": "2638, Gastwissenschaftler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.638", "maps": [], @@ -481701,8 +453811,6 @@ }, "description": "2639, Kopierer/Drucker", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.639", "maps": [], @@ -481735,8 +453843,6 @@ }, "description": "2639m, Elektro Verteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.639M", "maps": [], @@ -481769,8 +453875,6 @@ }, "description": "2640, Gastwissenschaftler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.640", "maps": [], @@ -481803,8 +453907,6 @@ }, "description": "2641, Wiss. Assistent", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.641", "maps": [], @@ -481837,8 +453939,6 @@ }, "description": "2642, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.642", "maps": [], @@ -481871,8 +453971,6 @@ }, "description": "2643, Studentenarbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.643", "maps": [], @@ -481905,8 +454003,6 @@ }, "description": "2660, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.660", "maps": [], @@ -481939,8 +454035,6 @@ }, "description": "2660A, RLT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.660A", "maps": [], @@ -481973,8 +454067,6 @@ }, "description": "2698b, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.698B", "maps": [], @@ -482007,8 +454099,6 @@ }, "description": "2698C, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.698C", "maps": [], @@ -482041,8 +454131,6 @@ }, "description": "2698D, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.698D", "maps": [], @@ -482075,8 +454163,6 @@ }, "description": "2698E, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.698E", "maps": [], @@ -482109,8 +454195,6 @@ }, "description": "2698F, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.698F", "maps": [], @@ -482143,8 +454227,6 @@ }, "description": "2698G, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.698G", "maps": [], @@ -482177,8 +454259,6 @@ }, "description": "2698H, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.698H", "maps": [], @@ -482211,8 +454291,6 @@ }, "description": "2698I, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.698I", "maps": [], @@ -482245,8 +454323,6 @@ }, "description": "2698J, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.698J", "maps": [], @@ -482279,8 +454355,6 @@ }, "description": "2698K, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.698K", "maps": [], @@ -482313,8 +454387,6 @@ }, "description": "2698l, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.698L", "maps": [], @@ -482347,8 +454419,6 @@ }, "description": "2698M, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.698M", "maps": [], @@ -482381,8 +454451,6 @@ }, "description": "2698n, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.698N", "maps": [], @@ -482415,8 +454483,6 @@ }, "description": "2698o, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.698O", "maps": [], @@ -482449,8 +454515,6 @@ }, "description": "2698p, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.698P", "maps": [], @@ -482483,8 +454547,6 @@ }, "description": "2698q, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.698Q", "maps": [], @@ -482517,8 +454579,6 @@ }, "description": "2699A, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.699A", "maps": [], @@ -482551,8 +454611,6 @@ }, "description": "2699B, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.699B", "maps": [], @@ -482585,8 +454643,6 @@ }, "description": "2699C, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.699C", "maps": [], @@ -482619,8 +454675,6 @@ }, "description": "2699D, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.699D", "maps": [], @@ -482653,8 +454707,6 @@ }, "description": "2699E, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.699E", "maps": [], @@ -482687,8 +454739,6 @@ }, "description": "2699F, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.699F", "maps": [], @@ -482721,8 +454771,6 @@ }, "description": "2699G, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.699G", "maps": [], @@ -482755,8 +454803,6 @@ }, "description": "2699I, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.699I", "maps": [], @@ -482789,8 +454835,6 @@ }, "description": "2699J, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.699J", "maps": [], @@ -482823,8 +454867,6 @@ }, "description": "2699K, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.699K", "maps": [], @@ -482857,8 +454899,6 @@ }, "description": "2699L, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.699L", "maps": [], @@ -482891,8 +454931,6 @@ }, "description": "2699M, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.699M", "maps": [], @@ -482925,8 +454963,6 @@ }, "description": "2699N, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.699N", "maps": [], @@ -482959,8 +454995,6 @@ }, "description": "2699O, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.699O", "maps": [], @@ -482993,8 +455027,6 @@ }, "description": "2699P, Verbindungsgang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.699P", "maps": [], @@ -483027,8 +455059,6 @@ }, "description": "2699Q, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5506.02.699Q", "maps": [], @@ -483061,8 +455091,6 @@ }, "description": "3601, Wissenschaftliche Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.601", "maps": [], @@ -483095,8 +455123,6 @@ }, "description": "3602, Wissenschaftliche Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.602", "maps": [], @@ -483129,8 +455155,6 @@ }, "description": "3602m, Getr\u00e4nkelager/Caffeek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.602M", "maps": [], @@ -483163,8 +455187,6 @@ }, "description": "3603, Wissenschaftliche Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.603", "maps": [], @@ -483197,8 +455219,6 @@ }, "description": "3603M, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.603M", "maps": [], @@ -483231,8 +455251,6 @@ }, "description": "3603N, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.603N", "maps": [], @@ -483265,8 +455283,6 @@ }, "description": "3603P, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.603P", "maps": [], @@ -483299,8 +455315,6 @@ }, "description": "3603Q, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.603Q", "maps": [], @@ -483333,8 +455347,6 @@ }, "description": "3604, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.604", "maps": [], @@ -483367,8 +455379,6 @@ }, "description": "3605, Wissenschaftliche Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.605", "maps": [], @@ -483401,8 +455411,6 @@ }, "description": "3606, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.606", "maps": [], @@ -483435,8 +455443,6 @@ }, "description": "3607, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.607", "maps": [], @@ -483469,8 +455475,6 @@ }, "description": "3608, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.608", "maps": [], @@ -483503,8 +455507,6 @@ }, "description": "3608m, Flugsimulator Beech Baron", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.608M", "maps": [], @@ -483537,8 +455539,6 @@ }, "description": "3608N, Druckerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.608N", "maps": [], @@ -483571,8 +455571,6 @@ }, "description": "3609, Wissenschaftliche Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.609", "maps": [], @@ -483605,8 +455603,6 @@ }, "description": "3609m, Labor/Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.609M", "maps": [], @@ -483639,8 +455635,6 @@ }, "description": "3609n, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.609N", "maps": [], @@ -483673,8 +455667,6 @@ }, "description": "3610, Wissenschaftliche Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.610", "maps": [], @@ -483707,8 +455699,6 @@ }, "description": "3611, Wissenschaftliche Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.611", "maps": [], @@ -483741,8 +455731,6 @@ }, "description": "3612, Wissenschaftliche Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.612", "maps": [], @@ -483775,8 +455763,6 @@ }, "description": "3612m, Registratur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.612M", "maps": [], @@ -483809,8 +455795,6 @@ }, "description": "3612n, Pr\u00fcfungsarchiv", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.612N", "maps": [], @@ -483843,8 +455827,6 @@ }, "description": "3613, Wissenschaftliche Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.613", "maps": [], @@ -483877,8 +455859,6 @@ }, "description": "3613m, Aufenthaltsraum m. Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.613M", "maps": [], @@ -483911,8 +455891,6 @@ }, "description": "3614, Wissenschaftliche Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.614", "maps": [], @@ -483945,8 +455923,6 @@ }, "description": "3615, Wissenschaftliche Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.615", "maps": [], @@ -483979,8 +455955,6 @@ }, "description": "3616, Wissenschaftliche Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.616", "maps": [], @@ -484013,8 +455987,6 @@ }, "description": "3617, Wissenschaftliche Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.617", "maps": [], @@ -484047,8 +456019,6 @@ }, "description": "3618, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.618", "maps": [], @@ -484081,8 +456051,6 @@ }, "description": "3625, Wissenschaftliche Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.625", "maps": [], @@ -484115,8 +456083,6 @@ }, "description": "3626, Wissenschaftlicher Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.626", "maps": [], @@ -484149,8 +456115,6 @@ }, "description": "3627, Wissenschaftlicher Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.627", "maps": [], @@ -484183,8 +456147,6 @@ }, "description": "3627m, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.627M", "maps": [], @@ -484217,8 +456179,6 @@ }, "description": "3627, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.627N", "maps": [], @@ -484251,8 +456211,6 @@ }, "description": "3628, Wissenschaftlicher Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.628", "maps": [], @@ -484285,8 +456243,6 @@ }, "description": "3628m, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.628M", "maps": [], @@ -484319,8 +456275,6 @@ }, "description": "3629, B\u00fcro/Emeritus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.629", "maps": [], @@ -484353,8 +456307,6 @@ }, "description": "3630, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.630", "maps": [], @@ -484387,8 +456339,6 @@ }, "description": "3631, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.631", "maps": [], @@ -484421,8 +456371,6 @@ }, "description": "3632, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.632", "maps": [], @@ -484455,8 +456403,6 @@ }, "description": "3633, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.633", "maps": [], @@ -484489,8 +456435,6 @@ }, "description": "3633m, Flugsimulator", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.633M", "maps": [], @@ -484523,8 +456467,6 @@ }, "description": "3634, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.634", "maps": [], @@ -484557,8 +456499,6 @@ }, "description": "3635, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.635", "maps": [], @@ -484591,8 +456531,6 @@ }, "description": "3636, B\u00fcro/Leitung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.636", "maps": [], @@ -484625,8 +456563,6 @@ }, "description": "3637, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.637", "maps": [], @@ -484659,8 +456595,6 @@ }, "description": "3638, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.638", "maps": [], @@ -484693,8 +456627,6 @@ }, "description": "3638M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.638M", "maps": [], @@ -484727,8 +456659,6 @@ }, "description": "3640, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.640", "maps": [], @@ -484761,8 +456691,6 @@ }, "description": "3641, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.641", "maps": [], @@ -484795,8 +456723,6 @@ }, "description": "3642, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.642", "maps": [], @@ -484829,8 +456755,6 @@ }, "description": "3643, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.643", "maps": [], @@ -484863,8 +456787,6 @@ }, "description": "3698o, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.6980", "maps": [], @@ -484897,8 +456819,6 @@ }, "description": "3698B, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.698B", "maps": [], @@ -484931,8 +456851,6 @@ }, "description": "3698C, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.698C", "maps": [], @@ -484965,8 +456883,6 @@ }, "description": "3698d, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.698D", "maps": [], @@ -484999,8 +456915,6 @@ }, "description": "3698e, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.698E", "maps": [], @@ -485033,8 +456947,6 @@ }, "description": "3698f, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.698F", "maps": [], @@ -485067,8 +456979,6 @@ }, "description": "3698g, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.698G", "maps": [], @@ -485101,8 +457011,6 @@ }, "description": "3698h, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.698H", "maps": [], @@ -485135,8 +457043,6 @@ }, "description": "3698I, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.698I", "maps": [], @@ -485169,8 +457075,6 @@ }, "description": "3698j, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.698J", "maps": [], @@ -485203,8 +457107,6 @@ }, "description": "3698k, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.698K", "maps": [], @@ -485237,8 +457139,6 @@ }, "description": "3698M, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.698M", "maps": [], @@ -485271,8 +457171,6 @@ }, "description": "3698N, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.698N", "maps": [], @@ -485305,8 +457203,6 @@ }, "description": "3698P, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.698P", "maps": [], @@ -485339,8 +457235,6 @@ }, "description": "3698Q, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.698Q", "maps": [], @@ -485373,8 +457267,6 @@ }, "description": "3699A, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.699A", "maps": [], @@ -485407,8 +457299,6 @@ }, "description": "3699B, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.699B", "maps": [], @@ -485441,8 +457331,6 @@ }, "description": "3699C, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.699C", "maps": [], @@ -485475,8 +457363,6 @@ }, "description": "3699D, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.699D", "maps": [], @@ -485509,8 +457395,6 @@ }, "description": "3699E, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.699E", "maps": [], @@ -485543,8 +457427,6 @@ }, "description": "3699F, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.699F", "maps": [], @@ -485577,8 +457459,6 @@ }, "description": "3699G, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.699G", "maps": [], @@ -485611,8 +457491,6 @@ }, "description": "3699J, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.699J", "maps": [], @@ -485645,8 +457523,6 @@ }, "description": "3699k, Flur mit Sitzgelegenheit", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.699K", "maps": [], @@ -485679,8 +457555,6 @@ }, "description": "3699L, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.699L", "maps": [], @@ -485713,8 +457587,6 @@ }, "description": "3699N, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.699N", "maps": [], @@ -485747,8 +457619,6 @@ }, "description": "3699P, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5506.03.699P", "maps": [], @@ -485781,8 +457651,6 @@ }, "description": "0601, Bibliothek", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.601", "maps": [], @@ -485815,8 +457683,6 @@ }, "description": "0601A, Laden 2 (ehem. Printy)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.601A", "maps": [], @@ -485849,8 +457715,6 @@ }, "description": "0602, Studenten-Arbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.602", "maps": [], @@ -485883,8 +457747,6 @@ }, "description": "0602M, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.602M", "maps": [], @@ -485917,8 +457779,6 @@ }, "description": "0603, Emeriti", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.603", "maps": [], @@ -485951,8 +457811,6 @@ }, "description": "0603M, Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.603M", "maps": [], @@ -485985,8 +457843,6 @@ }, "description": "0603N, Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.603N", "maps": [], @@ -486019,8 +457875,6 @@ }, "description": "0603O, Sanit\u00e4r", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.603O", "maps": [], @@ -486053,8 +457907,6 @@ }, "description": "0603P, Sanit\u00e4r", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.603P", "maps": [], @@ -486087,8 +457939,6 @@ }, "description": "0604, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.604", "maps": [], @@ -486121,8 +457971,6 @@ }, "description": "0605, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.605", "maps": [], @@ -486155,8 +458003,6 @@ }, "description": "0606, Ordinarius", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.606", "maps": [], @@ -486189,8 +458035,6 @@ }, "description": "0606m, Foyer / Eingangsbereich", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.606M", "maps": [], @@ -486223,8 +458067,6 @@ }, "description": "0607, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.607", "maps": [], @@ -486257,8 +458099,6 @@ }, "description": "0608, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.608", "maps": [], @@ -486291,8 +458131,6 @@ }, "description": "0608M, Otto-Lilienthal-H\u00f6rsaal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.608M", "maps": [], @@ -486325,8 +458163,6 @@ }, "description": "0609, B\u00fcro Dipl.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.609", "maps": [], @@ -486359,8 +458195,6 @@ }, "description": "0610, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.610", "maps": [], @@ -486393,8 +458227,6 @@ }, "description": "0611, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.611", "maps": [], @@ -486427,8 +458259,6 @@ }, "description": "0611M, Aufenthaltsraum m. Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.611M", "maps": [], @@ -486461,8 +458291,6 @@ }, "description": "0612, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.612", "maps": [], @@ -486495,8 +458323,6 @@ }, "description": "0613, Werkstatt Messtechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.613", "maps": [], @@ -486529,8 +458355,6 @@ }, "description": "0614, M\u00fcllraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.614", "maps": [], @@ -486563,8 +458387,6 @@ }, "description": "0625, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.625", "maps": [], @@ -486597,8 +458419,6 @@ }, "description": "0625m, Elektro Verteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.625M", "maps": [], @@ -486631,8 +458451,6 @@ }, "description": "0625n, Elektro Verteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.625N", "maps": [], @@ -486665,8 +458483,6 @@ }, "description": "0625Y, Fahrzeugverkehrsfl\u00e4che", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.625Y", "maps": [], @@ -486699,8 +458515,6 @@ }, "description": "0626, Techn. Angestellte", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.626", "maps": [], @@ -486733,8 +458547,6 @@ }, "description": "0626m, Elektro Verteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.626M", "maps": [], @@ -486767,8 +458579,6 @@ }, "description": "0627, Emeritus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.627", "maps": [], @@ -486801,8 +458611,6 @@ }, "description": "0628, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.628", "maps": [], @@ -486835,8 +458643,6 @@ }, "description": "0628m, EDV-Raum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.628M", "maps": [], @@ -486869,8 +458675,6 @@ }, "description": "0629, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.629", "maps": [], @@ -486903,8 +458707,6 @@ }, "description": "0630, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.630", "maps": [], @@ -486937,8 +458739,6 @@ }, "description": "0631, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.631", "maps": [], @@ -486971,8 +458771,6 @@ }, "description": "0632, Extraordinarius", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.632", "maps": [], @@ -487005,8 +458803,6 @@ }, "description": "0633, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.633", "maps": [], @@ -487039,8 +458835,6 @@ }, "description": "0634, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.634", "maps": [], @@ -487073,8 +458867,6 @@ }, "description": "0634m, Elektro Verteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.634M", "maps": [], @@ -487107,8 +458899,6 @@ }, "description": "0635, Stud.arbeit", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.635", "maps": [], @@ -487141,8 +458931,6 @@ }, "description": "0636, Seminar", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.636", "maps": [], @@ -487175,8 +458963,6 @@ }, "description": "0660, Werkstattb\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.660", "maps": [], @@ -487209,8 +458995,6 @@ }, "description": "0660m, Trafo", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.660M", "maps": [], @@ -487243,8 +459027,6 @@ }, "description": "0660n, Trafo", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.660N", "maps": [], @@ -487277,8 +459059,6 @@ }, "description": "0660p, Trafo", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.660P", "maps": [], @@ -487311,8 +459091,6 @@ }, "description": "0660Q, Fernmeldetechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.660Q", "maps": [], @@ -487345,8 +459123,6 @@ }, "description": "0660R, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.660R", "maps": [], @@ -487379,8 +459155,6 @@ }, "description": "0660S, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.660S", "maps": [], @@ -487413,8 +459187,6 @@ }, "description": "0660T, Umkleide / Dusche Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.660T", "maps": [], @@ -487447,8 +459219,6 @@ }, "description": "0660U, Umkleide", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.660U", "maps": [], @@ -487481,8 +459251,6 @@ }, "description": "0660V, Waschraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.660V", "maps": [], @@ -487515,8 +459283,6 @@ }, "description": "0660W, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.660W", "maps": [], @@ -487549,8 +459315,6 @@ }, "description": "0661, Metallwerkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.661", "maps": [], @@ -487583,8 +459347,6 @@ }, "description": "0661a, Meister", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.661A", "maps": [], @@ -487617,8 +459379,6 @@ }, "description": "0661b, Aufenthalt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.661B", "maps": [], @@ -487651,8 +459411,6 @@ }, "description": "0661m, Schwei\u00dferei", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.661M", "maps": [], @@ -487685,8 +459443,6 @@ }, "description": "0661n, Materiallager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.661N", "maps": [], @@ -487719,8 +459475,6 @@ }, "description": "0661o, Ger\u00e4telager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.661O", "maps": [], @@ -487753,8 +459507,6 @@ }, "description": "0661Q, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.661Q", "maps": [], @@ -487787,8 +459539,6 @@ }, "description": "0662, Feinmechanische Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.662", "maps": [], @@ -487821,8 +459571,6 @@ }, "description": "0662a, Meisterb\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.662A", "maps": [], @@ -487855,8 +459603,6 @@ }, "description": "0662b, Aufenthalt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.662B", "maps": [], @@ -487889,8 +459635,6 @@ }, "description": "0662c, Werkstattlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.662C", "maps": [], @@ -487923,8 +459667,6 @@ }, "description": "0662m, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.662M", "maps": [], @@ -487957,8 +459699,6 @@ }, "description": "0662n, Blechbearbeitung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.662N", "maps": [], @@ -487991,8 +459731,6 @@ }, "description": "0662o, Schleifen / Schwei\u00dfen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.662O", "maps": [], @@ -488025,8 +459763,6 @@ }, "description": "0663, K\u00fchlwasser", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.663", "maps": [], @@ -488059,8 +459795,6 @@ }, "description": "0664, Gasflaschenlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.664", "maps": [], @@ -488093,8 +459827,6 @@ }, "description": "0670A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.670A", "maps": [], @@ -488127,8 +459859,6 @@ }, "description": "0670B, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.670B", "maps": [], @@ -488161,8 +459891,6 @@ }, "description": "0670C, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.670C", "maps": [], @@ -488195,8 +459923,6 @@ }, "description": "0670D, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.670D", "maps": [], @@ -488229,8 +459955,6 @@ }, "description": "0675, K\u00fchlwasser", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.675", "maps": [], @@ -488263,8 +459987,6 @@ }, "description": "0675m, Vorbereitung WK", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.675M", "maps": [], @@ -488297,8 +460019,6 @@ }, "description": "0676, Gasflaschenlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.676", "maps": [], @@ -488331,8 +460051,6 @@ }, "description": "0677, Modelwerkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.677", "maps": [], @@ -488365,8 +460083,6 @@ }, "description": "0678, Blechwerkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.678", "maps": [], @@ -488399,8 +460115,6 @@ }, "description": "0678m, Materiallager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.678M", "maps": [], @@ -488433,8 +460147,6 @@ }, "description": "0679, Werkstatt / Windkanal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.679", "maps": [], @@ -488467,8 +460179,6 @@ }, "description": "0679a, Aufenthalt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.679A", "maps": [], @@ -488501,8 +460211,6 @@ }, "description": "0679m, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.679M", "maps": [], @@ -488535,8 +460243,6 @@ }, "description": "0680, Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.680", "maps": [], @@ -488569,8 +460275,6 @@ }, "description": "0690, Experimentierhalle / E-Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.690", "maps": [], @@ -488603,8 +460307,6 @@ }, "description": "0690A, Verkehrsweg zw. 0690 u. 0690B", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.690A", "maps": [], @@ -488637,8 +460339,6 @@ }, "description": "0690b, Kunststofflager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.690B", "maps": [], @@ -488671,8 +460371,6 @@ }, "description": "0690c, Flugtechnik-Praktikum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.690C", "maps": [], @@ -488705,8 +460403,6 @@ }, "description": "0690D, Halle FSD/Ironbird/Forschungsflugzeug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.690D", "maps": [], @@ -488739,8 +460435,6 @@ }, "description": "0690E, Reaktionstechnikum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.690E", "maps": [], @@ -488773,8 +460467,6 @@ }, "description": "0690f, Lager Fakult\u00e4t", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.690F", "maps": [], @@ -488807,8 +460499,6 @@ }, "description": "0690G, Experimentierhalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.690G", "maps": [], @@ -488841,8 +460531,6 @@ }, "description": "0690H, Windkanal B", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.690H", "maps": [], @@ -488875,8 +460563,6 @@ }, "description": "0690i, Str\u00f6mungslabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.690I", "maps": [], @@ -488909,8 +460595,6 @@ }, "description": "0690J, Windkanal C", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.690J", "maps": [], @@ -488943,8 +460627,6 @@ }, "description": "0690k, Lackiererei", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.690K", "maps": [], @@ -488977,8 +460659,6 @@ }, "description": "0690l, Garage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.690L", "maps": [], @@ -489011,8 +460691,6 @@ }, "description": "0690M, Windkanal A", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.690M", "maps": [], @@ -489045,8 +460723,6 @@ }, "description": "0690a, Holz- und Kunststoffwerkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.690N", "maps": [], @@ -489079,8 +460755,6 @@ }, "description": "0690P, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.690P", "maps": [], @@ -489113,8 +460787,6 @@ }, "description": "0690d, Verkehrsfl\u00e4che (4.2.11.756/858)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.690Q", "maps": [], @@ -489147,8 +460819,6 @@ }, "description": "0690h, Verkehrsfl\u00e4che", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.690R", "maps": [], @@ -489181,8 +460851,6 @@ }, "description": "0690m, Anlieferung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.690S", "maps": [], @@ -489215,8 +460883,6 @@ }, "description": "0691A, Betriebstechn. Anlagen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.691A", "maps": [], @@ -489249,8 +460915,6 @@ }, "description": "0698B, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.698B", "maps": [], @@ -489283,8 +460947,6 @@ }, "description": "0698c, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.698C", "maps": [], @@ -489317,8 +460979,6 @@ }, "description": "0698d, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.698D", "maps": [], @@ -489351,8 +461011,6 @@ }, "description": "0698e, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.698E", "maps": [], @@ -489385,8 +461043,6 @@ }, "description": "0698f, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.698F", "maps": [], @@ -489419,8 +461075,6 @@ }, "description": "0698G, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.698G", "maps": [], @@ -489453,8 +461107,6 @@ }, "description": "0698h, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.698H", "maps": [], @@ -489487,8 +461139,6 @@ }, "description": "0698I, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.698I", "maps": [], @@ -489521,8 +461171,6 @@ }, "description": "0698j, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.698J", "maps": [], @@ -489555,8 +461203,6 @@ }, "description": "0698k, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.698K", "maps": [], @@ -489589,8 +461235,6 @@ }, "description": "0698L, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.698L", "maps": [], @@ -489623,8 +461267,6 @@ }, "description": "0698n, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.698N", "maps": [], @@ -489657,8 +461299,6 @@ }, "description": "0698o, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.698O", "maps": [], @@ -489691,8 +461331,6 @@ }, "description": "0698p, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.698P", "maps": [], @@ -489725,8 +461363,6 @@ }, "description": "0698q, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.698Q", "maps": [], @@ -489759,8 +461395,6 @@ }, "description": "0698r, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.698R", "maps": [], @@ -489793,8 +461427,6 @@ }, "description": "0699A, MW 6 Innenhof", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.699A", "maps": [], @@ -489827,8 +461459,6 @@ }, "description": "0699C, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.699C", "maps": [], @@ -489861,8 +461491,6 @@ }, "description": "0699D, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.699D", "maps": [], @@ -489895,8 +461523,6 @@ }, "description": "0699E, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.699E", "maps": [], @@ -489929,8 +461555,6 @@ }, "description": "0699F, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.699F", "maps": [], @@ -489963,8 +461587,6 @@ }, "description": "0699G, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.699G", "maps": [], @@ -489997,8 +461619,6 @@ }, "description": "0699H, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.699H", "maps": [], @@ -490031,8 +461651,6 @@ }, "description": "0699I, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.699I", "maps": [], @@ -490065,8 +461683,6 @@ }, "description": "0699J, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.699J", "maps": [], @@ -490099,8 +461715,6 @@ }, "description": "0699L, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.699L", "maps": [], @@ -490133,8 +461747,6 @@ }, "description": "0699M, Dilatometer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.699M", "maps": [], @@ -490167,8 +461779,6 @@ }, "description": "0699p, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.699P", "maps": [], @@ -490201,8 +461811,6 @@ }, "description": "0699Q, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.699Q", "maps": [], @@ -490235,8 +461843,6 @@ }, "description": "0699R, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.699R", "maps": [], @@ -490269,8 +461875,6 @@ }, "description": "0699S, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.699S", "maps": [], @@ -490303,8 +461907,6 @@ }, "description": "0699t, Verkehrsfl\u00e4che", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.699T", "maps": [], @@ -490337,8 +461939,6 @@ }, "description": "0699V, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.699V", "maps": [], @@ -490371,8 +461971,6 @@ }, "description": "0699W, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.699W", "maps": [], @@ -490405,8 +462003,6 @@ }, "description": "0699X, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.699X", "maps": [], @@ -490439,8 +462035,6 @@ }, "description": "0699Y, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5506.EG.699Y", "maps": [], @@ -490473,8 +462067,6 @@ }, "description": "U601, Technikraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5506.U1.601", "maps": [], @@ -490507,8 +462099,6 @@ }, "description": "U601A, Installationsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5506.U1.601A", "maps": [], @@ -490541,8 +462131,6 @@ }, "description": "U602, Installationskeller", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5506.U1.602", "maps": [], @@ -490575,8 +462163,6 @@ }, "description": "U602n, Technikraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5506.U1.602M", "maps": [], @@ -490609,8 +462195,6 @@ }, "description": "U603M, Lager Hausmaterialien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5506.U1.603M", "maps": [], @@ -490643,8 +462227,6 @@ }, "description": "U603N, Maschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5506.U1.603N", "maps": [], @@ -490677,8 +462259,6 @@ }, "description": "U603O, Sprinklerzentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5506.U1.603O", "maps": [], @@ -490711,8 +462291,6 @@ }, "description": "U603P, Maschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5506.U1.603P", "maps": [], @@ -490745,8 +462323,6 @@ }, "description": "U603Q, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5506.U1.603Q", "maps": [], @@ -490779,8 +462355,6 @@ }, "description": "U625, Netz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5506.U1.625", "maps": [], @@ -490813,8 +462387,6 @@ }, "description": "U625M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5506.U1.625M", "maps": [], @@ -490847,8 +462419,6 @@ }, "description": "U626, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5506.U1.626", "maps": [], @@ -490881,8 +462451,6 @@ }, "description": "U626M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5506.U1.626M", "maps": [], @@ -490915,8 +462483,6 @@ }, "description": "U627, Fernmeldetechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5506.U1.627", "maps": [], @@ -490949,8 +462515,6 @@ }, "description": "U628, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5506.U1.628", "maps": [], @@ -490983,8 +462547,6 @@ }, "description": "U629, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5506.U1.629", "maps": [], @@ -491017,8 +462579,6 @@ }, "description": "U630, Reinigungsdienst", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5506.U1.630", "maps": [], @@ -491051,8 +462611,6 @@ }, "description": "U631, Akaflieg Modell", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5506.U1.631", "maps": [], @@ -491085,8 +462643,6 @@ }, "description": "U632, \u00dcbungsraum/Archiv", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5506.U1.632", "maps": [], @@ -491119,8 +462675,6 @@ }, "description": "U633, Archiv", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5506.U1.633", "maps": [], @@ -491153,8 +462707,6 @@ }, "description": "U634, Feinmessraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5506.U1.634", "maps": [], @@ -491187,8 +462739,6 @@ }, "description": "U635, Probenlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5506.U1.635", "maps": [], @@ -491221,8 +462771,6 @@ }, "description": "U636, Lager Laden 2 (ehem. Printy)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5506.U1.636", "maps": [], @@ -491255,8 +462803,6 @@ }, "description": "U698B, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5506.U1.698B", "maps": [], @@ -491289,8 +462835,6 @@ }, "description": "U698C, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5506.U1.698C", "maps": [], @@ -491323,8 +462867,6 @@ }, "description": "U698D, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5506.U1.698D", "maps": [], @@ -491357,8 +462899,6 @@ }, "description": "U698E, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5506.U1.698E", "maps": [], @@ -491391,8 +462931,6 @@ }, "description": "U698F, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5506.U1.698F", "maps": [], @@ -491425,8 +462963,6 @@ }, "description": "U698G, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5506.U1.698G", "maps": [], @@ -491459,8 +462995,6 @@ }, "description": "U698H, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5506.U1.698H", "maps": [], @@ -491493,8 +463027,6 @@ }, "description": "U698J, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5506.U1.698J", "maps": [], @@ -491527,8 +463059,6 @@ }, "description": "U698K, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5506.U1.698K", "maps": [], @@ -491561,8 +463091,6 @@ }, "description": "U698M, Aufzugs- und F\u00f6rdermaschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5506.U1.698M", "maps": [], @@ -491595,8 +463123,6 @@ }, "description": "U698N, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5506.U1.698N", "maps": [], @@ -491629,8 +463155,6 @@ }, "description": "U698O, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5506.U1.698O", "maps": [], @@ -491663,8 +463187,6 @@ }, "description": "U698P, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5506.U1.698P", "maps": [], @@ -491697,8 +463219,6 @@ }, "description": "U698Q, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5506.U1.698Q", "maps": [], @@ -491731,8 +463251,6 @@ }, "description": "U698R, Wasser-Vorratsbeh\u00e4lter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5506.U1.698R", "maps": [], @@ -491765,8 +463283,6 @@ }, "description": "U699B, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5506.U1.699B", "maps": [], @@ -491799,8 +463315,6 @@ }, "description": "U699C, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5506.U1.699C", "maps": [], @@ -491833,8 +463347,6 @@ }, "description": "U699D, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5506.U1.699D", "maps": [], @@ -491867,8 +463379,6 @@ }, "description": "U699F, Aufzugs- und F\u00f6rdermaschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5506.U1.699F", "maps": [], @@ -491901,8 +463411,6 @@ }, "description": "U699G, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5506.U1.699G", "maps": [], @@ -491935,8 +463443,6 @@ }, "description": "U699H, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5506.U1.699H", "maps": [], @@ -491969,8 +463475,6 @@ }, "description": "U699I, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5506.U1.699I", "maps": [], @@ -492003,8 +463507,6 @@ }, "description": "U699K, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5506.U1.699K", "maps": [], @@ -492037,8 +463539,6 @@ }, "description": "U699L, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5506.U1.699L", "maps": [], @@ -492071,8 +463571,6 @@ }, "description": "1701, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.701", "maps": [], @@ -492105,8 +463603,6 @@ }, "description": "1702, Besprechnung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.702", "maps": [], @@ -492139,8 +463635,6 @@ }, "description": "1703, W\u00e4rmetechnisches Praktikum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.703", "maps": [], @@ -492173,8 +463667,6 @@ }, "description": "1703A, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.703A", "maps": [], @@ -492207,8 +463699,6 @@ }, "description": "1703b, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.703B", "maps": [], @@ -492241,8 +463731,6 @@ }, "description": "1703M, Rechner", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.703M", "maps": [], @@ -492275,8 +463763,6 @@ }, "description": "1703N, Aufenthaltsraum m. Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.703N", "maps": [], @@ -492309,8 +463795,6 @@ }, "description": "1703O, WC-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.703O", "maps": [], @@ -492343,8 +463827,6 @@ }, "description": "1703P, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.703P", "maps": [], @@ -492377,8 +463859,6 @@ }, "description": "1703Q, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.703Q", "maps": [], @@ -492411,8 +463891,6 @@ }, "description": "1703R, WC-Damen Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.703R", "maps": [], @@ -492445,8 +463923,6 @@ }, "description": "1704, Labor SToffwertebestimmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.704", "maps": [], @@ -492479,8 +463955,6 @@ }, "description": "1705, Bibliothek", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.705", "maps": [], @@ -492513,8 +463987,6 @@ }, "description": "1706, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.706", "maps": [], @@ -492547,8 +464019,6 @@ }, "description": "1726, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.726", "maps": [], @@ -492581,8 +464051,6 @@ }, "description": "1727, Wissenschaftliche Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.727", "maps": [], @@ -492615,8 +464083,6 @@ }, "description": "1728, Wissenschaftliche Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.728", "maps": [], @@ -492649,8 +464115,6 @@ }, "description": "1728M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.728M", "maps": [], @@ -492683,8 +464147,6 @@ }, "description": "1728N, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.728N", "maps": [], @@ -492717,8 +464179,6 @@ }, "description": "1729, Wissenschaftliche Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.729", "maps": [], @@ -492751,8 +464211,6 @@ }, "description": "1729M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.729M", "maps": [], @@ -492785,8 +464243,6 @@ }, "description": "1730, Wissenschaftliche Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.730", "maps": [], @@ -492819,8 +464275,6 @@ }, "description": "1731, Oberingenieur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.731", "maps": [], @@ -492853,8 +464307,6 @@ }, "description": "1732, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.732", "maps": [], @@ -492887,8 +464339,6 @@ }, "description": "1733, Besprechnung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.733", "maps": [], @@ -492921,8 +464371,6 @@ }, "description": "1733m, Foyer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.733M", "maps": [], @@ -492955,8 +464403,6 @@ }, "description": "1734, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.734", "maps": [], @@ -492989,8 +464435,6 @@ }, "description": "1735, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.735", "maps": [], @@ -493023,8 +464467,6 @@ }, "description": "1735a, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.735A", "maps": [], @@ -493057,8 +464499,6 @@ }, "description": "1735M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.735M", "maps": [], @@ -493091,8 +464531,6 @@ }, "description": "1736, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.736", "maps": [], @@ -493125,8 +464563,6 @@ }, "description": "1737, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.737", "maps": [], @@ -493159,8 +464595,6 @@ }, "description": "1738, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.738", "maps": [], @@ -493193,8 +464627,6 @@ }, "description": "1739, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.739", "maps": [], @@ -493227,8 +464659,6 @@ }, "description": "1760, Abstellraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.760", "maps": [], @@ -493261,8 +464691,6 @@ }, "description": "1760M, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.760M", "maps": [], @@ -493295,8 +464723,6 @@ }, "description": "1760N, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.760N", "maps": [], @@ -493329,8 +464755,6 @@ }, "description": "1760P, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.760P", "maps": [], @@ -493363,8 +464787,6 @@ }, "description": "1760Q, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.760Q", "maps": [], @@ -493397,8 +464819,6 @@ }, "description": "1760R, Beh.-WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.760R", "maps": [], @@ -493431,8 +464851,6 @@ }, "description": "1760s, Umkl./Dusche-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.760S", "maps": [], @@ -493465,8 +464883,6 @@ }, "description": "1760T, Dusche Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.760T", "maps": [], @@ -493499,8 +464915,6 @@ }, "description": "1761, Aufenthaltsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.761", "maps": [], @@ -493533,8 +464947,6 @@ }, "description": "1761m, Leitwarte", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.761M", "maps": [], @@ -493567,8 +464979,6 @@ }, "description": "1762, Forschungssimulator", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.762", "maps": [], @@ -493601,8 +465011,6 @@ }, "description": "1762m, Studentenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.762M", "maps": [], @@ -493635,8 +465043,6 @@ }, "description": "1790a, L\u00fcftungszentrale Nr. 7", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.790A", "maps": [], @@ -493669,8 +465075,6 @@ }, "description": "1790b, Schleiferei", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.790B", "maps": [], @@ -493703,8 +465107,6 @@ }, "description": "1790c, SCR Technologie (Abgasnachbehandlung)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.790C", "maps": [], @@ -493737,8 +465139,6 @@ }, "description": "1790d, Kunststoffverarbeitung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.790D", "maps": [], @@ -493771,8 +465171,6 @@ }, "description": "1790e, Elektrische Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.790E", "maps": [], @@ -493805,8 +465203,6 @@ }, "description": "1798a, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.798A", "maps": [], @@ -493839,8 +465235,6 @@ }, "description": "1798b, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.798B", "maps": [], @@ -493873,8 +465267,6 @@ }, "description": "1798c, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.798C", "maps": [], @@ -493907,8 +465299,6 @@ }, "description": "1798d, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.798D", "maps": [], @@ -493941,8 +465331,6 @@ }, "description": "1798e, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.798E", "maps": [], @@ -493975,8 +465363,6 @@ }, "description": "1798f, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.798F", "maps": [], @@ -494009,8 +465395,6 @@ }, "description": "1798g, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.798G", "maps": [], @@ -494043,8 +465427,6 @@ }, "description": "1798h, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.798H", "maps": [], @@ -494077,8 +465459,6 @@ }, "description": "1798i, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.798I", "maps": [], @@ -494111,8 +465491,6 @@ }, "description": "1798j, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.798J", "maps": [], @@ -494145,8 +465523,6 @@ }, "description": "1798k, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.798K", "maps": [], @@ -494179,8 +465555,6 @@ }, "description": "1798l, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.798L", "maps": [], @@ -494213,8 +465587,6 @@ }, "description": "1798m, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.798M", "maps": [], @@ -494247,8 +465619,6 @@ }, "description": "1798n, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.798N", "maps": [], @@ -494281,8 +465651,6 @@ }, "description": "1798o, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.798O", "maps": [], @@ -494315,8 +465683,6 @@ }, "description": "1798q, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.798Q", "maps": [], @@ -494349,8 +465715,6 @@ }, "description": "1798r, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.798R", "maps": [], @@ -494383,8 +465747,6 @@ }, "description": "1799A, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.799A", "maps": [], @@ -494417,8 +465779,6 @@ }, "description": "1799B, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.799B", "maps": [], @@ -494451,8 +465811,6 @@ }, "description": "1799C, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.799C", "maps": [], @@ -494485,8 +465843,6 @@ }, "description": "1799D, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.799D", "maps": [], @@ -494519,8 +465875,6 @@ }, "description": "1799E, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.799E", "maps": [], @@ -494553,8 +465907,6 @@ }, "description": "1799F, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.799F", "maps": [], @@ -494587,8 +465939,6 @@ }, "description": "1799G, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.799G", "maps": [], @@ -494621,8 +465971,6 @@ }, "description": "1977H, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.799H", "maps": [], @@ -494655,8 +466003,6 @@ }, "description": "1799I, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.799I", "maps": [], @@ -494689,8 +466035,6 @@ }, "description": "1799J, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.799J", "maps": [], @@ -494723,8 +466067,6 @@ }, "description": "1799K, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.799K", "maps": [], @@ -494757,8 +466099,6 @@ }, "description": "1799L, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.799L", "maps": [], @@ -494791,8 +466131,6 @@ }, "description": "1799M, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.799M", "maps": [], @@ -494825,8 +466163,6 @@ }, "description": "1799n, Aufenthaltsraum m. Teek\u00fcche/Durchgang zu 17", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.799N", "maps": [], @@ -494859,8 +466195,6 @@ }, "description": "1799O, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.799O", "maps": [], @@ -494893,8 +466227,6 @@ }, "description": "1799Q, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.799Q", "maps": [], @@ -494927,8 +466259,6 @@ }, "description": "1799S, Balkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5507.01.799S", "maps": [], @@ -494961,8 +466291,6 @@ }, "description": "2701, Wissenschaftlicher Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.701", "maps": [], @@ -494995,8 +466323,6 @@ }, "description": "2701M, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.701M", "maps": [ @@ -495050,8 +466376,6 @@ }, "description": "2702, Besprechungszimmer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.702", "maps": [], @@ -495084,8 +466408,6 @@ }, "description": "2703, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.703", "maps": [], @@ -495118,8 +466440,6 @@ }, "description": "2703M, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.703M", "maps": [], @@ -495152,8 +466472,6 @@ }, "description": "2703N, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.703N", "maps": [], @@ -495186,8 +466504,6 @@ }, "description": "2703P, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.703P", "maps": [], @@ -495220,8 +466536,6 @@ }, "description": "2703Q, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.703Q", "maps": [], @@ -495254,8 +466568,6 @@ }, "description": "2704, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.704", "maps": [], @@ -495288,8 +466600,6 @@ }, "description": "2705/2706, Wissenschaftlicher Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.705", "maps": [], @@ -495322,8 +466632,6 @@ }, "description": "2707, Physikalisch/Techn.\u00dcbungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.707", "maps": [], @@ -495356,8 +466664,6 @@ }, "description": "2708, Praktikaraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.708", "maps": [], @@ -495390,8 +466696,6 @@ }, "description": "2709, Wissenschaftlicher Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.709", "maps": [], @@ -495424,8 +466728,6 @@ }, "description": "2709m, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.709M", "maps": [], @@ -495458,8 +466760,6 @@ }, "description": "2709n, Archiv", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.709N", "maps": [], @@ -495492,8 +466792,6 @@ }, "description": "2709o, Rechner-Raum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.709O", "maps": [], @@ -495526,8 +466824,6 @@ }, "description": "2710, Studentenarbeitsraum m. DV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.710", "maps": [], @@ -495560,8 +466856,6 @@ }, "description": "2711, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.711", "maps": [], @@ -495594,8 +466888,6 @@ }, "description": "2725, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.725", "maps": [], @@ -495628,8 +466920,6 @@ }, "description": "2726, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.726", "maps": [], @@ -495662,8 +466952,6 @@ }, "description": "2727, B\u00fcro m. Rechnerarbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.727", "maps": [], @@ -495696,8 +466984,6 @@ }, "description": "2727M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.727M", "maps": [], @@ -495730,8 +467016,6 @@ }, "description": "2728, B\u00fcro m. Rechnerarbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.728", "maps": [], @@ -495764,8 +467048,6 @@ }, "description": "2728N, Installationsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.728N", "maps": [], @@ -495798,8 +467080,6 @@ }, "description": "2729, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.729", "maps": [], @@ -495832,8 +467112,6 @@ }, "description": "2730, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.730", "maps": [], @@ -495866,8 +467144,6 @@ }, "description": "2731, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.731", "maps": [], @@ -495900,8 +467176,6 @@ }, "description": "2732, B\u00fcro m. Rechnerarbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.732", "maps": [], @@ -495934,8 +467208,6 @@ }, "description": "2733, B\u00fcro m. Rechnerarbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.733", "maps": [], @@ -495968,8 +467240,6 @@ }, "description": "2733m, Foyer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.733M", "maps": [], @@ -496002,8 +467272,6 @@ }, "description": "2734, B\u00fcro m. Rechnerarbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.734", "maps": [], @@ -496036,8 +467304,6 @@ }, "description": "2735, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.735", "maps": [], @@ -496070,8 +467336,6 @@ }, "description": "2735M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.735M", "maps": [], @@ -496104,8 +467368,6 @@ }, "description": "2736, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.736", "maps": [], @@ -496138,8 +467400,6 @@ }, "description": "2737, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.737", "maps": [], @@ -496172,8 +467432,6 @@ }, "description": "2760, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.760", "maps": [], @@ -496206,8 +467464,6 @@ }, "description": "2798a, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.798A", "maps": [], @@ -496240,8 +467496,6 @@ }, "description": "2798b, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.798B", "maps": [], @@ -496274,8 +467528,6 @@ }, "description": "2798c, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.798C", "maps": [], @@ -496308,8 +467560,6 @@ }, "description": "2798D, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.798D", "maps": [], @@ -496342,8 +467592,6 @@ }, "description": "2798e, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.798E", "maps": [], @@ -496376,8 +467624,6 @@ }, "description": "2798f, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.798F", "maps": [], @@ -496410,8 +467656,6 @@ }, "description": "2798g, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.798G", "maps": [], @@ -496444,8 +467688,6 @@ }, "description": "2798h, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.798H", "maps": [], @@ -496478,8 +467720,6 @@ }, "description": "2798i, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.798I", "maps": [], @@ -496512,8 +467752,6 @@ }, "description": "2798j, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.798J", "maps": [], @@ -496546,8 +467784,6 @@ }, "description": "2798k, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.798K", "maps": [], @@ -496580,8 +467816,6 @@ }, "description": "2798l, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.798L", "maps": [], @@ -496614,8 +467848,6 @@ }, "description": "2798m, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.798M", "maps": [], @@ -496648,8 +467880,6 @@ }, "description": "2799A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.799A", "maps": [], @@ -496682,8 +467912,6 @@ }, "description": "2799D, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.799D", "maps": [], @@ -496716,8 +467944,6 @@ }, "description": "2799F, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.799F", "maps": [], @@ -496750,8 +467976,6 @@ }, "description": "2799f, Archiv", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.799G", "maps": [], @@ -496784,8 +468008,6 @@ }, "description": "2799I, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.799I", "maps": [], @@ -496818,8 +468040,6 @@ }, "description": "2799J, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.799J", "maps": [], @@ -496852,8 +468072,6 @@ }, "description": "2799M, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.799M", "maps": [], @@ -496886,8 +468104,6 @@ }, "description": "2799N, Durchgang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.799N", "maps": [], @@ -496920,8 +468136,6 @@ }, "description": "2799P, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.799P", "maps": [], @@ -496954,8 +468168,6 @@ }, "description": "2799Q, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.799Q", "maps": [], @@ -496988,8 +468200,6 @@ }, "description": "2799R, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5507.02.799R", "maps": [], @@ -497022,8 +468232,6 @@ }, "description": "3701, Studenten Arbeitsplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.701", "maps": [], @@ -497056,8 +468264,6 @@ }, "description": "3702, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.702", "maps": [], @@ -497090,8 +468296,6 @@ }, "description": "3702A, Sonst.Betriebst.Anlagen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.702A", "maps": [], @@ -497124,8 +468328,6 @@ }, "description": "3703, Gast/Lehrbeauftragter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.703", "maps": [], @@ -497158,8 +468360,6 @@ }, "description": "3703M, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.703M", "maps": [], @@ -497192,8 +468392,6 @@ }, "description": "3703N, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.703N", "maps": [], @@ -497226,8 +468424,6 @@ }, "description": "3703P, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.703P", "maps": [], @@ -497260,8 +468456,6 @@ }, "description": "3703Q, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.703Q", "maps": [], @@ -497294,8 +468488,6 @@ }, "description": "3704, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.704", "maps": [], @@ -497328,8 +468520,6 @@ }, "description": "3705, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.705", "maps": [], @@ -497362,8 +468552,6 @@ }, "description": "3706, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.706", "maps": [], @@ -497396,8 +468584,6 @@ }, "description": "3707, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.707", "maps": [], @@ -497430,8 +468616,6 @@ }, "description": "3707m, DV-Druckerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.707M", "maps": [], @@ -497464,8 +468648,6 @@ }, "description": "3707n, Rechnerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.707N", "maps": [], @@ -497498,8 +468680,6 @@ }, "description": "3708, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.708", "maps": [], @@ -497532,8 +468712,6 @@ }, "description": "3708m, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.708M", "maps": [], @@ -497566,8 +468744,6 @@ }, "description": "3709, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.709", "maps": [], @@ -497600,8 +468776,6 @@ }, "description": "3710, Chemielabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.710", "maps": [], @@ -497634,8 +468808,6 @@ }, "description": "3711, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.711", "maps": [], @@ -497668,8 +468840,6 @@ }, "description": "3712, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.712", "maps": [], @@ -497702,8 +468872,6 @@ }, "description": "3712a, Lager Elektronik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.712A", "maps": [], @@ -497736,8 +468904,6 @@ }, "description": "3713, Archiv", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.713", "maps": [], @@ -497770,8 +468936,6 @@ }, "description": "3725, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.725", "maps": [], @@ -497804,8 +468968,6 @@ }, "description": "3726, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.726", "maps": [], @@ -497838,8 +469000,6 @@ }, "description": "3727, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.727", "maps": [], @@ -497872,8 +469032,6 @@ }, "description": "3727M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.727M", "maps": [], @@ -497906,8 +469064,6 @@ }, "description": "3727N, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.727N", "maps": [], @@ -497940,8 +469096,6 @@ }, "description": "3728, Lehrbeauftragter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.728", "maps": [], @@ -497974,8 +469128,6 @@ }, "description": "3728M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.728M", "maps": [], @@ -498008,8 +469160,6 @@ }, "description": "3729, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.729", "maps": [], @@ -498042,8 +469192,6 @@ }, "description": "3730, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.730", "maps": [], @@ -498076,8 +469224,6 @@ }, "description": "3730m, DV-Arbeitspl\u00e4tze", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.730M", "maps": [], @@ -498110,8 +469256,6 @@ }, "description": "3731, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.731", "maps": [], @@ -498144,8 +469288,6 @@ }, "description": "3732, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.732", "maps": [], @@ -498178,8 +469320,6 @@ }, "description": "3733, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.733", "maps": [], @@ -498212,8 +469352,6 @@ }, "description": "3734, Emeritus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.734", "maps": [], @@ -498246,8 +469384,6 @@ }, "description": "3734M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.734M", "maps": [], @@ -498280,8 +469416,6 @@ }, "description": "3735, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.735", "maps": [], @@ -498314,8 +469448,6 @@ }, "description": "3736, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.736", "maps": [], @@ -498348,8 +469480,6 @@ }, "description": "3737, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.737", "maps": [], @@ -498382,8 +469512,6 @@ }, "description": "3798b, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.798B", "maps": [], @@ -498416,8 +469544,6 @@ }, "description": "3798c, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.798C", "maps": [], @@ -498450,8 +469576,6 @@ }, "description": "3798d, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.798D", "maps": [], @@ -498484,8 +469608,6 @@ }, "description": "3798e, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.798E", "maps": [], @@ -498518,8 +469640,6 @@ }, "description": "3798f, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.798F", "maps": [], @@ -498552,8 +469672,6 @@ }, "description": "3798g, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.798G", "maps": [], @@ -498586,8 +469704,6 @@ }, "description": "3798h, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.798H", "maps": [], @@ -498620,8 +469736,6 @@ }, "description": "3798i, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.798I", "maps": [], @@ -498654,8 +469768,6 @@ }, "description": "3798j, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.798J", "maps": [], @@ -498688,8 +469800,6 @@ }, "description": "3798k, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.798K", "maps": [], @@ -498722,8 +469832,6 @@ }, "description": "3798l, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.798L", "maps": [], @@ -498756,8 +469864,6 @@ }, "description": "3798m, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.798M", "maps": [], @@ -498790,8 +469896,6 @@ }, "description": "3798n, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.798N", "maps": [], @@ -498824,8 +469928,6 @@ }, "description": "3798o, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.798O", "maps": [], @@ -498858,8 +469960,6 @@ }, "description": "3799A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.799A", "maps": [], @@ -498892,8 +469992,6 @@ }, "description": "3799B, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.799B", "maps": [], @@ -498926,8 +470024,6 @@ }, "description": "3799C, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.799C", "maps": [], @@ -498960,8 +470056,6 @@ }, "description": "3799D, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.799D", "maps": [], @@ -498994,8 +470088,6 @@ }, "description": "3799E, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.799E", "maps": [], @@ -499028,8 +470120,6 @@ }, "description": "3799F, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.799F", "maps": [], @@ -499062,8 +470152,6 @@ }, "description": "3799G, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.799G", "maps": [], @@ -499096,8 +470184,6 @@ }, "description": "3799H, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.799H", "maps": [], @@ -499130,8 +470216,6 @@ }, "description": "3799I, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5507.03.799I", "maps": [], @@ -499164,8 +470248,6 @@ }, "description": "4703m, Foto/Bioreatoren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5507.04.703M", "maps": [], @@ -499198,8 +470280,6 @@ }, "description": "4703N, Fotovoltaik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5507.04.703N", "maps": [], @@ -499232,8 +470312,6 @@ }, "description": "4703O, Fotovoltaik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5507.04.703O", "maps": [], @@ -499266,8 +470344,6 @@ }, "description": "4703P, Sonst.Betriebst.Anlagen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5507.04.703P", "maps": [], @@ -499300,8 +470376,6 @@ }, "description": "4798b, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5507.04.798B", "maps": [], @@ -499334,8 +470408,6 @@ }, "description": "4798m, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5507.04.798M", "maps": [], @@ -499368,8 +470440,6 @@ }, "description": "4798n, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5507.04.798N", "maps": [], @@ -499402,8 +470472,6 @@ }, "description": "4799D, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5507.04.799D", "maps": [], @@ -499436,8 +470504,6 @@ }, "description": "0701A, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.701A", "maps": [], @@ -499470,8 +470536,6 @@ }, "description": "0701B, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.701B", "maps": [], @@ -499504,8 +470568,6 @@ }, "description": "0701C, Beh.-WC / Wickeltisch", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.701C", "maps": [], @@ -499538,8 +470600,6 @@ }, "description": "0701D, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.701D", "maps": [], @@ -499572,8 +470632,6 @@ }, "description": "0701E, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.701E", "maps": [], @@ -499606,8 +470664,6 @@ }, "description": "0702, Wissenschaftliche Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.702", "maps": [], @@ -499640,8 +470696,6 @@ }, "description": "0703, Wissenschaftliche Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.703", "maps": [], @@ -499674,8 +470728,6 @@ }, "description": "0703m, Vorraum WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.703M", "maps": [], @@ -499708,8 +470760,6 @@ }, "description": "0703n, Vorraum WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.703N", "maps": [], @@ -499742,8 +470792,6 @@ }, "description": "0703p, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.703P", "maps": [], @@ -499776,8 +470824,6 @@ }, "description": "0703q, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.703Q", "maps": [], @@ -499810,8 +470856,6 @@ }, "description": "0704, Computer Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.704", "maps": [], @@ -499844,8 +470888,6 @@ }, "description": "0704m, Labor Str\u00f6mungssieden", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.704M", "maps": [], @@ -499878,8 +470920,6 @@ }, "description": "0704n, Optik und Laser Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.704N", "maps": [], @@ -499912,8 +470952,6 @@ }, "description": "0705, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.705", "maps": [], @@ -499946,8 +470984,6 @@ }, "description": "0705m, Ger\u00e4telager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.705M", "maps": [], @@ -499980,8 +471016,6 @@ }, "description": "0706, Wissenschaftliche Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.706", "maps": [], @@ -500014,8 +471048,6 @@ }, "description": "0706m, Aufenthaltsraum m. Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.706M", "maps": [], @@ -500048,8 +471080,6 @@ }, "description": "0707, Wissenschaftliche Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.707", "maps": [], @@ -500082,8 +471112,6 @@ }, "description": "0708, M\u00fcllraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.708", "maps": [], @@ -500116,8 +471144,6 @@ }, "description": "0725, Wissenschaftliche Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.725", "maps": [], @@ -500150,8 +471176,6 @@ }, "description": "0725M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.725M", "maps": [], @@ -500184,8 +471208,6 @@ }, "description": "0725N, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.725N", "maps": [], @@ -500218,8 +471240,6 @@ }, "description": "0725S, Hebeb\u00fchne", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.725S", "maps": [], @@ -500252,8 +471272,6 @@ }, "description": "0725T, Fahrzeugverkehrsfl\u00e4che", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.725T", "maps": [], @@ -500286,8 +471304,6 @@ }, "description": "0726, Wissenschaftliche Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.726", "maps": [], @@ -500320,8 +471336,6 @@ }, "description": "0727, Wissenschaftliche Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.727", "maps": [], @@ -500354,8 +471368,6 @@ }, "description": "0727M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.727M", "maps": [], @@ -500388,8 +471400,6 @@ }, "description": "0728, Wissenschaftliche Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.728", "maps": [], @@ -500422,8 +471432,6 @@ }, "description": "0729, Wissenschaftliche Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.729", "maps": [], @@ -500456,8 +471464,6 @@ }, "description": "0730, Wissenschaftliche Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.730", "maps": [], @@ -500490,8 +471496,6 @@ }, "description": "0731, Wissenschaftliche Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.731", "maps": [], @@ -500524,8 +471528,6 @@ }, "description": "0732, Wissenschaftliche Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.732", "maps": [], @@ -500558,8 +471560,6 @@ }, "description": "0733, Wissenschaftliche Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.733", "maps": [], @@ -500592,8 +471592,6 @@ }, "description": "0733M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.733M", "maps": [], @@ -500626,8 +471624,6 @@ }, "description": "0734, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.734", "maps": [], @@ -500660,8 +471656,6 @@ }, "description": "0735, Wissenschaftliche Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.735", "maps": [], @@ -500694,8 +471688,6 @@ }, "description": "0736, Wissenschaftliche Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.736", "maps": [], @@ -500728,8 +471720,6 @@ }, "description": "0760, Phsik Labor Optik.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.760", "maps": [], @@ -500762,8 +471752,6 @@ }, "description": "0760p, Trafo", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.760P", "maps": [], @@ -500796,8 +471784,6 @@ }, "description": "0760Q, Fernmeldetechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.760Q", "maps": [], @@ -500830,8 +471816,6 @@ }, "description": "0761, Phsik Labor Optik.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.761", "maps": [], @@ -500864,8 +471848,6 @@ }, "description": "0761m, Schwei\u00dfraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.761M", "maps": [], @@ -500898,8 +471880,6 @@ }, "description": "0761n, R\u00fcstraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.761N", "maps": [], @@ -500932,8 +471912,6 @@ }, "description": "0762, Phsik Labor Optik.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.762", "maps": [], @@ -500966,8 +471944,6 @@ }, "description": "0790, Verkehrsfl\u00e4che", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.790", "maps": [], @@ -501000,8 +471976,6 @@ }, "description": "0790a, Technische Funktionsfl\u00e4che", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.790A", "maps": [], @@ -501034,8 +472008,6 @@ }, "description": "0790b, Lager Halbzeuge", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.790B", "maps": [], @@ -501068,8 +472040,6 @@ }, "description": "0790c, Lager Material", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.790C", "maps": [], @@ -501102,8 +472072,6 @@ }, "description": "0790d, Grobmechanische Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.790D", "maps": [], @@ -501136,8 +472104,6 @@ }, "description": "0790e, Grobmechanische Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.790E", "maps": [], @@ -501170,8 +472136,6 @@ }, "description": "0790f, Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.790F", "maps": [], @@ -501204,8 +472168,6 @@ }, "description": "0790G, Lager Ger\u00e4te/ Material", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.790G", "maps": [], @@ -501238,8 +472200,6 @@ }, "description": "0790R, Einzelumkleideraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.790R", "maps": [], @@ -501272,8 +472232,6 @@ }, "description": "0790S, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.790S", "maps": [], @@ -501306,8 +472264,6 @@ }, "description": "0790T, Einzelumkleideraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.790T", "maps": [], @@ -501340,8 +472296,6 @@ }, "description": "0790U, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.790U", "maps": [], @@ -501374,8 +472328,6 @@ }, "description": "0798b, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.798B", "maps": [], @@ -501408,8 +472360,6 @@ }, "description": "0798C, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.798C", "maps": [], @@ -501442,8 +472392,6 @@ }, "description": "0798d, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.798D", "maps": [], @@ -501476,8 +472424,6 @@ }, "description": "0798E, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.798E", "maps": [], @@ -501510,8 +472456,6 @@ }, "description": "0798f, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.798F", "maps": [], @@ -501544,8 +472488,6 @@ }, "description": "0798g, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.798G", "maps": [], @@ -501578,8 +472520,6 @@ }, "description": "0798h, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.798H", "maps": [], @@ -501612,8 +472552,6 @@ }, "description": "0798i, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.798I", "maps": [], @@ -501646,8 +472584,6 @@ }, "description": "0798j, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.798J", "maps": [], @@ -501680,8 +472616,6 @@ }, "description": "0798K, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.798K", "maps": [], @@ -501714,8 +472648,6 @@ }, "description": "0798l, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.798L", "maps": [], @@ -501748,8 +472680,6 @@ }, "description": "0798m, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.798M", "maps": [], @@ -501782,8 +472712,6 @@ }, "description": "0798n, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.798N", "maps": [], @@ -501816,8 +472744,6 @@ }, "description": "0798o, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.798O", "maps": [], @@ -501850,8 +472776,6 @@ }, "description": "0798p, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.798P", "maps": [], @@ -501884,8 +472808,6 @@ }, "description": "0798q, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.798Q", "maps": [], @@ -501918,8 +472840,6 @@ }, "description": "0798r, Trafo", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.798R", "maps": [], @@ -501952,8 +472872,6 @@ }, "description": "0798s, Trafo", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.798S", "maps": [], @@ -501986,8 +472904,6 @@ }, "description": "0798t, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.798T", "maps": [], @@ -502020,8 +472936,6 @@ }, "description": "0799A, MW 7 Innenhof", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.799A", "maps": [], @@ -502054,8 +472968,6 @@ }, "description": "0799B, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.799B", "maps": [], @@ -502088,8 +473000,6 @@ }, "description": "0799D, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.799D", "maps": [], @@ -502122,8 +473032,6 @@ }, "description": "0799E, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.799E", "maps": [], @@ -502156,8 +473064,6 @@ }, "description": "0799F, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.799F", "maps": [], @@ -502190,8 +473096,6 @@ }, "description": "0799G, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.799G", "maps": [], @@ -502224,8 +473128,6 @@ }, "description": "0799I, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.799I", "maps": [], @@ -502258,8 +473160,6 @@ }, "description": "0799J, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.799J", "maps": [], @@ -502292,8 +473192,6 @@ }, "description": "0799K, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.799K", "maps": [], @@ -502326,8 +473224,6 @@ }, "description": "0799O, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.799O", "maps": [], @@ -502360,8 +473256,6 @@ }, "description": "0799R, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.799R", "maps": [], @@ -502394,8 +473288,6 @@ }, "description": "0799S, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.799S", "maps": [], @@ -502428,8 +473320,6 @@ }, "description": "0799T, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.799T", "maps": [], @@ -502462,8 +473352,6 @@ }, "description": "0799X, VIAX-Photo Voltaik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5507.EG.799X", "maps": [], @@ -502496,8 +473384,6 @@ }, "description": "U701, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5507.U1.701", "maps": [], @@ -502530,8 +473416,6 @@ }, "description": "U701m, Mittelspannung Hauptverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5507.U1.701M", "maps": [], @@ -502564,8 +473448,6 @@ }, "description": "U701n, Mittelspannung Hauptverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5507.U1.701N", "maps": [], @@ -502598,8 +473480,6 @@ }, "description": "U701o, Batterieraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5507.U1.701O", "maps": [], @@ -502632,8 +473512,6 @@ }, "description": "U702, Installationkeller", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5507.U1.702", "maps": [], @@ -502666,8 +473544,6 @@ }, "description": "U702A, Install.schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5507.U1.702A", "maps": [], @@ -502700,8 +473576,6 @@ }, "description": "U703M, Lager-Hausmaterialien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5507.U1.703M", "maps": [], @@ -502734,8 +473608,6 @@ }, "description": "U703N, Maschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5507.U1.703N", "maps": [], @@ -502768,8 +473640,6 @@ }, "description": "U725, Netz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5507.U1.725", "maps": [], @@ -502802,8 +473672,6 @@ }, "description": "U726n, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5507.U1.726", "maps": [], @@ -502836,8 +473704,6 @@ }, "description": "U726M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5507.U1.726M", "maps": [], @@ -502870,8 +473736,6 @@ }, "description": "U726n, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5507.U1.726N", "maps": [], @@ -502904,8 +473768,6 @@ }, "description": "U727, Feldmeldetechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5507.U1.727", "maps": [], @@ -502938,8 +473800,6 @@ }, "description": "U728, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5507.U1.728", "maps": [], @@ -502972,8 +473832,6 @@ }, "description": "U729, Reinigungsdienst", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5507.U1.729", "maps": [], @@ -503006,8 +473864,6 @@ }, "description": "U729M, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5507.U1.729M", "maps": [], @@ -503040,8 +473896,6 @@ }, "description": "U730, Trafo", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5507.U1.730", "maps": [], @@ -503074,8 +473928,6 @@ }, "description": "U731, Netz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5507.U1.731", "maps": [], @@ -503108,8 +473960,6 @@ }, "description": "U732, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5507.U1.732", "maps": [], @@ -503142,8 +473992,6 @@ }, "description": "U733, Feldmeldetechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5507.U1.733", "maps": [], @@ -503176,8 +474024,6 @@ }, "description": "U734, Batterieraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5507.U1.734", "maps": [], @@ -503210,8 +474056,6 @@ }, "description": "U798B, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5507.U1.798B", "maps": [], @@ -503244,8 +474088,6 @@ }, "description": "U798C, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5507.U1.798C", "maps": [], @@ -503278,8 +474120,6 @@ }, "description": "U798D, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5507.U1.798D", "maps": [], @@ -503312,8 +474152,6 @@ }, "description": "U798E, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5507.U1.798E", "maps": [], @@ -503346,8 +474184,6 @@ }, "description": "U798F, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5507.U1.798F", "maps": [], @@ -503380,8 +474216,6 @@ }, "description": "U798H, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5507.U1.798H", "maps": [], @@ -503414,8 +474248,6 @@ }, "description": "U798I, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5507.U1.798I", "maps": [], @@ -503448,8 +474280,6 @@ }, "description": "U798K, Aufzugs/F\u00f6rderanlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5507.U1.798K", "maps": [], @@ -503482,8 +474312,6 @@ }, "description": "U798L, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5507.U1.798L", "maps": [], @@ -503516,8 +474344,6 @@ }, "description": "U798M, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5507.U1.798M", "maps": [], @@ -503550,8 +474376,6 @@ }, "description": "U798N, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5507.U1.798N", "maps": [], @@ -503584,8 +474408,6 @@ }, "description": "U798O, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5507.U1.798O", "maps": [], @@ -503618,8 +474440,6 @@ }, "description": "U799A, Installationskeller", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5507.U1.799A", "maps": [], @@ -503652,8 +474472,6 @@ }, "description": "U799B, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5507.U1.799B", "maps": [], @@ -503686,8 +474504,6 @@ }, "description": "U799D, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5507.U1.799C", "maps": [], @@ -503720,8 +474536,6 @@ }, "description": "U799F, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5507.U1.799F", "maps": [], @@ -503754,8 +474568,6 @@ }, "description": "U799G, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5507.U1.799G", "maps": [], @@ -503788,8 +474600,6 @@ }, "description": "U799H, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5507.U1.799H", "maps": [], @@ -503822,8 +474632,6 @@ }, "description": "U799I, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5507.U1.799I", "maps": [], @@ -503856,8 +474664,6 @@ }, "description": "U799J, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5507.U1.799J", "maps": [], @@ -503890,8 +474696,6 @@ }, "description": "U799K, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5507.U1.799K", "maps": [], @@ -503924,8 +474728,6 @@ }, "description": "U799Q, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5507.U1.799Q", "maps": [], @@ -503958,8 +474760,6 @@ }, "description": "U799Z, Installationsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5507.U1.799Z", "maps": [], @@ -503992,8 +474792,6 @@ }, "description": "MW 1801a, Vorbereitung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5508.01.801A", "maps": [], @@ -504026,8 +474824,6 @@ }, "description": "1802, NS UV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5508.01.802", "maps": [], @@ -504060,8 +474856,6 @@ }, "description": "MW 1803, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5508.01.803", "maps": [], @@ -504094,8 +474888,6 @@ }, "description": "1804, Installationsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5508.01.804", "maps": [], @@ -504128,8 +474920,6 @@ }, "description": "MW 1899a, Foyer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5508.01.899A", "maps": [], @@ -504162,8 +474952,6 @@ }, "description": "1899B, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5508.01.899B", "maps": [], @@ -504279,8 +475067,6 @@ }, "description": "2803, Sonst. TB-Anl.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5508.02.803", "maps": [], @@ -504313,8 +475099,6 @@ }, "description": "2899B, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5508.02.899B", "maps": [], @@ -504347,8 +475131,6 @@ }, "description": "0801, Speisesaal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5508.EG.801", "maps": [], @@ -504381,8 +475163,6 @@ }, "description": "0801a, Relaisk\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5508.EG.801A", "maps": [], @@ -504415,8 +475195,6 @@ }, "description": "0801b, Sp\u00fclk\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5508.EG.801B", "maps": [], @@ -504449,8 +475227,6 @@ }, "description": "0801c, Eingangsbereich", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5508.EG.801C", "maps": [], @@ -504483,8 +475259,6 @@ }, "description": "0801d, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5508.EG.801D", "maps": [], @@ -504517,8 +475291,6 @@ }, "description": "0802, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5508.EG.802", "maps": [], @@ -504551,8 +475323,6 @@ }, "description": "0803, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5508.EG.803", "maps": [], @@ -504585,8 +475355,6 @@ }, "description": "0804, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5508.EG.804", "maps": [], @@ -504619,8 +475387,6 @@ }, "description": "0805, B\u00fcro Hausmeister", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5508.EG.805", "maps": [], @@ -504653,8 +475419,6 @@ }, "description": "0806, Reinigungsdienst", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5508.EG.806", "maps": [], @@ -504687,8 +475451,6 @@ }, "description": "0807, Liegeraum/Erste Hilfe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5508.EG.807", "maps": [], @@ -504721,8 +475483,6 @@ }, "description": "0808, \u00dcbung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5508.EG.808", "maps": [], @@ -504755,8 +475515,6 @@ }, "description": "0810, M\u00fcllzwischenlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5508.EG.810", "maps": [], @@ -504789,8 +475547,6 @@ }, "description": "0810m, K\u00fchlraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5508.EG.810M", "maps": [], @@ -504823,8 +475579,6 @@ }, "description": "0810n, K\u00fchlraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5508.EG.810N", "maps": [], @@ -504857,8 +475611,6 @@ }, "description": "0811, Warenzwischenlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5508.EG.811", "maps": [], @@ -504891,8 +475643,6 @@ }, "description": "0811m, Trockenlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5508.EG.811M", "maps": [], @@ -504925,8 +475675,6 @@ }, "description": "0812, Aufenthalt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5508.EG.812", "maps": [], @@ -504959,8 +475707,6 @@ }, "description": "0813, Umkleide / WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5508.EG.813", "maps": [], @@ -504993,8 +475739,6 @@ }, "description": "0814, Umkleide / WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5508.EG.814", "maps": [], @@ -505027,8 +475771,6 @@ }, "description": "0814A, Duschraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5508.EG.814A", "maps": [], @@ -505061,8 +475803,6 @@ }, "description": "0814B, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5508.EG.814B", "maps": [], @@ -505095,8 +475835,6 @@ }, "description": "0899A, Windfang West Cafeteria", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5508.EG.899A", "maps": [], @@ -505129,8 +475867,6 @@ }, "description": "0899b, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5508.EG.899B", "maps": [], @@ -505163,8 +475899,6 @@ }, "description": "0899C, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5508.EG.899C", "maps": [], @@ -505197,8 +475931,6 @@ }, "description": "0899d, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5508.EG.899D", "maps": [], @@ -505231,8 +475963,6 @@ }, "description": "0899E, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5508.EG.899E", "maps": [], @@ -505265,8 +475995,6 @@ }, "description": "0899F, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5508.EG.899F", "maps": [], @@ -505299,8 +476027,6 @@ }, "description": "0899G, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5508.EG.899G", "maps": [], @@ -505333,8 +476059,6 @@ }, "description": "0899K, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5508.EG.899K", "maps": [], @@ -505367,8 +476091,6 @@ }, "description": "U801, Wasser / Abwasser / Luft", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5508.U1.801", "maps": [], @@ -505401,8 +476123,6 @@ }, "description": "U802, Raumlufttechnische Anlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5508.U1.802", "maps": [], @@ -505435,8 +476155,6 @@ }, "description": "U899E, Kinderwagen / Garderobe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5508.U1.899E", "maps": [], @@ -505469,8 +476187,6 @@ }, "description": "U899F, Studentenwerk / Kindergarten", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5508.U1.899F", "maps": [], @@ -505503,8 +476219,6 @@ }, "description": "1901, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5509.01.901", "maps": [], @@ -505537,8 +476251,6 @@ }, "description": "1902, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5509.01.902", "maps": [], @@ -505571,8 +476283,6 @@ }, "description": "1903, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5509.01.903", "maps": [], @@ -505605,8 +476315,6 @@ }, "description": "1904, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5509.01.904", "maps": [], @@ -505639,8 +476347,6 @@ }, "description": "1905, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5509.01.905", "maps": [], @@ -505673,8 +476379,6 @@ }, "description": "1906, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5509.01.906", "maps": [], @@ -505707,8 +476411,6 @@ }, "description": "1907, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5509.01.907", "maps": [], @@ -505741,8 +476443,6 @@ }, "description": "1908, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5509.01.908", "maps": [], @@ -505775,8 +476475,6 @@ }, "description": "2902, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5509.02.902", "maps": [], @@ -505809,8 +476507,6 @@ }, "description": "2906, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5509.02.906", "maps": [], @@ -505843,8 +476539,6 @@ }, "description": "2907, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5509.02.907", "maps": [], @@ -505877,8 +476571,6 @@ }, "description": "2908, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5509.02.908", "maps": [], @@ -505911,8 +476603,6 @@ }, "description": "2909, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5509.02.909", "maps": [], @@ -505945,8 +476635,6 @@ }, "description": "2910, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5509.02.910", "maps": [], @@ -505979,8 +476667,6 @@ }, "description": "2911, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5509.02.911", "maps": [], @@ -506013,8 +476699,6 @@ }, "description": "3901, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5509.03.901", "maps": [], @@ -506047,8 +476731,6 @@ }, "description": "3902, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5509.03.902", "maps": [], @@ -506081,8 +476763,6 @@ }, "description": "3903, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5509.03.903", "maps": [], @@ -506115,8 +476795,6 @@ }, "description": "3904, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5509.03.904", "maps": [], @@ -506149,8 +476827,6 @@ }, "description": "3905, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5509.03.905", "maps": [], @@ -506183,8 +476859,6 @@ }, "description": "3906, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5509.03.906", "maps": [], @@ -506217,8 +476891,6 @@ }, "description": "3907, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5509.03.907", "maps": [], @@ -506251,8 +476923,6 @@ }, "description": "3908, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5509.03.908", "maps": [], @@ -506285,8 +476955,6 @@ }, "description": "3910, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5509.03.910", "maps": [], @@ -506319,8 +476987,6 @@ }, "description": "MW 1002, Vorbereitung 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5510.01.002", "maps": [], @@ -506353,8 +477019,6 @@ }, "description": "MW 1003, Vorbereitung 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5510.01.003", "maps": [], @@ -506387,8 +477051,6 @@ }, "description": "MW 1004, Sammlung Physik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5510.01.004", "maps": [], @@ -506421,8 +477083,6 @@ }, "description": "1005, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5510.01.005", "maps": [], @@ -506455,8 +477115,6 @@ }, "description": "1010, Unterricht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5510.01.010", "maps": [], @@ -506489,8 +477147,6 @@ }, "description": "1011, Dozentenzimmer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5510.01.011", "maps": [], @@ -506523,8 +477179,6 @@ }, "description": "1012, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5510.01.012", "maps": [], @@ -506557,8 +477211,6 @@ }, "description": "1013, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5510.01.013", "maps": [], @@ -506591,8 +477243,6 @@ }, "description": "1014, Sozialraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5510.01.014", "maps": [], @@ -506625,8 +477275,6 @@ }, "description": "1014M, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5510.01.014M", "maps": [], @@ -506659,8 +477307,6 @@ }, "description": "1014N, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5510.01.014N", "maps": [], @@ -506693,8 +477339,6 @@ }, "description": "1015, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5510.01.015", "maps": [], @@ -506727,8 +477371,6 @@ }, "description": "1016/1017, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5510.01.016", "maps": [], @@ -506761,8 +477403,6 @@ }, "description": "1017m, Elektrische Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5510.01.017M", "maps": [], @@ -506795,8 +477435,6 @@ }, "description": "1018, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5510.01.018", "maps": [], @@ -506829,8 +477467,6 @@ }, "description": "1018M, Fernmeldetechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5510.01.018M", "maps": [], @@ -506863,8 +477499,6 @@ }, "description": "1018N, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5510.01.018N", "maps": [], @@ -506897,8 +477531,6 @@ }, "description": "1025h, Lesesaal/Monographien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5510.01.025H", "maps": [], @@ -507001,8 +477633,6 @@ }, "description": "1098a, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5510.01.098A", "maps": [], @@ -507035,8 +477665,6 @@ }, "description": "1098b, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5510.01.098B", "maps": [], @@ -507069,8 +477697,6 @@ }, "description": "1098c, Lastenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5510.01.098C", "maps": [], @@ -507103,8 +477729,6 @@ }, "description": "1098h, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5510.01.098H", "maps": [], @@ -507137,8 +477761,6 @@ }, "description": "1098i, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5510.01.098I", "maps": [], @@ -507171,8 +477793,6 @@ }, "description": "1098J, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5510.01.098J", "maps": [], @@ -507205,8 +477825,6 @@ }, "description": "1098k, Lastenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5510.01.098K", "maps": [], @@ -507239,8 +477857,6 @@ }, "description": "1098l, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5510.01.098L", "maps": [], @@ -507273,8 +477889,6 @@ }, "description": "1098m, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5510.01.098M", "maps": [], @@ -507307,8 +477921,6 @@ }, "description": "1098p, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5510.01.098P", "maps": [], @@ -507341,8 +477953,6 @@ }, "description": "1099A, Flur/Galerie/Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5510.01.099A", "maps": [], @@ -507375,8 +477985,6 @@ }, "description": "1099E, Galerie/Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5510.01.099B", "maps": [], @@ -507409,8 +478017,6 @@ }, "description": "1099C, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5510.01.099C", "maps": [], @@ -507443,8 +478049,6 @@ }, "description": "1099D, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5510.01.099D", "maps": [], @@ -507477,8 +478081,6 @@ }, "description": "1099F, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5510.01.099F", "maps": [], @@ -507511,8 +478113,6 @@ }, "description": "1099G, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5510.01.099G", "maps": [], @@ -507545,8 +478145,6 @@ }, "description": "1099H, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5510.01.099H", "maps": [], @@ -507579,8 +478177,6 @@ }, "description": "1099I, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5510.01.099I", "maps": [], @@ -507613,8 +478209,6 @@ }, "description": "1099J, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5510.01.099J", "maps": [], @@ -507647,8 +478241,6 @@ }, "description": "1099K, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5510.01.099K", "maps": [], @@ -507681,8 +478273,6 @@ }, "description": "1099L, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5510.01.099L", "maps": [], @@ -507715,8 +478305,6 @@ }, "description": "1099M, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5510.01.099M", "maps": [], @@ -507749,8 +478337,6 @@ }, "description": "1099N, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5510.01.099N", "maps": [], @@ -507783,8 +478369,6 @@ }, "description": "1099Q, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5510.01.099Q", "maps": [], @@ -507817,8 +478401,6 @@ }, "description": "1099T, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5510.01.099T", "maps": [], @@ -507851,8 +478433,6 @@ }, "description": "1099X, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5510.01.099X", "maps": [], @@ -507965,8 +478545,6 @@ }, "description": "2002, Bedienungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5510.02.002", "maps": [], @@ -507999,8 +478577,6 @@ }, "description": "2010, Dekanatssaal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5510.02.010", "maps": [], @@ -508033,8 +478609,6 @@ }, "description": "2011, Leitung Zentrale Lehre", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5510.02.011", "maps": [], @@ -508067,8 +478641,6 @@ }, "description": "2012, Leitung Studienb\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5510.02.012", "maps": [], @@ -508101,8 +478673,6 @@ }, "description": "2013, It-Administration", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5510.02.013", "maps": [], @@ -508135,8 +478705,6 @@ }, "description": "2014, Gesch\u00e4ftsf\u00fchrung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5510.02.014", "maps": [], @@ -508169,8 +478737,6 @@ }, "description": "2015, Akad. Angelegenheiten", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5510.02.015", "maps": [], @@ -508203,8 +478769,6 @@ }, "description": "2015m, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5510.02.015M", "maps": [], @@ -508237,8 +478801,6 @@ }, "description": "2015n, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5510.02.015N", "maps": [], @@ -508271,8 +478833,6 @@ }, "description": "2015q, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5510.02.015O", "maps": [], @@ -508305,8 +478865,6 @@ }, "description": "2016, Controlling", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5510.02.016", "maps": [], @@ -508339,8 +478897,6 @@ }, "description": "2017, Gesch\u00e4ftsf\u00fchrung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5510.02.017", "maps": [], @@ -508373,8 +478929,6 @@ }, "description": "2019, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5510.02.019", "maps": [], @@ -508407,8 +478961,6 @@ }, "description": "2019m, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5510.02.019M", "maps": [], @@ -508441,8 +478993,6 @@ }, "description": "2019n, Nebenraum zu 2019m", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5510.02.019N", "maps": [], @@ -508475,8 +479025,6 @@ }, "description": "2020, Dekan", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5510.02.020", "maps": [], @@ -508509,8 +479057,6 @@ }, "description": "2020m, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5510.02.020M", "maps": [], @@ -508543,8 +479089,6 @@ }, "description": "2020n, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5510.02.020N", "maps": [], @@ -508577,8 +479121,6 @@ }, "description": "2025, Lesesall/Monograpien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5510.02.025", "maps": [], @@ -508681,8 +479223,6 @@ }, "description": "2098a, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5510.02.098A", "maps": [], @@ -508715,8 +479255,6 @@ }, "description": "2098b, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5510.02.098B", "maps": [], @@ -508749,8 +479287,6 @@ }, "description": "2098c, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5510.02.098C", "maps": [], @@ -508783,8 +479319,6 @@ }, "description": "2098i, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5510.02.098I", "maps": [], @@ -508817,8 +479351,6 @@ }, "description": "2098j, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5510.02.098J", "maps": [], @@ -508851,8 +479383,6 @@ }, "description": "2098k, Lastenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5510.02.098K", "maps": [], @@ -508885,8 +479415,6 @@ }, "description": "2098m, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5510.02.098M", "maps": [], @@ -508919,8 +479447,6 @@ }, "description": "2099A, Galerie/Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5510.02.099A", "maps": [], @@ -508953,8 +479479,6 @@ }, "description": "2099B, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5510.02.099B", "maps": [], @@ -508987,8 +479511,6 @@ }, "description": "2099C, Wartezone Studienb\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5510.02.099C", "maps": [], @@ -509021,8 +479543,6 @@ }, "description": "2099D, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5510.02.099D", "maps": [], @@ -509055,8 +479575,6 @@ }, "description": "2099F, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5510.02.099F", "maps": [], @@ -509089,8 +479607,6 @@ }, "description": "2099H, Flur/Galerie/Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5510.02.099H", "maps": [], @@ -509123,8 +479639,6 @@ }, "description": "2099i, Zugang zu 2015m", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5510.02.099I", "maps": [], @@ -509157,8 +479671,6 @@ }, "description": "2099J, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5510.02.099J", "maps": [], @@ -509191,8 +479703,6 @@ }, "description": "2099M, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5510.02.099M", "maps": [], @@ -509225,8 +479735,6 @@ }, "description": "2099N, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5510.02.099N", "maps": [], @@ -509259,8 +479767,6 @@ }, "description": "2099o, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5510.02.099O", "maps": [], @@ -509293,8 +479799,6 @@ }, "description": "2099P, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5510.02.099P", "maps": [], @@ -509327,8 +479831,6 @@ }, "description": "2099Q, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5510.02.099Q", "maps": [], @@ -509361,8 +479863,6 @@ }, "description": "2902, Gruppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5510.02.902", "maps": [], @@ -509395,8 +479895,6 @@ }, "description": "2099, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5510.02.979", "maps": [], @@ -509429,8 +479927,6 @@ }, "description": "3001, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5510.03.001", "maps": [], @@ -509463,8 +479959,6 @@ }, "description": "3001A, Technik/Rolltor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5510.03.001A", "maps": [], @@ -509497,8 +479991,6 @@ }, "description": "3002, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5510.03.002", "maps": [ @@ -509543,8 +480035,6 @@ }, "description": "3003, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5510.03.003", "maps": [], @@ -509577,8 +480067,6 @@ }, "description": "3010, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5510.03.010", "maps": [], @@ -509611,8 +480099,6 @@ }, "description": "3011, Aufenthalt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5510.03.011", "maps": [], @@ -509645,8 +480131,6 @@ }, "description": "3012, Verteilerraum 5 m. Schaltraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5510.03.012", "maps": [], @@ -509679,8 +480163,6 @@ }, "description": "3013, Wachleiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5510.03.013", "maps": [], @@ -509713,8 +480195,6 @@ }, "description": "3014, Aufsicht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5510.03.014", "maps": [], @@ -509747,8 +480227,6 @@ }, "description": "3015, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5510.03.015", "maps": [], @@ -509781,8 +480259,6 @@ }, "description": "3015M, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5510.03.015M", "maps": [], @@ -509815,8 +480291,6 @@ }, "description": "3015N, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5510.03.015N", "maps": [], @@ -509849,8 +480323,6 @@ }, "description": "3015O, Umkleide-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5510.03.015O", "maps": [], @@ -509883,8 +480355,6 @@ }, "description": "3015P, Dusche Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5510.03.015P", "maps": [], @@ -509917,8 +480387,6 @@ }, "description": "3015Q, Umkleide", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5510.03.015Q", "maps": [], @@ -509951,8 +480419,6 @@ }, "description": "3015R, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5510.03.015R", "maps": [], @@ -509985,8 +480451,6 @@ }, "description": "3016, Sitzungssaal/Archiv", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5510.03.016", "maps": [], @@ -510019,8 +480483,6 @@ }, "description": "3016m, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5510.03.016M", "maps": [], @@ -510053,8 +480515,6 @@ }, "description": "3016N, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5510.03.016N", "maps": [], @@ -510087,8 +480547,6 @@ }, "description": "3016O, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5510.03.016O", "maps": [], @@ -510121,8 +480579,6 @@ }, "description": "3017, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5510.03.017", "maps": [], @@ -510155,8 +480611,6 @@ }, "description": "3018, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5510.03.018", "maps": [], @@ -510189,8 +480643,6 @@ }, "description": "3019, Vorsitzender", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5510.03.019", "maps": [], @@ -510223,8 +480675,6 @@ }, "description": "3019M, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5510.03.019M", "maps": [], @@ -510257,8 +480707,6 @@ }, "description": "3019n, Nebenraum zu 3019m", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5510.03.019N", "maps": [], @@ -510291,8 +480739,6 @@ }, "description": "3020, Vorstand", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5510.03.020", "maps": [], @@ -510325,8 +480771,6 @@ }, "description": "3098a, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5510.03.098A", "maps": [], @@ -510359,8 +480803,6 @@ }, "description": "3098b, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5510.03.098B", "maps": [], @@ -510393,8 +480835,6 @@ }, "description": "3098h, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5510.03.098H", "maps": [], @@ -510427,8 +480867,6 @@ }, "description": "3098I, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5510.03.098I", "maps": [], @@ -510461,8 +480899,6 @@ }, "description": "3098J, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5510.03.098J", "maps": [], @@ -510495,8 +480931,6 @@ }, "description": "3098k, Schleuse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5510.03.098K", "maps": [], @@ -510529,8 +480963,6 @@ }, "description": "3098m, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5510.03.098M", "maps": [], @@ -510563,8 +480995,6 @@ }, "description": "3099c, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5510.03.099C", "maps": [], @@ -510597,8 +481027,6 @@ }, "description": "3099f, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5510.03.099F", "maps": [], @@ -510631,8 +481059,6 @@ }, "description": "3099H, Schleuse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5510.03.099H", "maps": [], @@ -510665,8 +481091,6 @@ }, "description": "3099I, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5510.03.099I", "maps": [], @@ -510699,8 +481123,6 @@ }, "description": "3099J, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5510.03.099J", "maps": [], @@ -510733,8 +481155,6 @@ }, "description": "3099K, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5510.03.099K", "maps": [], @@ -510767,8 +481187,6 @@ }, "description": "3099L, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5510.03.099L", "maps": [], @@ -510801,8 +481219,6 @@ }, "description": "3099M, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5510.03.099M", "maps": [], @@ -510835,8 +481251,6 @@ }, "description": "3099N, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5510.03.099N", "maps": [], @@ -510869,8 +481283,6 @@ }, "description": "4001, Gang, Weg im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5510.DG.001", "maps": [], @@ -510903,8 +481315,6 @@ }, "description": "4002, Gang, Weg im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5510.DG.002", "maps": [], @@ -510937,8 +481347,6 @@ }, "description": "4003, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5510.DG.003", "maps": [], @@ -511051,8 +481459,6 @@ }, "description": "0001a, MW Laden 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.001A", "maps": [], @@ -511085,8 +481491,6 @@ }, "description": "0001c, MW Laden 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.001C", "maps": [], @@ -511119,8 +481523,6 @@ }, "description": "0001E, Schaltraum f.betriebst.Anlagen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.001E", "maps": [], @@ -511153,8 +481555,6 @@ }, "description": "0001m, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.001M", "maps": [], @@ -511187,8 +481587,6 @@ }, "description": "0002, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.002", "maps": [], @@ -511221,8 +481619,6 @@ }, "description": "0003, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.003", "maps": [], @@ -511255,8 +481651,6 @@ }, "description": "0003M, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.003M", "maps": [], @@ -511289,8 +481683,6 @@ }, "description": "0004, YIT Germany GmbH", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.004", "maps": [], @@ -511323,8 +481715,6 @@ }, "description": "0005, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.005", "maps": [], @@ -511357,8 +481747,6 @@ }, "description": "0005M, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.005M", "maps": [], @@ -511391,8 +481779,6 @@ }, "description": "0006, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.006", "maps": [], @@ -511425,8 +481811,6 @@ }, "description": "0006M, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.006M", "maps": [], @@ -511459,8 +481843,6 @@ }, "description": "0007, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.007", "maps": [], @@ -511493,8 +481875,6 @@ }, "description": "0007M, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.007M", "maps": [], @@ -511527,8 +481907,6 @@ }, "description": "0008, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.008", "maps": [], @@ -511561,8 +481939,6 @@ }, "description": "0009, Elektroverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.009", "maps": [], @@ -511595,8 +481971,6 @@ }, "description": "0009m, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.009M", "maps": [], @@ -511629,8 +482003,6 @@ }, "description": "0010, Poststelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.010", "maps": [], @@ -511663,8 +482035,6 @@ }, "description": "0011, Pr\u00fcfungsb\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.011", "maps": [], @@ -511697,8 +482067,6 @@ }, "description": "0011A, Pr\u00fcfungsb\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.011A", "maps": [], @@ -511731,8 +482099,6 @@ }, "description": "0011M, Pr\u00fcfungsb\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.011M", "maps": [], @@ -511765,8 +482131,6 @@ }, "description": "0012, Pr\u00fcfungsb\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.012", "maps": [], @@ -511799,8 +482163,6 @@ }, "description": "0012M, Praktikantenamt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.012M", "maps": [], @@ -511833,8 +482195,6 @@ }, "description": "0012n, Aufenthaltsraum m. Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.012N", "maps": [], @@ -511867,8 +482227,6 @@ }, "description": "0013, Liege.-/Erste Hilfe Raum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.013", "maps": [], @@ -511901,8 +482259,6 @@ }, "description": "0014, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.014", "maps": [], @@ -511935,8 +482291,6 @@ }, "description": "0014L, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.014L", "maps": [], @@ -511969,8 +482323,6 @@ }, "description": "0014M, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.014M", "maps": [], @@ -512003,8 +482355,6 @@ }, "description": "0014N, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.014N", "maps": [], @@ -512037,8 +482387,6 @@ }, "description": "0015, Hausmeisterb\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.015", "maps": [], @@ -512071,8 +482419,6 @@ }, "description": "0016, Evangelische Gemeinde", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.016", "maps": [], @@ -512105,8 +482451,6 @@ }, "description": "0017, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.017", "maps": [], @@ -512139,8 +482483,6 @@ }, "description": "0017m, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.017M", "maps": [], @@ -512173,8 +482515,6 @@ }, "description": "0017n, Nebenraum von O017m", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.017N", "maps": [], @@ -512207,8 +482547,6 @@ }, "description": "0018, IKOM", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.018", "maps": [], @@ -512241,8 +482579,6 @@ }, "description": "0018M, Fernmeldetechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.018M", "maps": [], @@ -512275,8 +482611,6 @@ }, "description": "0018N, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.018N", "maps": [], @@ -512309,8 +482643,6 @@ }, "description": "0025, Fakult\u00e4tsgraduiertenzentrum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.025", "maps": [], @@ -512343,8 +482675,6 @@ }, "description": "0026a, Leitung Pr\u00fcfungsb\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.026A", "maps": [], @@ -512377,8 +482707,6 @@ }, "description": "0026b, Studienb\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.026B", "maps": [], @@ -512411,8 +482739,6 @@ }, "description": "0026C, Kopier- und Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.026C", "maps": [], @@ -512445,8 +482771,6 @@ }, "description": "MW 0026m, Studienb\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.026M", "maps": [], @@ -512479,8 +482803,6 @@ }, "description": "MW 0026N, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.026N", "maps": [], @@ -512545,8 +482867,6 @@ }, "description": "MW 0028, Physik-Praktikum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.028", "maps": [], @@ -512579,8 +482899,6 @@ }, "description": "0028M, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.028M", "maps": [], @@ -512613,8 +482931,6 @@ }, "description": "0028N, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.028N", "maps": [], @@ -512647,8 +482963,6 @@ }, "description": "0028O, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.028O", "maps": [], @@ -512681,8 +482995,6 @@ }, "description": "0029, Praktikumsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.029", "maps": [], @@ -512715,8 +483027,6 @@ }, "description": "0029M, Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.029M", "maps": [], @@ -512749,8 +483059,6 @@ }, "description": "0029N, Lager Hausmeister", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.029N", "maps": [], @@ -512783,8 +483091,6 @@ }, "description": "0050, EDV-Pool", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.050", "maps": [], @@ -512817,8 +483123,6 @@ }, "description": "0050a, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.050A", "maps": [], @@ -512851,8 +483155,6 @@ }, "description": "0098a, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.098A", "maps": [], @@ -512885,8 +483187,6 @@ }, "description": "0098b, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.098B", "maps": [], @@ -512919,8 +483219,6 @@ }, "description": "0098c, Lastenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.098C", "maps": [], @@ -512953,8 +483251,6 @@ }, "description": "0098I, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.098I", "maps": [], @@ -512987,8 +483283,6 @@ }, "description": "0098j, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.098J", "maps": [], @@ -513021,8 +483315,6 @@ }, "description": "0098K, Lastenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.098K", "maps": [], @@ -513055,8 +483347,6 @@ }, "description": "0098L, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.098L", "maps": [], @@ -513089,8 +483379,6 @@ }, "description": "0098m, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.098M", "maps": [], @@ -513123,8 +483411,6 @@ }, "description": "0098n, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.098N", "maps": [], @@ -513157,8 +483443,6 @@ }, "description": "0098p, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.098P", "maps": [], @@ -513191,8 +483475,6 @@ }, "description": "0098q, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.098Q", "maps": [], @@ -513225,8 +483507,6 @@ }, "description": "0098r, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.098R", "maps": [], @@ -513259,8 +483539,6 @@ }, "description": "0098s, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.098S", "maps": [], @@ -513293,8 +483571,6 @@ }, "description": "0099A, Foyer, MW Hof 0", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.099A", "maps": [], @@ -513327,8 +483603,6 @@ }, "description": "0099B, Windfang Pf\u00f6rtner", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.099B", "maps": [], @@ -513361,8 +483635,6 @@ }, "description": "0099C, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.099C", "maps": [], @@ -513395,8 +483667,6 @@ }, "description": "0099D, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.099D", "maps": [], @@ -513429,8 +483699,6 @@ }, "description": "0099E, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.099E", "maps": [], @@ -513463,8 +483731,6 @@ }, "description": "0099F, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.099F", "maps": [], @@ -513497,8 +483763,6 @@ }, "description": "0099G, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.099G", "maps": [], @@ -513531,8 +483795,6 @@ }, "description": "0099H, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.099H", "maps": [], @@ -513565,8 +483827,6 @@ }, "description": "0099J, Flur, MW Hof 0", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.099J", "maps": [], @@ -513599,8 +483859,6 @@ }, "description": "0099K, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.099K", "maps": [], @@ -513633,8 +483891,6 @@ }, "description": "0099L, Pf\u00f6rtner", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.099L", "maps": [], @@ -513667,8 +483923,6 @@ }, "description": "0099N, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.099N", "maps": [], @@ -513701,8 +483955,6 @@ }, "description": "0099p, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.099P", "maps": [], @@ -513735,8 +483987,6 @@ }, "description": "0099Q, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.099Q", "maps": [], @@ -513769,8 +484019,6 @@ }, "description": "0099T, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.099T", "maps": [], @@ -513803,8 +484051,6 @@ }, "description": "0099U, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.099U", "maps": [], @@ -513837,8 +484083,6 @@ }, "description": "0099W, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5510.EG.099W", "maps": [], @@ -513871,8 +484115,6 @@ }, "description": "U001A, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.001A", "maps": [], @@ -513905,8 +484147,6 @@ }, "description": "U001B, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.001B", "maps": [], @@ -513939,8 +484179,6 @@ }, "description": "U001C, WC-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.001C", "maps": [], @@ -513973,8 +484211,6 @@ }, "description": "U001D, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.001D", "maps": [], @@ -514007,8 +484243,6 @@ }, "description": "U001E, WC-Damen Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.001E", "maps": [], @@ -514041,8 +484275,6 @@ }, "description": "U002, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.002", "maps": [], @@ -514075,8 +484307,6 @@ }, "description": "U002B, YIT Germany GmbH", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.002B", "maps": [], @@ -514109,8 +484339,6 @@ }, "description": "U002C, YIT Germany GmbH", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.002C", "maps": [], @@ -514143,8 +484371,6 @@ }, "description": "U003, Betriebstechnische Anlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.003", "maps": [], @@ -514177,8 +484403,6 @@ }, "description": "U004, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.004", "maps": [], @@ -514211,8 +484435,6 @@ }, "description": "MW U005, Vorbereitung 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.005", "maps": [], @@ -514245,8 +484467,6 @@ }, "description": "U005A, MW U005a, Vorbereitung 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.005A", "maps": [], @@ -514279,8 +484499,6 @@ }, "description": "MW U005b, Gasflaschenlager f\u00fcr H\u00f6rsaal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.005B", "maps": [], @@ -514313,8 +484531,6 @@ }, "description": "MW U006, Sammlung Chemie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.006", "maps": [], @@ -514347,8 +484563,6 @@ }, "description": "U007, Aufzugs/F\u00f6rderanlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.007", "maps": [], @@ -514381,8 +484595,6 @@ }, "description": "U009, Umkleide", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.009", "maps": [], @@ -514415,8 +484627,6 @@ }, "description": "U0110, Archiv", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.010", "maps": [], @@ -514449,8 +484659,6 @@ }, "description": "U010M, Lager M\u00f6bel", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.010M", "maps": [], @@ -514483,8 +484691,6 @@ }, "description": "U010N, Lager Hausdienst", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.010N", "maps": [], @@ -514517,8 +484723,6 @@ }, "description": "U010O, YIT Germany GmbH", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.010O", "maps": [], @@ -514551,8 +484755,6 @@ }, "description": "U0111, Lager Hausmeister", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.011", "maps": [], @@ -514585,8 +484787,6 @@ }, "description": "U0112, Dekanatskeller", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.012", "maps": [], @@ -514619,8 +484819,6 @@ }, "description": "U0112m, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.012M", "maps": [], @@ -514653,8 +484851,6 @@ }, "description": "U0113, Archiv", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.013", "maps": [], @@ -514687,8 +484883,6 @@ }, "description": "U0113M, Archiv", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.013M", "maps": [], @@ -514721,8 +484915,6 @@ }, "description": "U0114, Fernmeldetechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.014", "maps": [], @@ -514755,8 +484947,6 @@ }, "description": "U0115, Elektrische Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.015", "maps": [], @@ -514789,8 +484979,6 @@ }, "description": "U0116, Elektrische Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.016", "maps": [], @@ -514823,8 +485011,6 @@ }, "description": "U0117, Kabelverteiler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.017", "maps": [], @@ -514857,8 +485043,6 @@ }, "description": "U0117A, Installationsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.017A", "maps": [], @@ -514891,8 +485075,6 @@ }, "description": "U0117b, Trafo", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.017B", "maps": [], @@ -514925,8 +485107,6 @@ }, "description": "U0117c, Trafo", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.017C", "maps": [], @@ -514959,8 +485139,6 @@ }, "description": "U017M, Maschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.017M", "maps": [], @@ -514993,8 +485171,6 @@ }, "description": "U017N, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.017N", "maps": [], @@ -515027,8 +485203,6 @@ }, "description": "U025, Installationskeller", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.025", "maps": [], @@ -515061,8 +485235,6 @@ }, "description": "U050, Server", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.050", "maps": [], @@ -515095,8 +485267,6 @@ }, "description": "U050a, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.050A", "maps": [], @@ -515129,8 +485299,6 @@ }, "description": "U098a, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.098A", "maps": [], @@ -515163,8 +485331,6 @@ }, "description": "U098b, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.098B", "maps": [], @@ -515197,8 +485363,6 @@ }, "description": "U098c, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.098C", "maps": [], @@ -515231,8 +485395,6 @@ }, "description": "U098I, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.098I", "maps": [], @@ -515265,8 +485427,6 @@ }, "description": "U098J, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.098J", "maps": [], @@ -515299,8 +485459,6 @@ }, "description": "U098K, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.098K", "maps": [], @@ -515333,8 +485491,6 @@ }, "description": "U098L, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.098L", "maps": [], @@ -515367,8 +485523,6 @@ }, "description": "U098M, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.098M", "maps": [], @@ -515401,8 +485555,6 @@ }, "description": "U098R, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.098R", "maps": [], @@ -515435,8 +485587,6 @@ }, "description": "U098S, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.098S", "maps": [], @@ -515469,8 +485619,6 @@ }, "description": "U099A, Gardarobe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.099A", "maps": [], @@ -515503,8 +485651,6 @@ }, "description": "U099B, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.099B", "maps": [], @@ -515537,8 +485683,6 @@ }, "description": "U099D, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.099D", "maps": [], @@ -515571,8 +485715,6 @@ }, "description": "U099E, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.099E", "maps": [], @@ -515605,8 +485747,6 @@ }, "description": "U099F, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.099F", "maps": [], @@ -515639,8 +485779,6 @@ }, "description": "U099G, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.099G", "maps": [], @@ -515673,8 +485811,6 @@ }, "description": "U099H, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.099H", "maps": [], @@ -515707,8 +485843,6 @@ }, "description": "U099I, Teil von Raum U099n", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.099I", "maps": [], @@ -515741,8 +485875,6 @@ }, "description": "U099K, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.099K", "maps": [], @@ -515775,8 +485907,6 @@ }, "description": "U099L, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.099L", "maps": [], @@ -515809,8 +485939,6 @@ }, "description": "U099M, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.099M", "maps": [], @@ -515843,8 +485971,6 @@ }, "description": "U099N, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.099N", "maps": [], @@ -515877,8 +486003,6 @@ }, "description": "U099O, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.099O", "maps": [], @@ -515911,8 +486035,6 @@ }, "description": "U099P, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.099P", "maps": [], @@ -515945,8 +486067,6 @@ }, "description": "U099Q, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.099Q", "maps": [], @@ -515979,8 +486099,6 @@ }, "description": "U099R, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.099R", "maps": [], @@ -516013,8 +486131,6 @@ }, "description": "U099S, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.099S", "maps": [], @@ -516047,8 +486163,6 @@ }, "description": "U099T, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5510.U1.099T", "maps": [], @@ -516081,8 +486195,6 @@ }, "description": "2.U050, Betriebstechn. Anlagen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "5510.U2.050", "maps": [], @@ -516115,8 +486227,6 @@ }, "description": "2.U098A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "5510.U2.098A", "maps": [], @@ -516149,8 +486259,6 @@ }, "description": "2.U098B, Schacht f.Personenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "5510.U2.098B", "maps": [], @@ -516183,8 +486291,6 @@ }, "description": "2.U098BC, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "5510.U2.098C", "maps": [], @@ -516217,8 +486323,6 @@ }, "description": "2.U099A, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "5510.U2.099A", "maps": [], @@ -516251,8 +486355,6 @@ }, "description": "2.U099B, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "5510.U2.099B", "maps": [], @@ -516285,8 +486387,6 @@ }, "description": "2.U099C, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "5510.U2.099C", "maps": [], @@ -516319,8 +486419,6 @@ }, "description": "1860, Leitwarte", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5513.01.860", "maps": [], @@ -516353,8 +486451,6 @@ }, "description": "1861, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5513.01.861", "maps": [], @@ -516387,8 +486483,6 @@ }, "description": "1898a, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5513.01.898A", "maps": [], @@ -516421,8 +486515,6 @@ }, "description": "1898b, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5513.01.898B", "maps": [], @@ -516455,8 +486547,6 @@ }, "description": "1899i, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5513.01.899I", "maps": [], @@ -516489,8 +486579,6 @@ }, "description": "0860A, Lager/Container", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5513.EG.860A", "maps": [], @@ -516523,8 +486611,6 @@ }, "description": "0860B, Freifl\u00e4chen Lager/Container", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5513.EG.860B", "maps": [], @@ -516557,8 +486643,6 @@ }, "description": "0861, B\u00fcrotechnikraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5513.EG.861", "maps": [], @@ -516591,8 +486675,6 @@ }, "description": "0861m, Umkleide", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5513.EG.861M", "maps": [], @@ -516625,8 +486707,6 @@ }, "description": "0861n, Waschraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5513.EG.861N", "maps": [], @@ -516659,8 +486739,6 @@ }, "description": "0861O, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5513.EG.861O", "maps": [], @@ -516693,8 +486771,6 @@ }, "description": "0861P, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5513.EG.861P", "maps": [], @@ -516727,8 +486803,6 @@ }, "description": "0861Q, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5513.EG.861Q", "maps": [], @@ -516761,8 +486835,6 @@ }, "description": "0862, Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5513.EG.862", "maps": [], @@ -516795,8 +486867,6 @@ }, "description": "0862a, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5513.EG.862A", "maps": [], @@ -516829,8 +486899,6 @@ }, "description": "0862b, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5513.EG.862B", "maps": [], @@ -516863,8 +486931,6 @@ }, "description": "0863, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5513.EG.863", "maps": [], @@ -516897,8 +486963,6 @@ }, "description": "0863M, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5513.EG.863M", "maps": [], @@ -516931,8 +486995,6 @@ }, "description": "0863n, Trafo", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5513.EG.863N", "maps": [], @@ -516965,8 +487027,6 @@ }, "description": "0863o, Trafo", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5513.EG.863O", "maps": [], @@ -516999,8 +487059,6 @@ }, "description": "0863p, Trafo", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5513.EG.863P", "maps": [], @@ -517033,8 +487091,6 @@ }, "description": "0863q, Trafo", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5513.EG.863Q", "maps": [], @@ -517067,8 +487123,6 @@ }, "description": "0863r, Trafo", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5513.EG.863R", "maps": [], @@ -517101,8 +487155,6 @@ }, "description": "0863s, Trafo", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5513.EG.863S", "maps": [], @@ -517135,8 +487187,6 @@ }, "description": "0864, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5513.EG.864", "maps": [], @@ -517169,8 +487219,6 @@ }, "description": "0865, Trafo", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5513.EG.865", "maps": [], @@ -517203,8 +487251,6 @@ }, "description": "0898a, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5513.EG.898A", "maps": [], @@ -517237,8 +487283,6 @@ }, "description": "0898b, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5513.EG.898B", "maps": [], @@ -517271,8 +487315,6 @@ }, "description": "0898c, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5513.EG.898C", "maps": [], @@ -517305,8 +487347,6 @@ }, "description": "0899F, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5513.EG.899F", "maps": [], @@ -517339,8 +487379,6 @@ }, "description": "0899G, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5513.EG.899G", "maps": [], @@ -517373,8 +487411,6 @@ }, "description": "0899I, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5513.EG.899I", "maps": [], @@ -517407,8 +487443,6 @@ }, "description": "U860, Druckluftzentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5513.U1.860", "maps": [], @@ -517441,8 +487475,6 @@ }, "description": "U860a, Abluftkanal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5513.U1.860A", "maps": [], @@ -517475,8 +487507,6 @@ }, "description": "U860m, Gas\u00fcbergabe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5513.U1.860M", "maps": [], @@ -517509,8 +487539,6 @@ }, "description": "U860n, Wasserbecken", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5513.U1.860N", "maps": [], @@ -517543,8 +487571,6 @@ }, "description": "U861a, Wasser\u00fcbergabe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5513.U1.861A", "maps": [], @@ -517577,8 +487603,6 @@ }, "description": "U861b, Wasseraufbereitung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5513.U1.861B", "maps": [], @@ -517611,8 +487635,6 @@ }, "description": "U862, W\u00e4rmezentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5513.U1.862", "maps": [], @@ -517645,8 +487667,6 @@ }, "description": "U899E, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5513.U1.899E", "maps": [], @@ -517679,8 +487699,6 @@ }, "description": "U899f, Einbringhof", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5513.U1.899F", "maps": [], @@ -517713,8 +487731,6 @@ }, "description": "U899g, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5513.U1.899G", "maps": [], @@ -517747,8 +487763,6 @@ }, "description": "U899h, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5513.U1.899H", "maps": [], @@ -517781,8 +487795,6 @@ }, "description": "U899i, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5513.U1.899I", "maps": [], @@ -517815,8 +487827,6 @@ }, "description": "U899K, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5513.U1.899K", "maps": [], @@ -517849,8 +487859,6 @@ }, "description": "U899L, Installations-Keller", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5513.U1.899L", "maps": [], @@ -517883,8 +487891,6 @@ }, "description": "U860, Raumlufttechnische Anlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "5513.U2.860", "maps": [], @@ -517917,8 +487923,6 @@ }, "description": "U861, Raumlufttechnische Anlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "5513.U2.861", "maps": [], @@ -517951,8 +487955,6 @@ }, "description": "U861A, Wasserversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "5513.U2.861A", "maps": [], @@ -517985,8 +487987,6 @@ }, "description": "U861B, Abwasseraufbereit./-beseitig.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "5513.U2.861B", "maps": [], @@ -518019,8 +488019,6 @@ }, "description": "U862, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "5513.U2.862", "maps": [], @@ -518053,8 +488051,6 @@ }, "description": "U899F, Schleuse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "5513.U2.899F", "maps": [], @@ -518087,8 +488083,6 @@ }, "description": "U899G, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "5513.U2.899G", "maps": [], @@ -518121,8 +488115,6 @@ }, "description": "U899H, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "5513.U2.899H", "maps": [], @@ -518155,8 +488147,6 @@ }, "description": "U899I, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "5513.U2.899I", "maps": [], @@ -518189,8 +488179,6 @@ }, "description": "U899K, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "5513.U2.899K", "maps": [], @@ -518223,8 +488211,6 @@ }, "description": "U899N, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U2", "id": "5513.U2.899N", "maps": [], @@ -518257,8 +488243,6 @@ }, "description": "U850, Gruppenarbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5514.U1.850", "maps": [], @@ -518291,8 +488275,6 @@ }, "description": "U851, Ruheraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5514.U1.851", "maps": [], @@ -518325,8 +488307,6 @@ }, "description": "U852, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5514.U1.852", "maps": [], @@ -518359,8 +488339,6 @@ }, "description": "U853, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5514.U1.853", "maps": [], @@ -518393,8 +488371,6 @@ }, "description": "U854, Waschraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5514.U1.854", "maps": [], @@ -518427,8 +488403,6 @@ }, "description": "U854m, Trockenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5514.U1.854M", "maps": [], @@ -518461,8 +488435,6 @@ }, "description": "U855, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5514.U1.855", "maps": [], @@ -518495,8 +488467,6 @@ }, "description": "U856, K\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5514.U1.856", "maps": [], @@ -518529,8 +488499,6 @@ }, "description": "U857, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5514.U1.857", "maps": [], @@ -518563,8 +488531,6 @@ }, "description": "U858, Abfall", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5514.U1.858", "maps": [], @@ -518597,8 +488563,6 @@ }, "description": "U859, Ger\u00e4telager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5514.U1.859", "maps": [], @@ -518631,8 +488595,6 @@ }, "description": "U899e, Kinderwagen/Gardarobe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5514.U1.899E", "maps": [], @@ -518665,8 +488627,6 @@ }, "description": "U899F, Flur/Wartebereich", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5514.U1.899F", "maps": [], @@ -518699,8 +488659,6 @@ }, "description": "U899n, Windfang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5514.U1.899N", "maps": [], @@ -518733,8 +488691,6 @@ }, "description": "01501, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5515.EG.001", "maps": [], @@ -518767,8 +488723,6 @@ }, "description": "01501A, Vorraum WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5515.EG.001A", "maps": [], @@ -518801,8 +488755,6 @@ }, "description": "01502, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5515.EG.002", "maps": [], @@ -518835,8 +488787,6 @@ }, "description": "01503, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5515.EG.003", "maps": [], @@ -518869,8 +488819,6 @@ }, "description": "01504, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5515.EG.004", "maps": [], @@ -518903,8 +488851,6 @@ }, "description": "01505, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5515.EG.005", "maps": [], @@ -518937,8 +488883,6 @@ }, "description": "01599, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5515.EG.099", "maps": [], @@ -518971,8 +488915,6 @@ }, "description": "01599B, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5515.EG.099B", "maps": [], @@ -519005,8 +488947,6 @@ }, "description": "01599C, Balkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5515.EG.099C", "maps": [], @@ -519039,8 +488979,6 @@ }, "description": "U1501, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5515.U1.001", "maps": [], @@ -519073,8 +489011,6 @@ }, "description": "U1501A, Vorraum WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5515.U1.001A", "maps": [], @@ -519107,8 +489043,6 @@ }, "description": "U1502, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5515.U1.002", "maps": [], @@ -519141,8 +489075,6 @@ }, "description": "U1503, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5515.U1.003", "maps": [], @@ -519175,8 +489107,6 @@ }, "description": "U1504, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5515.U1.004", "maps": [], @@ -519209,8 +489139,6 @@ }, "description": "U1505, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5515.U1.005", "maps": [], @@ -519243,8 +489171,6 @@ }, "description": "U1506, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5515.U1.006", "maps": [], @@ -519277,8 +489203,6 @@ }, "description": "U1598, Hausanschluss", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5515.U1.098", "maps": [], @@ -519311,8 +489235,6 @@ }, "description": "U1599, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5515.U1.099", "maps": [], @@ -519345,8 +489267,6 @@ }, "description": "U1599B, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5515.U1.099B", "maps": [], @@ -519379,8 +489299,6 @@ }, "description": "U1599C, Terrasse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5515.U1.099C", "maps": [], @@ -519413,8 +489331,6 @@ }, "description": "U1598, Installationsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5515.U1.1598", "maps": [], @@ -519447,8 +489363,6 @@ }, "description": "U1599D, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5515.U1.599D", "maps": [], @@ -519481,8 +489395,6 @@ }, "description": "1870M, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5517.01.870M", "maps": [], @@ -519515,8 +489427,6 @@ }, "description": "1871A, Gang, Weg im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5517.01.871A", "maps": [], @@ -519549,8 +489459,6 @@ }, "description": "1871B, Gang, Weg im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5517.01.871B", "maps": [], @@ -519583,8 +489491,6 @@ }, "description": "1880M, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5517.01.880M", "maps": [], @@ -519617,8 +489523,6 @@ }, "description": "1898a, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5517.01.898A", "maps": [], @@ -519651,8 +489555,6 @@ }, "description": "1898b, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5517.01.898B", "maps": [], @@ -519685,8 +489587,6 @@ }, "description": "Z.1899A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5517.01.899A", "maps": [], @@ -519719,8 +489619,6 @@ }, "description": "Z.1899B, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5517.01.899B", "maps": [], @@ -519753,8 +489651,6 @@ }, "description": "Z.1899C, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5517.01.899C", "maps": [], @@ -519787,8 +489683,6 @@ }, "description": "Z.1899D, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5517.01.899D", "maps": [], @@ -519821,8 +489715,6 @@ }, "description": "Z.1899E, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5517.01.899E", "maps": [], @@ -519855,8 +489747,6 @@ }, "description": "1899J, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5517.01.899J", "maps": [], @@ -519889,8 +489779,6 @@ }, "description": "1899K, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5517.01.899K", "maps": [], @@ -519923,8 +489811,6 @@ }, "description": "1899L, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5517.01.899L", "maps": [], @@ -519957,8 +489843,6 @@ }, "description": "2803, Technik-Verteilerebene 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5517.02.803", "maps": [], @@ -519991,8 +489875,6 @@ }, "description": "2804, Technik-Verteilerebene 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5517.02.804", "maps": [], @@ -520025,8 +489907,6 @@ }, "description": "0870, Gasturbinen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5517.EG.870", "maps": [], @@ -520059,8 +489939,6 @@ }, "description": "0870A, Messraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5517.EG.870A", "maps": [], @@ -520093,8 +489971,6 @@ }, "description": "0870L, WC-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5517.EG.870L", "maps": [], @@ -520127,8 +490003,6 @@ }, "description": "0870m, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5517.EG.870M", "maps": [], @@ -520161,8 +490035,6 @@ }, "description": "0870N, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5517.EG.870N", "maps": [], @@ -520195,8 +490067,6 @@ }, "description": "0870O, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5517.EG.870O", "maps": [], @@ -520229,8 +490099,6 @@ }, "description": "0870P, WC-Damen Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5517.EG.870P", "maps": [], @@ -520263,8 +490131,6 @@ }, "description": "0871, Str\u00f6mungsmaschinen Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5517.EG.871", "maps": [], @@ -520297,8 +490163,6 @@ }, "description": "0872, Thermogasdynamik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5517.EG.872", "maps": [], @@ -520331,8 +490195,6 @@ }, "description": "0872a, Messraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5517.EG.872A", "maps": [], @@ -520365,8 +490227,6 @@ }, "description": "0873, Labor f. verbrenn. Forschung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5517.EG.873", "maps": [], @@ -520399,8 +490259,6 @@ }, "description": "0874, Labor f. verbrenn. Forschung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5517.EG.874", "maps": [], @@ -520433,8 +490291,6 @@ }, "description": "0874a, Messraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5517.EG.874A", "maps": [], @@ -520467,8 +490323,6 @@ }, "description": "0875, Labor f. Flammenforschung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5517.EG.875", "maps": [], @@ -520501,8 +490355,6 @@ }, "description": "0875a, Messraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5517.EG.875A", "maps": [], @@ -520535,8 +490387,6 @@ }, "description": "0875b, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5517.EG.875B", "maps": [], @@ -520569,8 +490419,6 @@ }, "description": "0880, Kleingasturbine", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5517.EG.880", "maps": [], @@ -520603,8 +490451,6 @@ }, "description": "0880M, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5517.EG.880M", "maps": [], @@ -520637,8 +490483,6 @@ }, "description": "0880N, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5517.EG.880N", "maps": [], @@ -520671,8 +490515,6 @@ }, "description": "0881, Kleingasturbine", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5517.EG.881", "maps": [], @@ -520705,8 +490547,6 @@ }, "description": "0881a, Messraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5517.EG.881A", "maps": [], @@ -520739,8 +490579,6 @@ }, "description": "0882, Sto\u00dfwellenrohr", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5517.EG.882", "maps": [], @@ -520773,8 +490611,6 @@ }, "description": "0882a, Messraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5517.EG.882A", "maps": [], @@ -520807,8 +490643,6 @@ }, "description": "0883, \u00dcberschallwindkanal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5517.EG.883", "maps": [], @@ -520841,8 +490675,6 @@ }, "description": "0884, Laserlabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5517.EG.884", "maps": [], @@ -520875,8 +490707,6 @@ }, "description": "0885, Laserlabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5517.EG.885", "maps": [], @@ -520909,8 +490739,6 @@ }, "description": "0886, Laserlabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5517.EG.886", "maps": [], @@ -520943,8 +490771,6 @@ }, "description": "0887, Technikum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5517.EG.887", "maps": [], @@ -520977,8 +490803,6 @@ }, "description": "0888, Technik-Schaltraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5517.EG.888", "maps": [], @@ -521011,8 +490835,6 @@ }, "description": "0898A, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5517.EG.898A", "maps": [], @@ -521045,8 +490867,6 @@ }, "description": "0898B, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5517.EG.898B", "maps": [], @@ -521079,8 +490899,6 @@ }, "description": "0899A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5517.EG.899A", "maps": [], @@ -521113,8 +490931,6 @@ }, "description": "0899B, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5517.EG.899B", "maps": [], @@ -521147,8 +490963,6 @@ }, "description": "0899J, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5517.EG.899J", "maps": [], @@ -521181,8 +490995,6 @@ }, "description": "0899K, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5517.EG.899K", "maps": [], @@ -521215,8 +491027,6 @@ }, "description": "U870, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5517.U1.870", "maps": [], @@ -521249,8 +491059,6 @@ }, "description": "U870M, Installationsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5517.U1.870M", "maps": [], @@ -521283,8 +491091,6 @@ }, "description": "U871, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5517.U1.871", "maps": [], @@ -521317,8 +491123,6 @@ }, "description": "U872, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5517.U1.872", "maps": [], @@ -521351,8 +491155,6 @@ }, "description": "U873, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5517.U1.873", "maps": [], @@ -521385,8 +491187,6 @@ }, "description": "U874, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5517.U1.874", "maps": [], @@ -521419,8 +491219,6 @@ }, "description": "U874a, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5517.U1.874A", "maps": [], @@ -521453,8 +491251,6 @@ }, "description": "U874b, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5517.U1.874B", "maps": [], @@ -521487,8 +491283,6 @@ }, "description": "U874c, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5517.U1.874C", "maps": [], @@ -521521,8 +491315,6 @@ }, "description": "U875, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5517.U1.875", "maps": [], @@ -521555,8 +491347,6 @@ }, "description": "U880, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5517.U1.880", "maps": [], @@ -521589,8 +491379,6 @@ }, "description": "U880M, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5517.U1.880M", "maps": [], @@ -521623,8 +491411,6 @@ }, "description": "U881, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5517.U1.881", "maps": [], @@ -521657,8 +491443,6 @@ }, "description": "U882, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5517.U1.882", "maps": [], @@ -521691,8 +491475,6 @@ }, "description": "U883, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5517.U1.883", "maps": [], @@ -521725,8 +491507,6 @@ }, "description": "U883a, Schleuse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5517.U1.883A", "maps": [], @@ -521759,8 +491539,6 @@ }, "description": "U884, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5517.U1.884", "maps": [], @@ -521793,8 +491571,6 @@ }, "description": "U885, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5517.U1.885", "maps": [], @@ -521827,8 +491603,6 @@ }, "description": "U886, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5517.U1.886", "maps": [], @@ -521861,8 +491635,6 @@ }, "description": "U887, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5517.U1.887", "maps": [], @@ -521895,8 +491667,6 @@ }, "description": "U888, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5517.U1.888", "maps": [], @@ -521929,8 +491699,6 @@ }, "description": "U889K, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5517.U1.889K", "maps": [], @@ -521963,8 +491731,6 @@ }, "description": "U898, Installationsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5517.U1.898", "maps": [], @@ -521997,8 +491763,6 @@ }, "description": "U898A, Leitwarte", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5517.U1.898A", "maps": [], @@ -522031,8 +491795,6 @@ }, "description": "U899A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5517.U1.899A", "maps": [], @@ -522065,8 +491827,6 @@ }, "description": "U899B, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5517.U1.899B", "maps": [], @@ -522099,8 +491859,6 @@ }, "description": "U899C, Weg", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5517.U1.899C", "maps": [], @@ -522133,8 +491891,6 @@ }, "description": "U899D, Installation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5517.U1.899D", "maps": [], @@ -522167,8 +491923,6 @@ }, "description": "U899E, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5517.U1.899E", "maps": [], @@ -522201,8 +491955,6 @@ }, "description": "U899F, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5517.U1.899F", "maps": [], @@ -522235,8 +491987,6 @@ }, "description": "U899G, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5517.U1.899G", "maps": [], @@ -522269,8 +492019,6 @@ }, "description": "U899H, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5517.U1.899H", "maps": [], @@ -522303,8 +492051,6 @@ }, "description": "U899J, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5517.U1.899J", "maps": [], @@ -522337,8 +492083,6 @@ }, "description": "U899L, Gang, Weg im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5517.U1.899L", "maps": [], @@ -522371,8 +492115,6 @@ }, "description": "001, Pumpenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5518.EG.001", "maps": [], @@ -522405,8 +492147,6 @@ }, "description": "002, Elektroraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5518.EG.002", "maps": [], @@ -522439,8 +492179,6 @@ }, "description": "003, Verdampferraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5518.EG.003", "maps": [], @@ -522473,8 +492211,6 @@ }, "description": "004, Gasflaschenlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5518.EG.004", "maps": [], @@ -522507,8 +492243,6 @@ }, "description": "005, Gasflaschenlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5518.EG.005", "maps": [], @@ -522541,8 +492275,6 @@ }, "description": "006, Gasflaschenlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5518.EG.006", "maps": [], @@ -522575,8 +492307,6 @@ }, "description": "007, Gasflaschenlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5518.EG.007", "maps": [], @@ -522609,8 +492339,6 @@ }, "description": "101, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5530.01.101", "maps": [], @@ -522643,8 +492371,6 @@ }, "description": "102, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5530.01.102", "maps": [], @@ -522677,8 +492403,6 @@ }, "description": "103, Denkerzelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5530.01.103", "maps": [], @@ -522711,8 +492435,6 @@ }, "description": "104, Denkerzelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5530.01.104", "maps": [], @@ -522745,8 +492467,6 @@ }, "description": "105, Denkerzelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5530.01.105", "maps": [], @@ -522779,8 +492499,6 @@ }, "description": "106, Denkerzelle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5530.01.106", "maps": [], @@ -522813,8 +492531,6 @@ }, "description": "107, Kommunikationsfl\u00e4che", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5530.01.107", "maps": [], @@ -522847,8 +492563,6 @@ }, "description": "108, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5530.01.108", "maps": [], @@ -522881,8 +492595,6 @@ }, "description": "109, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5530.01.109", "maps": [], @@ -522915,8 +492627,6 @@ }, "description": "110, Abstellraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5530.01.110", "maps": [], @@ -522949,8 +492659,6 @@ }, "description": "111, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5530.01.111", "maps": [], @@ -522983,8 +492691,6 @@ }, "description": "112, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5530.01.112", "maps": [], @@ -523017,8 +492723,6 @@ }, "description": "113, Abstellraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5530.01.113", "maps": [], @@ -523051,8 +492755,6 @@ }, "description": "114, K\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5530.01.114", "maps": [], @@ -523085,8 +492787,6 @@ }, "description": "115, Cafe-Treff", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5530.01.115", "maps": [], @@ -523119,8 +492819,6 @@ }, "description": "116, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5530.01.116", "maps": [], @@ -523153,8 +492851,6 @@ }, "description": "117, Verteiler/Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5530.01.117", "maps": [], @@ -523187,8 +492883,6 @@ }, "description": "118, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5530.01.118", "maps": [], @@ -523221,8 +492915,6 @@ }, "description": "201, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5530.02.201", "maps": [], @@ -523255,8 +492947,6 @@ }, "description": "202, Service", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5530.02.202", "maps": [], @@ -523289,8 +492979,6 @@ }, "description": "203, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5530.02.203", "maps": [], @@ -523323,8 +493011,6 @@ }, "description": "204, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5530.02.204", "maps": [], @@ -523357,8 +493043,6 @@ }, "description": "205, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5530.02.205", "maps": [], @@ -523391,8 +493075,6 @@ }, "description": "206, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5530.02.206", "maps": [], @@ -523425,8 +493107,6 @@ }, "description": "207, Direktor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5530.02.207", "maps": [], @@ -523459,8 +493139,6 @@ }, "description": "208, Kursmanagement", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5530.02.208", "maps": [], @@ -523493,8 +493171,6 @@ }, "description": "209, Veranstaltungsmanagement", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5530.02.209", "maps": [], @@ -523527,8 +493203,6 @@ }, "description": "210, Buchhaltung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5530.02.210", "maps": [], @@ -523561,8 +493235,6 @@ }, "description": "211, Printcenter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5530.02.211", "maps": [], @@ -523595,8 +493267,6 @@ }, "description": "212, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5530.02.212", "maps": [], @@ -523629,8 +493299,6 @@ }, "description": "213, Abstellraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5530.02.213", "maps": [], @@ -523663,8 +493331,6 @@ }, "description": "214, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5530.02.214", "maps": [], @@ -523697,8 +493363,6 @@ }, "description": "215, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5530.02.215", "maps": [], @@ -523731,8 +493395,6 @@ }, "description": "216, Abstellraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5530.02.216", "maps": [], @@ -523765,8 +493427,6 @@ }, "description": "217, K\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5530.02.217", "maps": [], @@ -523799,8 +493459,6 @@ }, "description": "218, Cafe-Treff", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5530.02.218", "maps": [], @@ -523833,8 +493491,6 @@ }, "description": "219, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5530.02.219", "maps": [], @@ -523867,8 +493523,6 @@ }, "description": "220, Verteiler/Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5530.02.220", "maps": [], @@ -523901,8 +493555,6 @@ }, "description": "221, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5530.02.221", "maps": [], @@ -523935,8 +493587,6 @@ }, "description": "301, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5530.03.301", "maps": [], @@ -523969,8 +493619,6 @@ }, "description": "302, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5530.03.302", "maps": [], @@ -524003,8 +493651,6 @@ }, "description": "303, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5530.03.303", "maps": [], @@ -524037,8 +493683,6 @@ }, "description": "304, Direktor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5530.03.304", "maps": [], @@ -524071,8 +493715,6 @@ }, "description": "305, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5530.03.305", "maps": [], @@ -524105,8 +493747,6 @@ }, "description": "306, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5530.03.306", "maps": [], @@ -524139,8 +493779,6 @@ }, "description": "306A, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5530.03.306A", "maps": [], @@ -524173,8 +493811,6 @@ }, "description": "307, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5530.03.307", "maps": [], @@ -524207,8 +493843,6 @@ }, "description": "307A, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5530.03.307A", "maps": [], @@ -524241,8 +493875,6 @@ }, "description": "308, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5530.03.308", "maps": [], @@ -524275,8 +493907,6 @@ }, "description": "309, Printcenter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5530.03.309", "maps": [], @@ -524309,8 +493939,6 @@ }, "description": "309A, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5530.03.309A", "maps": [], @@ -524343,8 +493971,6 @@ }, "description": "310, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5530.03.310", "maps": [], @@ -524377,8 +494003,6 @@ }, "description": "311, Abstellraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5530.03.311", "maps": [], @@ -524411,8 +494035,6 @@ }, "description": "312, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5530.03.312", "maps": [], @@ -524445,8 +494067,6 @@ }, "description": "313, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5530.03.313", "maps": [], @@ -524479,8 +494099,6 @@ }, "description": "314, Abstellraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5530.03.314", "maps": [], @@ -524513,8 +494131,6 @@ }, "description": "315, K\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5530.03.315", "maps": [], @@ -524547,8 +494163,6 @@ }, "description": "316, Cafe-Treff", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5530.03.316", "maps": [], @@ -524581,8 +494195,6 @@ }, "description": "317, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5530.03.317", "maps": [], @@ -524615,8 +494227,6 @@ }, "description": "318, Verteiler/Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5530.03.318", "maps": [], @@ -524649,8 +494259,6 @@ }, "description": "319, Kommunikationsfl\u00e4che", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5530.03.319", "maps": [], @@ -524683,8 +494291,6 @@ }, "description": "320, Vorzone/Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5530.03.320", "maps": [], @@ -524717,8 +494323,6 @@ }, "description": "321, Kommunikationsfl\u00e4che", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5530.03.321", "maps": [], @@ -524751,8 +494355,6 @@ }, "description": "001, KHG und EHG Sakralraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5530.EG.001", "maps": [], @@ -524785,8 +494387,6 @@ }, "description": "002, Foyer 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5530.EG.002", "maps": [], @@ -524872,8 +494472,6 @@ }, "description": "004, Stuhllager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5530.EG.004", "maps": [], @@ -524906,8 +494504,6 @@ }, "description": "005, Beh.-WC / Wickeltisch", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5530.EG.005", "maps": [], @@ -524940,8 +494536,6 @@ }, "description": "006, Empfang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5530.EG.006", "maps": [], @@ -524974,8 +494568,6 @@ }, "description": "007, Vorbereitung/Catering", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5530.EG.007", "maps": [], @@ -525008,8 +494600,6 @@ }, "description": "008, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5530.EG.008", "maps": [], @@ -525042,8 +494632,6 @@ }, "description": "009, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5530.EG.009", "maps": [], @@ -525076,8 +494664,6 @@ }, "description": "010, WC-Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5530.EG.010", "maps": [], @@ -525110,8 +494696,6 @@ }, "description": "011, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5530.EG.011", "maps": [], @@ -525144,8 +494728,6 @@ }, "description": "012, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5530.EG.012", "maps": [], @@ -525178,8 +494760,6 @@ }, "description": "013, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5530.EG.013", "maps": [], @@ -525212,8 +494792,6 @@ }, "description": "014, Abstellbereich", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5530.EG.014", "maps": [], @@ -525246,8 +494824,6 @@ }, "description": "015, Haustechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5530.EG.015", "maps": [], @@ -525280,8 +494856,6 @@ }, "description": "016, Haustechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5530.EG.016", "maps": [], @@ -525314,8 +494888,6 @@ }, "description": "UZ01, Haustechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5530.U1.001", "maps": [], @@ -525348,8 +494920,6 @@ }, "description": "UZ02, Aufzugsmaschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5530.U1.002", "maps": [], @@ -525382,8 +494952,6 @@ }, "description": "UZ30, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5530.U1.030", "maps": [], @@ -525416,8 +494984,6 @@ }, "description": "0001, Nebenraum 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5531.EG.001", "maps": [], @@ -525450,8 +495016,6 @@ }, "description": "0002, Gruppenraum 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5531.EG.002", "maps": [], @@ -525484,8 +495048,6 @@ }, "description": "0003, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5531.EG.003", "maps": [], @@ -525518,8 +495080,6 @@ }, "description": "0004, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5531.EG.004", "maps": [], @@ -525552,8 +495112,6 @@ }, "description": "0005, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5531.EG.005", "maps": [], @@ -525586,8 +495144,6 @@ }, "description": "0006, Gruppenraum 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5531.EG.006", "maps": [], @@ -525620,8 +495176,6 @@ }, "description": "0007, Nebenraum 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5531.EG.007", "maps": [], @@ -525654,8 +495208,6 @@ }, "description": "0008, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5531.EG.008", "maps": [], @@ -525688,8 +495240,6 @@ }, "description": "0009, Haustechnik 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5531.EG.009", "maps": [], @@ -525722,8 +495272,6 @@ }, "description": "0010, Haustechnik 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5531.EG.010", "maps": [], @@ -525756,8 +495304,6 @@ }, "description": "0011, Lager MZR", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5531.EG.011", "maps": [], @@ -525790,8 +495336,6 @@ }, "description": "0012, Mehrzweckraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5531.EG.012", "maps": [], @@ -525824,8 +495368,6 @@ }, "description": "0013, Flur/Gardarobe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5531.EG.013", "maps": [], @@ -525858,8 +495400,6 @@ }, "description": "0014, Foyer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5531.EG.014", "maps": [], @@ -525892,8 +495432,6 @@ }, "description": "0015, Windfang/Kinderwagen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5531.EG.015", "maps": [], @@ -525926,8 +495464,6 @@ }, "description": "0016, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5531.EG.016", "maps": [], @@ -525960,8 +495496,6 @@ }, "description": "0017, K\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5531.EG.017", "maps": [], @@ -525994,8 +495528,6 @@ }, "description": "0018, Lager K\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5531.EG.018", "maps": [], @@ -526028,8 +495560,6 @@ }, "description": "0019, M\u00fcllraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5531.EG.019", "maps": [], @@ -526062,8 +495592,6 @@ }, "description": "0020, ELT 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5531.EG.020", "maps": [], @@ -526096,8 +495624,6 @@ }, "description": "0021, ELT 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5531.EG.021", "maps": [], @@ -526130,8 +495656,6 @@ }, "description": "0022, Schmutzw\u00e4sche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5531.EG.022", "maps": [], @@ -526164,8 +495688,6 @@ }, "description": "0022A, Reinw\u00e4sche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5531.EG.022A", "maps": [], @@ -526198,8 +495720,6 @@ }, "description": "0023, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5531.EG.023", "maps": [], @@ -526232,8 +495752,6 @@ }, "description": "0024, Dusche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5531.EG.024", "maps": [], @@ -526266,8 +495784,6 @@ }, "description": "0025, WC-Personal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5531.EG.025", "maps": [], @@ -526300,8 +495816,6 @@ }, "description": "0026, Beh.-WC/Personal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5531.EG.026", "maps": [], @@ -526334,8 +495848,6 @@ }, "description": "0027, Flur/Gardaroben", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5531.EG.027", "maps": [], @@ -526368,8 +495880,6 @@ }, "description": "0028, Nebenraum 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5531.EG.028", "maps": [], @@ -526402,8 +495912,6 @@ }, "description": "0029, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5531.EG.029", "maps": [], @@ -526436,8 +495944,6 @@ }, "description": "0030, Gruppenraum 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5531.EG.030", "maps": [], @@ -526470,8 +495976,6 @@ }, "description": "0031, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5531.EG.031", "maps": [], @@ -526504,8 +496008,6 @@ }, "description": "0032, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5531.EG.032", "maps": [], @@ -526538,8 +496040,6 @@ }, "description": "0033, Gruppenraum 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5531.EG.033", "maps": [], @@ -526572,8 +496072,6 @@ }, "description": "0034, Nebenraum 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5531.EG.034", "maps": [], @@ -526606,8 +496104,6 @@ }, "description": "0035, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5531.EG.035", "maps": [], @@ -526640,8 +496136,6 @@ }, "description": "1.101, Lernraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5532.01.101", "maps": [], @@ -526674,8 +496168,6 @@ }, "description": "1.102, Gruppenarbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5532.01.102", "maps": [], @@ -526708,8 +496200,6 @@ }, "description": "1.103, Gruppenarbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5532.01.103", "maps": [], @@ -526742,8 +496232,6 @@ }, "description": "1.104, StudiTUM-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5532.01.104", "maps": [], @@ -526776,8 +496264,6 @@ }, "description": "1.105, A StA-Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5532.01.105", "maps": [], @@ -526810,8 +496296,6 @@ }, "description": "1.106, Gruppenarbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5532.01.106", "maps": [], @@ -526844,8 +496328,6 @@ }, "description": "1.107, Gruppenarbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5532.01.107", "maps": [], @@ -526878,8 +496360,6 @@ }, "description": "1.108, Kommunikation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5532.01.108", "maps": [], @@ -526912,8 +496392,6 @@ }, "description": "1.110, WC/Wickeltisch", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5532.01.110", "maps": [], @@ -526946,8 +496424,6 @@ }, "description": "1.111, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5532.01.111", "maps": [], @@ -526980,8 +496456,6 @@ }, "description": "1.112, Stillarbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5532.01.112", "maps": [], @@ -527014,8 +496488,6 @@ }, "description": "1.113, Stillarbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5532.01.113", "maps": [], @@ -527048,8 +496520,6 @@ }, "description": "1.171, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5532.01.171", "maps": [], @@ -527082,8 +496552,6 @@ }, "description": "1.172, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5532.01.172", "maps": [], @@ -527116,8 +496584,6 @@ }, "description": "1.191, Schacht-Pers.Auf.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5532.01.191", "maps": [], @@ -527150,8 +496616,6 @@ }, "description": "1.192, Schacht-Elt.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5532.01.192", "maps": [], @@ -527184,8 +496648,6 @@ }, "description": "1.193, Schacht-Elt.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5532.01.193", "maps": [], @@ -527218,8 +496680,6 @@ }, "description": "1.194, Schacht-Elt.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5532.01.194", "maps": [], @@ -527252,8 +496712,6 @@ }, "description": "2.201, Lernraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5532.02.201", "maps": [], @@ -527286,8 +496744,6 @@ }, "description": "2.202, Gruppenarbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5532.02.202", "maps": [], @@ -527320,8 +496776,6 @@ }, "description": "2.203, Gruppenarbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5532.02.203", "maps": [], @@ -527354,8 +496808,6 @@ }, "description": "2.204, Gruppenarbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5532.02.204", "maps": [], @@ -527388,8 +496840,6 @@ }, "description": "2.205, Gruppenarbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5532.02.205", "maps": [], @@ -527422,8 +496872,6 @@ }, "description": "2.206, Gruppenarbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5532.02.206", "maps": [], @@ -527456,8 +496904,6 @@ }, "description": "2.207, Gruppenarbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5532.02.207", "maps": [], @@ -527490,8 +496936,6 @@ }, "description": "2.208, Kommunikation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5532.02.208", "maps": [], @@ -527524,8 +496968,6 @@ }, "description": "2.210, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5532.02.210", "maps": [], @@ -527558,8 +497000,6 @@ }, "description": "2.211, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5532.02.211", "maps": [], @@ -527592,8 +497032,6 @@ }, "description": "2.212, Stillarbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5532.02.212", "maps": [], @@ -527626,8 +497064,6 @@ }, "description": "2.213, Stillarbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5532.02.213", "maps": [], @@ -527660,8 +497096,6 @@ }, "description": "2.271, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5532.02.271", "maps": [], @@ -527694,8 +497128,6 @@ }, "description": "2.272, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5532.02.272", "maps": [], @@ -527728,8 +497160,6 @@ }, "description": "2.291, Schacht f. Pers.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5532.02.291", "maps": [], @@ -527762,8 +497192,6 @@ }, "description": "2.292, Schacht Elt.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5532.02.292", "maps": [], @@ -527796,8 +497224,6 @@ }, "description": "2.293, Schacht Elt.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5532.02.293", "maps": [], @@ -527830,8 +497256,6 @@ }, "description": "2.294, Schacht Elt.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5532.02.294", "maps": [], @@ -527864,8 +497288,6 @@ }, "description": "3.301, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5532.03.301", "maps": [], @@ -527898,8 +497320,6 @@ }, "description": "3.302, Multifunktion", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5532.03.302", "maps": [], @@ -527932,8 +497352,6 @@ }, "description": "3.303, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5532.03.303", "maps": [], @@ -527966,8 +497384,6 @@ }, "description": "3.304, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5532.03.304", "maps": [], @@ -528000,8 +497416,6 @@ }, "description": "3.305, Familienzimmer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5532.03.305", "maps": [], @@ -528034,8 +497448,6 @@ }, "description": "3.371, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5532.03.371", "maps": [], @@ -528068,8 +497480,6 @@ }, "description": "3.391, Schacht f. Pers.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5532.03.391", "maps": [], @@ -528102,8 +497512,6 @@ }, "description": "3.392, Schacht Elt.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5532.03.392", "maps": [], @@ -528136,8 +497544,6 @@ }, "description": "3.398, Terrasse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5532.03.398", "maps": [], @@ -528170,8 +497576,6 @@ }, "description": "0.001, Foyer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5532.EG.001", "maps": [], @@ -528204,8 +497608,6 @@ }, "description": "0.002, Lehr-/ Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5532.EG.002", "maps": [], @@ -528238,8 +497640,6 @@ }, "description": "0.003, Studierlounge", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5532.EG.003", "maps": [], @@ -528272,8 +497672,6 @@ }, "description": "0.071, Eingang/Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5532.EG.071", "maps": [], @@ -528306,8 +497704,6 @@ }, "description": "0.072, Windfang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5532.EG.072", "maps": [], @@ -528340,8 +497736,6 @@ }, "description": "0.091, Personenaufzugschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5532.EG.091", "maps": [], @@ -528374,8 +497768,6 @@ }, "description": "0.092, ELT.-Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5532.EG.092", "maps": [], @@ -528408,8 +497800,6 @@ }, "description": "0.093, ELT.-Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5532.EG.093", "maps": [], @@ -528442,8 +497832,6 @@ }, "description": "0.094, Schacht HLS", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5532.EG.094", "maps": [], @@ -528476,8 +497864,6 @@ }, "description": "U.001, Aufzugs.masch.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5532.U1.001", "maps": [], @@ -528510,8 +497896,6 @@ }, "description": "U.002, BMA", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5532.U1.002", "maps": [], @@ -528544,8 +497928,6 @@ }, "description": "U.003, Batterie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5532.U1.003", "maps": [], @@ -528578,8 +497960,6 @@ }, "description": "U.004, Elektroversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5532.U1.004", "maps": [], @@ -528612,8 +497992,6 @@ }, "description": "U.005, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5532.U1.005", "maps": [], @@ -528646,8 +498024,6 @@ }, "description": "U.006, Wasserversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5532.U1.006", "maps": [], @@ -528680,8 +498056,6 @@ }, "description": "U.007, Fernw\u00e4rme", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5532.U1.007", "maps": [], @@ -528714,8 +498088,6 @@ }, "description": "U.008, L\u00fcftungszentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5532.U1.008", "maps": [], @@ -528748,8 +498120,6 @@ }, "description": "U.009, Hebeanlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5532.U1.009", "maps": [], @@ -528782,8 +498152,6 @@ }, "description": "U.010, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5532.U1.010", "maps": [], @@ -528816,8 +498184,6 @@ }, "description": "U.011, Vorraum WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5532.U1.011", "maps": [], @@ -528850,8 +498216,6 @@ }, "description": "U.012, Duschen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5532.U1.012", "maps": [], @@ -528884,8 +498248,6 @@ }, "description": "U.013, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5532.U1.013", "maps": [], @@ -528918,8 +498280,6 @@ }, "description": "U.014, Vorraum WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5532.U1.014", "maps": [], @@ -528952,8 +498312,6 @@ }, "description": "U.015, Beh.-WC/Wickeltisch", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5532.U1.015", "maps": [], @@ -528986,8 +498344,6 @@ }, "description": "U.016, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5532.U1.016", "maps": [], @@ -529020,8 +498376,6 @@ }, "description": "U.017, Server 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5532.U1.017", "maps": [], @@ -529054,8 +498408,6 @@ }, "description": "U.018, Server 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5532.U1.018", "maps": [], @@ -529088,8 +498440,6 @@ }, "description": "U.019, Lager 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5532.U1.019", "maps": [], @@ -529122,8 +498472,6 @@ }, "description": "U.020, Musikraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5532.U1.020", "maps": [], @@ -529156,8 +498504,6 @@ }, "description": "U.071, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5532.U1.071", "maps": [], @@ -529190,8 +498536,6 @@ }, "description": "U.072, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5532.U1.072", "maps": [], @@ -529224,8 +498568,6 @@ }, "description": "U.073, Flur/Spinde", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5532.U1.073", "maps": [], @@ -529258,8 +498600,6 @@ }, "description": "U.091, Personenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5532.U1.091", "maps": [], @@ -529292,8 +498632,6 @@ }, "description": "Z.001, Emporenarbeitspl\u00e4tze Foyer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "5532.Z1.001", "maps": [], @@ -529326,8 +498664,6 @@ }, "description": "Z.002, Emporenarbeitspl\u00e4tze Seminar", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "5532.Z1.002", "maps": [], @@ -529360,8 +498696,6 @@ }, "description": "Z.003, Emporenarbeitspl\u00e4tze Lounge", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "5532.Z1.003", "maps": [], @@ -529394,8 +498728,6 @@ }, "description": "Z.071, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "5532.Z1.071", "maps": [], @@ -529428,8 +498760,6 @@ }, "description": "Z.071, Aufzugsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "Z1", "id": "5532.Z1.091", "maps": [], @@ -529462,8 +498792,6 @@ }, "description": "0.001, Interims-TUMshop", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5537.EG.001", "maps": [], @@ -529496,8 +498824,6 @@ }, "description": "0.001A, H\u00f6rsaal 1A", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5539.EG.001A", "maps": [], @@ -529555,8 +498881,6 @@ }, "description": "0.001B, H\u00f6rsaal 1B", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5539.EG.001B", "maps": [], @@ -529614,8 +498938,6 @@ }, "description": "0.002, H\u00f6rsaal 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5539.EG.002", "maps": [], @@ -529673,8 +498995,6 @@ }, "description": "01.01.001, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5601.01.001", "maps": [], @@ -529707,8 +499027,6 @@ }, "description": "01.01.002, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5601.01.002", "maps": [], @@ -529741,8 +499059,6 @@ }, "description": "01.01.003, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5601.01.003", "maps": [], @@ -529775,8 +499091,6 @@ }, "description": "01.01.004, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5601.01.004", "maps": [], @@ -529809,8 +499123,6 @@ }, "description": "01.01.005, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5601.01.005", "maps": [], @@ -529843,8 +499155,6 @@ }, "description": "02.01.001, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5601.02.001", "maps": [], @@ -529877,8 +499187,6 @@ }, "description": "02.01.002, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5601.02.002", "maps": [], @@ -529911,8 +499219,6 @@ }, "description": "02.01.003, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5601.02.003", "maps": [], @@ -529945,8 +499251,6 @@ }, "description": "02.01.004, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5601.02.004", "maps": [], @@ -529979,8 +499283,6 @@ }, "description": "03.01.001, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5601.03.001", "maps": [], @@ -530013,8 +499315,6 @@ }, "description": "03.01.002, Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5601.03.002", "maps": [], @@ -530047,8 +499347,6 @@ }, "description": "00.01.001, Magistrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5601.EG.001", "maps": [], @@ -530081,8 +499379,6 @@ }, "description": "00.01.002, Gang, Weg im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5601.EG.002", "maps": [], @@ -530115,8 +499411,6 @@ }, "description": "00.01.003, Windfang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5601.EG.003", "maps": [], @@ -530149,8 +499443,6 @@ }, "description": "00.01.004, Gang, Weg im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5601.EG.004", "maps": [], @@ -530183,8 +499475,6 @@ }, "description": "00.01.005, Windfang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5601.EG.005", "maps": [], @@ -530217,8 +499507,6 @@ }, "description": "00.01.006, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5601.EG.006", "maps": [], @@ -530251,8 +499539,6 @@ }, "description": "00.01.007, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5601.EG.007", "maps": [], @@ -530285,8 +499571,6 @@ }, "description": "00.01.008, Gang, Weg im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5601.EG.008", "maps": [], @@ -530319,8 +499603,6 @@ }, "description": "00.01.009, Windfang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5601.EG.009", "maps": [], @@ -530353,8 +499635,6 @@ }, "description": "00.01.010, Pforte", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5601.EG.010", "maps": [], @@ -530387,8 +499667,6 @@ }, "description": "00.01.011, Windfang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5601.EG.011", "maps": [], @@ -530421,8 +499699,6 @@ }, "description": "00.01.012, Gang, Weg im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5601.EG.012", "maps": [], @@ -530455,8 +499731,6 @@ }, "description": "-1.01.001, Foyer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5601.U1.001", "maps": [], @@ -530489,8 +499763,6 @@ }, "description": "-1.01.001C, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5601.U1.001C", "maps": [], @@ -530523,8 +499795,6 @@ }, "description": "-1.01.001D, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5601.U1.001D", "maps": [], @@ -530557,8 +499827,6 @@ }, "description": "-1.01.002, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5601.U1.002", "maps": [], @@ -530591,8 +499859,6 @@ }, "description": "-1.01.003, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5601.U1.003", "maps": [], @@ -530625,8 +499891,6 @@ }, "description": "-1.01.004, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5601.U1.004", "maps": [], @@ -530659,8 +499923,6 @@ }, "description": "-1.01.005, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5601.U1.005", "maps": [], @@ -530693,8 +499955,6 @@ }, "description": "-1.01.006, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5601.U1.006", "maps": [], @@ -530727,8 +499987,6 @@ }, "description": "-1.01.007, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5601.U1.007", "maps": [], @@ -530761,8 +500019,6 @@ }, "description": "-1.01.008, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5601.U1.008", "maps": [], @@ -530795,8 +500051,6 @@ }, "description": "-1.01.009, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5601.U1.009", "maps": [], @@ -530829,8 +500083,6 @@ }, "description": "-1.01.010, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5601.U1.010", "maps": [], @@ -530863,8 +500115,6 @@ }, "description": "-1.01.011, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5601.U1.011", "maps": [], @@ -530897,8 +500147,6 @@ }, "description": "-1.01.012, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5601.U1.012", "maps": [], @@ -530931,8 +500179,6 @@ }, "description": "-1.01.020, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5601.U1.020", "maps": [], @@ -530965,8 +500211,6 @@ }, "description": "-1.01.021, Dozentenb\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5601.U1.021", "maps": [], @@ -530999,8 +500243,6 @@ }, "description": "-1.01.022, B\u00fcro Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5601.U1.022", "maps": [], @@ -531033,8 +500275,6 @@ }, "description": "-1.01.023, Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5601.U1.023", "maps": [], @@ -531067,8 +500307,6 @@ }, "description": "-1.01.024, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5601.U1.024", "maps": [], @@ -531101,8 +500339,6 @@ }, "description": "-1.01.026, Sammlung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5601.U1.026", "maps": [], @@ -531135,8 +500371,6 @@ }, "description": "-1.01.031A, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5601.U1.031A", "maps": [], @@ -531169,8 +500403,6 @@ }, "description": "-1.01.031B, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5601.U1.031B", "maps": [], @@ -531203,8 +500435,6 @@ }, "description": "-1.01.031C, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5601.U1.031C", "maps": [], @@ -531237,8 +500467,6 @@ }, "description": "-1.01.032, Beh.-WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5601.U1.032", "maps": [], @@ -531271,8 +500499,6 @@ }, "description": "-1.01.033A, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5601.U1.033A", "maps": [], @@ -531305,8 +500531,6 @@ }, "description": "-1.01.033B, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5601.U1.033B", "maps": [], @@ -531339,8 +500563,6 @@ }, "description": "-1.01.034A, Flur Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5601.U1.034A", "maps": [], @@ -531373,8 +500595,6 @@ }, "description": "-1.01.034B, Hebeanlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5601.U1.034B", "maps": [], @@ -531407,8 +500627,6 @@ }, "description": "-1.01.034C, Hebeanlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5601.U1.034C", "maps": [], @@ -531441,8 +500659,6 @@ }, "description": "-1.01.035, Versorgungstunnel", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5601.U1.035", "maps": [], @@ -531475,8 +500691,6 @@ }, "description": "-1.01.036, RLT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5601.U1.036", "maps": [], @@ -531509,8 +500723,6 @@ }, "description": "-1.01.038, TBA", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5601.U1.038", "maps": [], @@ -531543,8 +500755,6 @@ }, "description": "-1.01.039, TBA", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5601.U1.039", "maps": [], @@ -531577,8 +500787,6 @@ }, "description": "-1.01.040, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5601.U1.040", "maps": [], @@ -531697,8 +500905,6 @@ }, "description": "00.02.002, MI H\u00f6rsaal Regieraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5602.EG.002", "maps": [], @@ -531731,8 +500937,6 @@ }, "description": "-1.02.001, Technikraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5602.U1.001", "maps": [], @@ -531765,8 +500969,6 @@ }, "description": "-1.02.004, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5602.U1.004", "maps": [], @@ -531799,8 +501001,6 @@ }, "description": "01.03.010, Windfang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5603.01.010", "maps": [], @@ -531833,8 +501033,6 @@ }, "description": "01.03.011, Gruppenarbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5603.01.011", "maps": [], @@ -531867,8 +501065,6 @@ }, "description": "01.03.012, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5603.01.012", "maps": [], @@ -531901,8 +501097,6 @@ }, "description": "01.03.012A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5603.01.012A", "maps": [], @@ -531935,8 +501129,6 @@ }, "description": "01.03.012B, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5603.01.012B", "maps": [], @@ -531969,8 +501161,6 @@ }, "description": "01.03.013, Elektronische Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5603.01.013", "maps": [], @@ -532003,8 +501193,6 @@ }, "description": "01.03.014, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5603.01.014", "maps": [], @@ -532037,8 +501225,6 @@ }, "description": "01.03.015A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5603.01.015A", "maps": [], @@ -532071,8 +501257,6 @@ }, "description": "01.03.015B, Heizung/L\u00fcftung/Sanit\u00e4r", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5603.01.015B", "maps": [], @@ -532105,8 +501289,6 @@ }, "description": "01.03.016, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5603.01.016", "maps": [], @@ -532139,8 +501321,6 @@ }, "description": "01.03.017, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5603.01.017", "maps": [], @@ -532173,8 +501353,6 @@ }, "description": "01.03.018, Scannerraum/Kopierer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5603.01.018", "maps": [], @@ -532207,8 +501385,6 @@ }, "description": "01.03.019, Lesesaal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5603.01.019", "maps": [], @@ -532241,8 +501417,6 @@ }, "description": "01.03.030, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5603.01.030", "maps": [], @@ -532275,8 +501449,6 @@ }, "description": "01.03.031B, Einzelarbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5603.01.031B", "maps": [], @@ -532309,8 +501481,6 @@ }, "description": "01.03.032, Gruppenarbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5603.01.032", "maps": [], @@ -532343,8 +501513,6 @@ }, "description": "01.03.033A, Einzelarbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5603.01.033A", "maps": [], @@ -532377,8 +501545,6 @@ }, "description": "01.03.033B, Einzelarbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5603.01.033B", "maps": [], @@ -532411,8 +501577,6 @@ }, "description": "01.03.035A, Einzelarbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5603.01.035A", "maps": [], @@ -532445,8 +501609,6 @@ }, "description": "01.03.035B, Einzelarbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5603.01.035B", "maps": [], @@ -532479,8 +501641,6 @@ }, "description": "01.03.036, Gruppenarbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5603.01.036", "maps": [], @@ -532513,8 +501673,6 @@ }, "description": "01.03.037A, Einzelarbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5603.01.037A", "maps": [], @@ -532547,8 +501705,6 @@ }, "description": "01.03.037B, Einzelarbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5603.01.037B", "maps": [], @@ -532581,8 +501737,6 @@ }, "description": "01.03.039A, Einzelarbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5603.01.039A", "maps": [], @@ -532615,8 +501769,6 @@ }, "description": "01.03.039B, Einzelarbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5603.01.039B", "maps": [], @@ -532649,8 +501801,6 @@ }, "description": "01.03.040, Gruppenarbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5603.01.040", "maps": [], @@ -532683,8 +501833,6 @@ }, "description": "01.03.041A, Einzelarbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5603.01.041A", "maps": [], @@ -532717,8 +501865,6 @@ }, "description": "01.03.043A, Einzelarbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5603.01.043A", "maps": [], @@ -532751,8 +501897,6 @@ }, "description": "01.03.043B, Einzelarbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5603.01.043B", "maps": [], @@ -532785,8 +501929,6 @@ }, "description": "01.03.045, Gruppenarbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5603.01.045", "maps": [], @@ -532819,8 +501961,6 @@ }, "description": "01.03.045A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5603.01.045A", "maps": [], @@ -532853,8 +501993,6 @@ }, "description": "01.03.045B, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5603.01.045B", "maps": [], @@ -532887,8 +502025,6 @@ }, "description": "01.03.045C, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5603.01.045C", "maps": [], @@ -532921,8 +502057,6 @@ }, "description": "01.03.046, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5603.01.046", "maps": [], @@ -532955,8 +502089,6 @@ }, "description": "01.03.101, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5603.01.101", "maps": [], @@ -532989,8 +502121,6 @@ }, "description": "01.03.102, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5603.01.102", "maps": [], @@ -533023,8 +502153,6 @@ }, "description": "02.03.014, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5603.02.014", "maps": [], @@ -533057,8 +502185,6 @@ }, "description": "02.03.015A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5603.02.015A", "maps": [], @@ -533091,8 +502217,6 @@ }, "description": "02.03.015B, Heizung/L\u00fcftung/Sanit\u00e4r", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5603.02.015B", "maps": [], @@ -533125,8 +502249,6 @@ }, "description": "02.03.016, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5603.02.016", "maps": [], @@ -533159,8 +502281,6 @@ }, "description": "02.03.017, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5603.02.017", "maps": [], @@ -533193,8 +502313,6 @@ }, "description": "02.03.018, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5603.02.018", "maps": [], @@ -533227,8 +502345,6 @@ }, "description": "02.03.019, Lesesaal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5603.02.019", "maps": [], @@ -533261,8 +502377,6 @@ }, "description": "02.03.102, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5603.02.102", "maps": [], @@ -533295,8 +502409,6 @@ }, "description": "03.03.012, Aufzugs- und Maschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5603.03.012", "maps": [], @@ -533329,8 +502441,6 @@ }, "description": "03.03.013, Heizung/L\u00fcftung/Sanit\u00e4r", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5603.03.013", "maps": [], @@ -533363,8 +502473,6 @@ }, "description": "03.03.103, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5603.03.103", "maps": [], @@ -533397,8 +502505,6 @@ }, "description": "00.03.010, Windfang / Spind", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5603.EG.010", "maps": [], @@ -533431,8 +502537,6 @@ }, "description": "00.03.011, Lesesaal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5603.EG.011", "maps": [], @@ -533465,8 +502569,6 @@ }, "description": "00.03.012, Lesesaal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5603.EG.012", "maps": [], @@ -533499,8 +502601,6 @@ }, "description": "00.03.013, Elektrische Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5603.EG.013", "maps": [], @@ -533533,8 +502633,6 @@ }, "description": "00.03.014, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5603.EG.014", "maps": [], @@ -533567,8 +502665,6 @@ }, "description": "00.03.015A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5603.EG.015A", "maps": [], @@ -533601,8 +502697,6 @@ }, "description": "00.03.015B, Heizung/L\u00fcftung/Sanit\u00e4r", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5603.EG.015B", "maps": [], @@ -533635,8 +502729,6 @@ }, "description": "00.03.016, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5603.EG.016", "maps": [], @@ -533669,8 +502761,6 @@ }, "description": "00.03.017, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5603.EG.017", "maps": [], @@ -533703,8 +502793,6 @@ }, "description": "00.03.018, Kopierer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5603.EG.018", "maps": [], @@ -533737,8 +502825,6 @@ }, "description": "00.03.019, Lesesaal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5603.EG.019", "maps": [], @@ -533771,8 +502857,6 @@ }, "description": "00.03.020, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5603.EG.020", "maps": [], @@ -533805,8 +502889,6 @@ }, "description": "00.03.021, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5603.EG.021", "maps": [], @@ -533839,8 +502921,6 @@ }, "description": "00.03.030, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5603.EG.030", "maps": [], @@ -533873,8 +502953,6 @@ }, "description": "00.03.032, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5603.EG.032", "maps": [], @@ -533907,8 +502985,6 @@ }, "description": "00.03.033, Gruppenarbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5603.EG.033", "maps": [], @@ -533941,8 +503017,6 @@ }, "description": "00.03.034, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5603.EG.034", "maps": [], @@ -533975,8 +503049,6 @@ }, "description": "00.03.036, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5603.EG.036", "maps": [], @@ -534009,8 +503081,6 @@ }, "description": "00.03.037, Gruppenarbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5603.EG.037", "maps": [], @@ -534043,8 +503113,6 @@ }, "description": "00.03.038, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5603.EG.038", "maps": [], @@ -534077,8 +503145,6 @@ }, "description": "00.03.039, Gruppenarbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5603.EG.039", "maps": [], @@ -534111,8 +503177,6 @@ }, "description": "00.03.040, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5603.EG.040", "maps": [], @@ -534145,8 +503209,6 @@ }, "description": "00.03.042, Sozialraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5603.EG.042", "maps": [], @@ -534179,8 +503241,6 @@ }, "description": "00.03.045, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5603.EG.045", "maps": [], @@ -534213,8 +503273,6 @@ }, "description": "00.03.050, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5603.EG.050", "maps": [], @@ -534247,8 +503305,6 @@ }, "description": "00.03.101, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5603.EG.101", "maps": [], @@ -534281,8 +503337,6 @@ }, "description": "00.03.102, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5603.EG.102", "maps": [], @@ -534315,8 +503369,6 @@ }, "description": "-1.03.037, Betriebstechn. Anlagen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5603.U1.037", "maps": [], @@ -534349,8 +503401,6 @@ }, "description": "-1.03.037B, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5603.U1.037B", "maps": [], @@ -534383,8 +503433,6 @@ }, "description": "01.04.001, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5604.01.001", "maps": [], @@ -534417,8 +503465,6 @@ }, "description": "01.04.011, Rechnerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5604.01.011", "maps": [], @@ -534451,8 +503497,6 @@ }, "description": "01.04.011A, Balkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5604.01.011A", "maps": [], @@ -534485,8 +503529,6 @@ }, "description": "01.04.013, Lager/Rei\u00dfwolf", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5604.01.013", "maps": [], @@ -534519,8 +503561,6 @@ }, "description": "01.04.014, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5604.01.014", "maps": [], @@ -534553,8 +503593,6 @@ }, "description": "01.04.015, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5604.01.015", "maps": [], @@ -534587,8 +503625,6 @@ }, "description": "01.04.016A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5604.01.016A", "maps": [], @@ -534621,8 +503657,6 @@ }, "description": "01.04.016B, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5604.01.016B", "maps": [], @@ -534655,8 +503689,6 @@ }, "description": "01.04.017, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5604.01.017", "maps": [], @@ -534689,8 +503721,6 @@ }, "description": "01.04.018, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5604.01.018", "maps": [], @@ -534723,8 +503753,6 @@ }, "description": "01.04.019, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5604.01.019", "maps": [], @@ -534757,8 +503785,6 @@ }, "description": "01.04.030, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5604.01.030", "maps": [], @@ -534791,8 +503817,6 @@ }, "description": "01.04.031, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5604.01.031", "maps": [], @@ -534825,8 +503849,6 @@ }, "description": "01.04.032A, Elektrische Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5604.01.032A", "maps": [], @@ -534859,8 +503881,6 @@ }, "description": "01.04.032B, Elektrische Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5604.01.032B", "maps": [], @@ -534893,8 +503913,6 @@ }, "description": "01.04.033, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5604.01.033", "maps": [], @@ -534927,8 +503945,6 @@ }, "description": "01.04.034A, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5604.01.034A", "maps": [], @@ -534961,8 +503977,6 @@ }, "description": "01.04.034B, Kopierraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5604.01.034B", "maps": [], @@ -534995,8 +504009,6 @@ }, "description": "01.04.035, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5604.01.035", "maps": [], @@ -535029,8 +504041,6 @@ }, "description": "01.04.036, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5604.01.036", "maps": [], @@ -535063,8 +504073,6 @@ }, "description": "01.04.037, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5604.01.037", "maps": [], @@ -535097,8 +504105,6 @@ }, "description": "01.04.038, Leiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5604.01.038", "maps": [], @@ -535131,8 +504137,6 @@ }, "description": "01.04.039, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5604.01.039", "maps": [], @@ -535165,8 +504169,6 @@ }, "description": "01.04.040, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5604.01.040", "maps": [], @@ -535199,8 +504201,6 @@ }, "description": "01.04.050, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5604.01.050", "maps": [], @@ -535233,8 +504233,6 @@ }, "description": "01.04.051, Besprechung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5604.01.051", "maps": [], @@ -535267,8 +504265,6 @@ }, "description": "01.04.052, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5604.01.052", "maps": [], @@ -535301,8 +504297,6 @@ }, "description": "01.04.053, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5604.01.053", "maps": [], @@ -535335,8 +504329,6 @@ }, "description": "01.04.054, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5604.01.054", "maps": [], @@ -535369,8 +504361,6 @@ }, "description": "01.04.055, Leiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5604.01.055", "maps": [], @@ -535403,8 +504393,6 @@ }, "description": "01.04.057, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5604.01.057", "maps": [], @@ -535437,8 +504425,6 @@ }, "description": "01.04.058, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5604.01.058", "maps": [], @@ -535471,8 +504457,6 @@ }, "description": "01.04.059, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5604.01.059", "maps": [], @@ -535505,8 +504489,6 @@ }, "description": "01.04.060, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5604.01.060", "maps": [], @@ -535539,8 +504521,6 @@ }, "description": "01.04.061, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5604.01.061", "maps": [], @@ -535573,8 +504553,6 @@ }, "description": "01.04.101, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5604.01.101", "maps": [], @@ -535607,8 +504585,6 @@ }, "description": "01.04.102, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5604.01.102", "maps": [], @@ -535641,8 +504617,6 @@ }, "description": "02.04.001, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5604.02.001", "maps": [], @@ -535706,8 +504680,6 @@ }, "description": "02.04.011A, Balkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5604.02.011A", "maps": [], @@ -535740,8 +504712,6 @@ }, "description": "02.04.013, Abstellraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5604.02.013", "maps": [], @@ -535773,8 +504743,6 @@ }, "description": "02.04.014, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5604.02.014", "maps": [], @@ -535807,8 +504775,6 @@ }, "description": "02.04.015, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5604.02.015", "maps": [], @@ -535841,8 +504807,6 @@ }, "description": "02.04.016A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5604.02.016A", "maps": [], @@ -535875,8 +504839,6 @@ }, "description": "02.04.016B, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5604.02.016B", "maps": [], @@ -535909,8 +504871,6 @@ }, "description": "02.04.017, Abstellraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5604.02.017", "maps": [], @@ -535943,8 +504903,6 @@ }, "description": "02.04.018, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5604.02.018", "maps": [], @@ -535977,8 +504935,6 @@ }, "description": "02.04.019, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5604.02.019", "maps": [], @@ -536011,8 +504967,6 @@ }, "description": "02.04.030, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5604.02.030", "maps": [], @@ -536045,8 +504999,6 @@ }, "description": "02.04.031, Wasserversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5604.02.031", "maps": [], @@ -536079,8 +505031,6 @@ }, "description": "02.04.032A, Elektrische Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5604.02.032A", "maps": [], @@ -536113,8 +505063,6 @@ }, "description": "02.04.032B, Elektrische Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5604.02.032B", "maps": [], @@ -536147,8 +505095,6 @@ }, "description": "02.04.033, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5604.02.033", "maps": [], @@ -536181,8 +505127,6 @@ }, "description": "02.04.034A, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5604.02.034A", "maps": [], @@ -536215,8 +505159,6 @@ }, "description": "02.04.034B, Lager B\u00fcromaterial", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5604.02.034B", "maps": [], @@ -536249,8 +505191,6 @@ }, "description": "02.04.035, B\u00fcro (GKAAM)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5604.02.035", "maps": [], @@ -536282,8 +505222,6 @@ }, "description": "02.04.036, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5604.02.036", "maps": [], @@ -536316,8 +505254,6 @@ }, "description": "02.04.037, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5604.02.037", "maps": [], @@ -536350,8 +505286,6 @@ }, "description": "02.04.038, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5604.02.038", "maps": [], @@ -536384,8 +505318,6 @@ }, "description": "02.04.039, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5604.02.039", "maps": [], @@ -536418,8 +505350,6 @@ }, "description": "02.04.040, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5604.02.040", "maps": [], @@ -536452,8 +505382,6 @@ }, "description": "02.04.050, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5604.02.050", "maps": [], @@ -536486,8 +505414,6 @@ }, "description": "02.04.051, Aufenthalt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5604.02.051", "maps": [], @@ -536520,8 +505446,6 @@ }, "description": "02.04.052, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5604.02.052", "maps": [], @@ -536554,8 +505478,6 @@ }, "description": "02.04.053, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5604.02.053", "maps": [], @@ -536588,8 +505510,6 @@ }, "description": "02.04.054, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5604.02.054", "maps": [], @@ -536622,8 +505542,6 @@ }, "description": "02.04.055, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5604.02.055", "maps": [], @@ -536656,8 +505574,6 @@ }, "description": "02.04.057, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5604.02.057", "maps": [], @@ -536690,8 +505606,6 @@ }, "description": "02.04.058, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5604.02.058", "maps": [], @@ -536724,8 +505638,6 @@ }, "description": "02.04.059, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5604.02.059", "maps": [], @@ -536758,8 +505670,6 @@ }, "description": "02.04.060, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5604.02.060", "maps": [], @@ -536792,8 +505702,6 @@ }, "description": "02.04.061, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5604.02.061", "maps": [], @@ -536826,8 +505734,6 @@ }, "description": "02.04.101, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5604.02.101", "maps": [], @@ -536859,8 +505765,6 @@ }, "description": "02.04.102, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5604.02.102", "maps": [], @@ -536892,8 +505796,6 @@ }, "description": "03.04.001, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5604.03.001", "maps": [], @@ -536926,8 +505828,6 @@ }, "description": "03.04.011, Rechnerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5604.03.011", "maps": [], @@ -536960,8 +505860,6 @@ }, "description": "03.04.011A, Balkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5604.03.011A", "maps": [], @@ -536994,8 +505892,6 @@ }, "description": "03.04.013, Abstellraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5604.03.013", "maps": [], @@ -537027,8 +505923,6 @@ }, "description": "03.04.014, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5604.03.014", "maps": [], @@ -537061,8 +505955,6 @@ }, "description": "03.04.015, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5604.03.015", "maps": [], @@ -537095,8 +505987,6 @@ }, "description": "03.04.016A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5604.03.016A", "maps": [], @@ -537129,8 +506019,6 @@ }, "description": "03.04.016B, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5604.03.016B", "maps": [], @@ -537163,8 +506051,6 @@ }, "description": "03.04.017, Abstellraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5604.03.017", "maps": [], @@ -537197,8 +506083,6 @@ }, "description": "03.04.018, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5604.03.018", "maps": [], @@ -537231,8 +506115,6 @@ }, "description": "03.04.019, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5604.03.019", "maps": [], @@ -537265,8 +506147,6 @@ }, "description": "03.04.030, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5604.03.030", "maps": [], @@ -537299,8 +506179,6 @@ }, "description": "03.04.031, Wasserversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5604.03.031", "maps": [], @@ -537333,8 +506211,6 @@ }, "description": "03.04.032A, Elektrische Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5604.03.032A", "maps": [], @@ -537367,8 +506243,6 @@ }, "description": "03.04.032B, Elektrische Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5604.03.032B", "maps": [], @@ -537401,8 +506275,6 @@ }, "description": "03.04.033, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5604.03.033", "maps": [], @@ -537435,8 +506307,6 @@ }, "description": "03.04.034, Forschungslabor/Server", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5604.03.034", "maps": [], @@ -537469,8 +506339,6 @@ }, "description": "03.04.035, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5604.03.035", "maps": [], @@ -537503,8 +506371,6 @@ }, "description": "03.04.036, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5604.03.036", "maps": [], @@ -537537,8 +506403,6 @@ }, "description": "03.04.037, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5604.03.037", "maps": [], @@ -537571,8 +506435,6 @@ }, "description": "03.04.038, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5604.03.038", "maps": [], @@ -537605,8 +506467,6 @@ }, "description": "03.04.039, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5604.03.039", "maps": [], @@ -537639,8 +506499,6 @@ }, "description": "03.04.040, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5604.03.040", "maps": [], @@ -537673,8 +506531,6 @@ }, "description": "03.04.050, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5604.03.050", "maps": [], @@ -537707,8 +506563,6 @@ }, "description": "03.04.051, Aufenthaltsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5604.03.051", "maps": [], @@ -537741,8 +506595,6 @@ }, "description": "03.04.052, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5604.03.052", "maps": [], @@ -537775,8 +506627,6 @@ }, "description": "03.04.053, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5604.03.053", "maps": [], @@ -537809,8 +506659,6 @@ }, "description": "03.04.054, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5604.03.054", "maps": [], @@ -537843,8 +506691,6 @@ }, "description": "03.04.055, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5604.03.055", "maps": [], @@ -537877,8 +506723,6 @@ }, "description": "03.04.057, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5604.03.057", "maps": [], @@ -537911,8 +506755,6 @@ }, "description": "03.04.058, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5604.03.058", "maps": [], @@ -537945,8 +506787,6 @@ }, "description": "03.04.059, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5604.03.059", "maps": [], @@ -537979,8 +506819,6 @@ }, "description": "03.04.060, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5604.03.060", "maps": [], @@ -538013,8 +506851,6 @@ }, "description": "03.04.061, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5604.03.061", "maps": [], @@ -538047,8 +506883,6 @@ }, "description": "03.04.101, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5604.03.101", "maps": [], @@ -538080,8 +506914,6 @@ }, "description": "03.04.102, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5604.03.102", "maps": [], @@ -538113,8 +506945,6 @@ }, "description": "04.04.018, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5604.DG.018", "maps": [], @@ -538147,8 +506977,6 @@ }, "description": "04.04.019, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5604.DG.019", "maps": [], @@ -538261,8 +507089,6 @@ }, "description": "00.04.012, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5604.EG.012", "maps": [], @@ -538295,8 +507121,6 @@ }, "description": "00.04.013, Abstellraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5604.EG.013", "maps": [], @@ -538329,8 +507153,6 @@ }, "description": "00.04.014, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5604.EG.014", "maps": [], @@ -538363,8 +507185,6 @@ }, "description": "00.04.015, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5604.EG.015", "maps": [], @@ -538397,8 +507217,6 @@ }, "description": "00.04.016A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5604.EG.016A", "maps": [], @@ -538431,8 +507249,6 @@ }, "description": "00.04.016B, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5604.EG.016B", "maps": [], @@ -538465,8 +507281,6 @@ }, "description": "00.04.018, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5604.EG.018", "maps": [], @@ -538499,8 +507313,6 @@ }, "description": "00.04.019, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5604.EG.019", "maps": [], @@ -538533,8 +507345,6 @@ }, "description": "00.04.030, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5604.EG.030", "maps": [], @@ -538567,8 +507377,6 @@ }, "description": "00.04.030A, Rampe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5604.EG.030A", "maps": [], @@ -538601,8 +507409,6 @@ }, "description": "00.04.031, Wasserversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5604.EG.031", "maps": [], @@ -538635,8 +507441,6 @@ }, "description": "00.04.32A, Elektrische Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5604.EG.032A", "maps": [], @@ -538669,8 +507473,6 @@ }, "description": "00.04.032B, Elektrische Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5604.EG.032B", "maps": [], @@ -538703,8 +507505,6 @@ }, "description": "00.04.032C, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5604.EG.032C", "maps": [], @@ -538769,8 +507569,6 @@ }, "description": "00.04.036, Praktikumsraum-Physik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5604.EG.036", "maps": [], @@ -538835,8 +507633,6 @@ }, "description": "00.04.039, Vorbereitungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5604.EG.039", "maps": [], @@ -538869,8 +507665,6 @@ }, "description": "00.04.101, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5604.EG.101", "maps": [], @@ -538903,8 +507697,6 @@ }, "description": "00.04.102, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5604.EG.102", "maps": [], @@ -538937,8 +507729,6 @@ }, "description": "00.04.103, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5604.EG.103", "maps": [], @@ -538971,8 +507761,6 @@ }, "description": "-1.04.011, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5604.U1.011", "maps": [], @@ -539005,8 +507793,6 @@ }, "description": "-1.04.012, Batterieraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5604.U1.012", "maps": [], @@ -539039,8 +507825,6 @@ }, "description": "-1.04.013, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5604.U1.013", "maps": [], @@ -539073,8 +507857,6 @@ }, "description": "-1.04.014, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5604.U1.014", "maps": [], @@ -539107,8 +507889,6 @@ }, "description": "-1.04.015, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5604.U1.015", "maps": [], @@ -539141,8 +507921,6 @@ }, "description": "-1.04.016, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5604.U1.016", "maps": [], @@ -539175,8 +507953,6 @@ }, "description": "-1.04.017A, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5604.U1.017A", "maps": [], @@ -539209,8 +507985,6 @@ }, "description": "-1.04.017B, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5604.U1.017B", "maps": [], @@ -539243,8 +508017,6 @@ }, "description": "-1.04.018, Elektrische Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5604.U1.018", "maps": [], @@ -539277,8 +508049,6 @@ }, "description": "-1.04.019, Umkleide", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5604.U1.019", "maps": [], @@ -539311,8 +508081,6 @@ }, "description": "-1.04.019A, Duschraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5604.U1.019A", "maps": [], @@ -539345,8 +508113,6 @@ }, "description": "-1.04.019B, Duschraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5604.U1.019B", "maps": [], @@ -539379,8 +508145,6 @@ }, "description": "-1.04.020, Heizung/Brauchwassererw\u00e4rmung/Hebeanlag", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5604.U1.020", "maps": [], @@ -539413,8 +508177,6 @@ }, "description": "-1.04.021, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5604.U1.021", "maps": [], @@ -539447,8 +508209,6 @@ }, "description": "-1.04.022, Betriebstechn. Anlagen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5604.U1.022", "maps": [], @@ -539481,8 +508241,6 @@ }, "description": "-1.04.101, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5604.U1.101", "maps": [], @@ -539515,8 +508273,6 @@ }, "description": "01.05.001, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5605.01.001", "maps": [], @@ -539549,8 +508305,6 @@ }, "description": "01.05.012, Praktikumsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5605.01.012", "maps": [], @@ -539583,8 +508337,6 @@ }, "description": "01.05.013, Praktikumsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5605.01.013", "maps": [], @@ -539617,8 +508369,6 @@ }, "description": "01.05.014A, Kopie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5605.01.014A", "maps": [], @@ -539651,8 +508401,6 @@ }, "description": "01.05.014B, Kinderspielraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5605.01.014B", "maps": [], @@ -539685,8 +508433,6 @@ }, "description": "01.05.014C, Balkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5605.01.014C", "maps": [], @@ -539719,8 +508465,6 @@ }, "description": "01.05.015, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5605.01.015", "maps": [], @@ -539753,8 +508497,6 @@ }, "description": "01.05.016, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5605.01.016", "maps": [], @@ -539787,8 +508529,6 @@ }, "description": "01.05.018, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5605.01.018", "maps": [], @@ -539821,8 +508561,6 @@ }, "description": "01.05.019A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5605.01.019A", "maps": [], @@ -539855,8 +508593,6 @@ }, "description": "01.05.019B, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5605.01.019B", "maps": [], @@ -539889,8 +508625,6 @@ }, "description": "01.05.020, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5605.01.020", "maps": [], @@ -539923,8 +508657,6 @@ }, "description": "01.05.021, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5605.01.021", "maps": [], @@ -539957,8 +508689,6 @@ }, "description": "01.05.022, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5605.01.022", "maps": [], @@ -539991,8 +508721,6 @@ }, "description": "01.05.030, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5605.01.030", "maps": [], @@ -540025,8 +508753,6 @@ }, "description": "01.05.031, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5605.01.031", "maps": [], @@ -540059,8 +508785,6 @@ }, "description": "01.05.032A, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5605.01.032A", "maps": [], @@ -540093,8 +508817,6 @@ }, "description": "01.05.032B, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5605.01.032B", "maps": [], @@ -540127,8 +508849,6 @@ }, "description": "01.05.033, Arbeitsraum f\u00fcr Diplomanden", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5605.01.033", "maps": [], @@ -540161,8 +508881,6 @@ }, "description": "01.05.034A, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5605.01.034A", "maps": [], @@ -540195,8 +508913,6 @@ }, "description": "01.05.034B, Kopierraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5605.01.034B", "maps": [], @@ -540229,8 +508945,6 @@ }, "description": "01.05.036, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5605.01.036", "maps": [], @@ -540263,8 +508977,6 @@ }, "description": "01.05.037, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5605.01.037", "maps": [], @@ -540297,8 +509009,6 @@ }, "description": "01.05.038, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5605.01.038", "maps": [], @@ -540331,8 +509041,6 @@ }, "description": "01.05.039, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5605.01.039", "maps": [], @@ -540365,8 +509073,6 @@ }, "description": "01.05.040, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5605.01.040", "maps": [], @@ -540399,8 +509105,6 @@ }, "description": "01.05.041, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5605.01.041", "maps": [], @@ -540433,8 +509137,6 @@ }, "description": "01.05.042, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5605.01.042", "maps": [], @@ -540467,8 +509169,6 @@ }, "description": "01.05.043, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5605.01.043", "maps": [], @@ -540501,8 +509201,6 @@ }, "description": "01.05.044, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5605.01.044", "maps": [], @@ -540535,8 +509233,6 @@ }, "description": "01.05.050, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5605.01.050", "maps": [], @@ -540569,8 +509265,6 @@ }, "description": "01.05.051, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5605.01.051", "maps": [], @@ -540603,8 +509297,6 @@ }, "description": "01.05.052, B\u00fcro Verwaltung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5605.01.052", "maps": [], @@ -540637,8 +509329,6 @@ }, "description": "01.05.053, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5605.01.053", "maps": [], @@ -540671,8 +509361,6 @@ }, "description": "01.05.054, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5605.01.054", "maps": [], @@ -540705,8 +509393,6 @@ }, "description": "01.05.055, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5605.01.055", "maps": [], @@ -540739,8 +509425,6 @@ }, "description": "01.05.057, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5605.01.057", "maps": [], @@ -540773,8 +509457,6 @@ }, "description": "01.05.058, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5605.01.058", "maps": [], @@ -540807,8 +509489,6 @@ }, "description": "01.05.059, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5605.01.059", "maps": [], @@ -540841,8 +509521,6 @@ }, "description": "01.05.060, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5605.01.060", "maps": [], @@ -540875,8 +509553,6 @@ }, "description": "01.05.061, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5605.01.061", "maps": [], @@ -540909,8 +509585,6 @@ }, "description": "01.05.101, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5605.01.101", "maps": [], @@ -540943,8 +509617,6 @@ }, "description": "01.05.102, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5605.01.102", "maps": [], @@ -540977,8 +509649,6 @@ }, "description": "02.05.001, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5605.02.001", "maps": [], @@ -541011,8 +509681,6 @@ }, "description": "02.05.011A, Kopierer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5605.02.011A", "maps": [], @@ -541045,8 +509713,6 @@ }, "description": "02.05.011B, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5605.02.011B", "maps": [], @@ -541079,8 +509745,6 @@ }, "description": "02.05.012, Computerlabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5605.02.012", "maps": [], @@ -541113,8 +509777,6 @@ }, "description": "02.05.014, Praktikumsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5605.02.014", "maps": [], @@ -541147,8 +509809,6 @@ }, "description": "02.05.014A, Balkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5605.02.014A", "maps": [], @@ -541181,8 +509841,6 @@ }, "description": "02.05.015, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5605.02.015", "maps": [], @@ -541215,8 +509873,6 @@ }, "description": "02.05.016, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5605.02.016", "maps": [], @@ -541249,8 +509905,6 @@ }, "description": "02.05.018, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5605.02.018", "maps": [], @@ -541283,8 +509937,6 @@ }, "description": "02.05.019A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5605.02.019A", "maps": [], @@ -541317,8 +509969,6 @@ }, "description": "02.05.019B, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5605.02.019B", "maps": [], @@ -541351,8 +510001,6 @@ }, "description": "02.05.020, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5605.02.020", "maps": [], @@ -541385,8 +510033,6 @@ }, "description": "02.05.021, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5605.02.021", "maps": [], @@ -541419,8 +510065,6 @@ }, "description": "02.05.022, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5605.02.022", "maps": [], @@ -541453,8 +510097,6 @@ }, "description": "02.05.030, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5605.02.030", "maps": [], @@ -541487,8 +510129,6 @@ }, "description": "02.05.031, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5605.02.031", "maps": [], @@ -541521,8 +510161,6 @@ }, "description": "02.05.032A, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5605.02.032A", "maps": [], @@ -541555,8 +510193,6 @@ }, "description": "02.05.032B, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5605.02.032B", "maps": [], @@ -541589,8 +510225,6 @@ }, "description": "02.05.033, Praktikumsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5605.02.033", "maps": [], @@ -541623,8 +510257,6 @@ }, "description": "02.05.034A, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5605.02.034A", "maps": [], @@ -541657,8 +510289,6 @@ }, "description": "02.05.034B, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5605.02.034B", "maps": [], @@ -541691,8 +510321,6 @@ }, "description": "02.05.036, \u00dcbung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5605.02.036", "maps": [], @@ -541725,8 +510353,6 @@ }, "description": "02.05.037, Besprechung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5605.02.037", "maps": [], @@ -541759,8 +510385,6 @@ }, "description": "02.05.040, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5605.02.040", "maps": [], @@ -541793,8 +510417,6 @@ }, "description": "02.05.041, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5605.02.041", "maps": [], @@ -541827,8 +510449,6 @@ }, "description": "02.05.042, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5605.02.042", "maps": [], @@ -541861,8 +510481,6 @@ }, "description": "02.05.043, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5605.02.043", "maps": [], @@ -541895,8 +510513,6 @@ }, "description": "02.05.044, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5605.02.044", "maps": [], @@ -541929,8 +510545,6 @@ }, "description": "02.05.050, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5605.02.050", "maps": [], @@ -541963,8 +510577,6 @@ }, "description": "02.05.051, Aufenthalt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5605.02.051", "maps": [], @@ -541997,8 +510609,6 @@ }, "description": "02.05.052, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5605.02.052", "maps": [], @@ -542031,8 +510641,6 @@ }, "description": "02.05.053, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5605.02.053", "maps": [], @@ -542065,8 +510673,6 @@ }, "description": "02.05.054, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5605.02.054", "maps": [], @@ -542099,8 +510705,6 @@ }, "description": "02.05.055, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5605.02.055", "maps": [], @@ -542133,8 +510737,6 @@ }, "description": "02.05.057, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5605.02.057", "maps": [], @@ -542167,8 +510769,6 @@ }, "description": "02.05.058, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5605.02.058", "maps": [], @@ -542201,8 +510801,6 @@ }, "description": "02.05.059, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5605.02.059", "maps": [], @@ -542235,8 +510833,6 @@ }, "description": "02.05.060, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5605.02.060", "maps": [], @@ -542269,8 +510865,6 @@ }, "description": "02.05.061, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5605.02.061", "maps": [], @@ -542303,8 +510897,6 @@ }, "description": "02.05.101, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5605.02.101", "maps": [], @@ -542337,8 +510929,6 @@ }, "description": "02.05.102, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5605.02.102", "maps": [], @@ -542371,8 +510961,6 @@ }, "description": "03.05.001, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5605.03.001", "maps": [], @@ -542405,8 +510993,6 @@ }, "description": "03.05.011A, Kopierraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5605.03.011A", "maps": [], @@ -542439,8 +511025,6 @@ }, "description": "03.05.011B, Besprechung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5605.03.011B", "maps": [], @@ -542473,8 +511057,6 @@ }, "description": "03.05.012, Praktikumsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5605.03.012", "maps": [], @@ -542507,8 +511089,6 @@ }, "description": "03.05.014, Praktikumsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5605.03.014", "maps": [], @@ -542541,8 +511121,6 @@ }, "description": "03.05.014A, Balkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5605.03.014A", "maps": [], @@ -542575,8 +511153,6 @@ }, "description": "03.05.015, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5605.03.015", "maps": [], @@ -542609,8 +511185,6 @@ }, "description": "03.05.016, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5605.03.016", "maps": [], @@ -542643,8 +511217,6 @@ }, "description": "03.05.018, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5605.03.018", "maps": [], @@ -542677,8 +511249,6 @@ }, "description": "03.05.019A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5605.03.019A", "maps": [], @@ -542711,8 +511281,6 @@ }, "description": "03.05.019B, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5605.03.019B", "maps": [], @@ -542745,8 +511313,6 @@ }, "description": "03.05.020, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5605.03.020", "maps": [], @@ -542779,8 +511345,6 @@ }, "description": "03.05.021, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5605.03.021", "maps": [], @@ -542813,8 +511377,6 @@ }, "description": "03.05.022, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5605.03.022", "maps": [], @@ -542847,8 +511409,6 @@ }, "description": "03.05.030, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5605.03.030", "maps": [], @@ -542881,8 +511441,6 @@ }, "description": "03.05.031, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5605.03.031", "maps": [], @@ -542915,8 +511473,6 @@ }, "description": "03.05.032A, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5605.03.032A", "maps": [], @@ -542949,8 +511505,6 @@ }, "description": "03.05.032B, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5605.03.032B", "maps": [], @@ -542983,8 +511537,6 @@ }, "description": "03.05.033, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5605.03.033", "maps": [], @@ -543017,8 +511569,6 @@ }, "description": "03.05.034A, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5605.03.034A", "maps": [], @@ -543051,8 +511601,6 @@ }, "description": "03.05.034B, Lager/B\u00fcromaterial", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5605.03.034B", "maps": [], @@ -543085,8 +511633,6 @@ }, "description": "03.05.036, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5605.03.036", "maps": [], @@ -543119,8 +511665,6 @@ }, "description": "03.05.037, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5605.03.037", "maps": [], @@ -543153,8 +511697,6 @@ }, "description": "03.05.038, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5605.03.038", "maps": [], @@ -543187,8 +511729,6 @@ }, "description": "03.05.039, Computerlabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5605.03.039", "maps": [], @@ -543221,8 +511761,6 @@ }, "description": "03.05.040, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5605.03.040", "maps": [], @@ -543255,8 +511793,6 @@ }, "description": "03.05.041, Computerlabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5605.03.041", "maps": [], @@ -543289,8 +511825,6 @@ }, "description": "03.05.042, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5605.03.042", "maps": [], @@ -543323,8 +511857,6 @@ }, "description": "03.05.043, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5605.03.043", "maps": [], @@ -543357,8 +511889,6 @@ }, "description": "03.05.044, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5605.03.044", "maps": [], @@ -543391,8 +511921,6 @@ }, "description": "03.05.050, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5605.03.050", "maps": [], @@ -543425,8 +511953,6 @@ }, "description": "03.05.051, Aufenthalt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5605.03.051", "maps": [], @@ -543459,8 +511985,6 @@ }, "description": "03.05.052, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5605.03.052", "maps": [], @@ -543493,8 +512017,6 @@ }, "description": "03.05.053, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5605.03.053", "maps": [], @@ -543527,8 +512049,6 @@ }, "description": "03.05.054, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5605.03.054", "maps": [], @@ -543561,8 +512081,6 @@ }, "description": "03.05.055, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5605.03.055", "maps": [], @@ -543595,8 +512113,6 @@ }, "description": "03.05.057, Praktikumsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5605.03.057", "maps": [], @@ -543629,8 +512145,6 @@ }, "description": "03.05.058, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5605.03.058", "maps": [], @@ -543663,8 +512177,6 @@ }, "description": "03.05.059, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5605.03.059", "maps": [], @@ -543697,8 +512209,6 @@ }, "description": "03.05.060, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5605.03.060", "maps": [], @@ -543731,8 +512241,6 @@ }, "description": "03.05.061, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5605.03.061", "maps": [], @@ -543765,8 +512273,6 @@ }, "description": "03.05.101, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5605.03.101", "maps": [], @@ -543799,8 +512305,6 @@ }, "description": "03.05.102, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5605.03.102", "maps": [], @@ -543833,8 +512337,6 @@ }, "description": "04.05.015, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5605.DG.015", "maps": [], @@ -543867,8 +512369,6 @@ }, "description": "04.05.020, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5605.DG.020", "maps": [], @@ -543901,8 +512401,6 @@ }, "description": "04.05.021, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5605.DG.021", "maps": [], @@ -543935,8 +512433,6 @@ }, "description": "00.05.011, Rechnerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5605.EG.011", "maps": [], @@ -543969,8 +512465,6 @@ }, "description": "00.05.011A, Balkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5605.EG.011A", "maps": [], @@ -544003,8 +512497,6 @@ }, "description": "00.05.015, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5605.EG.015", "maps": [], @@ -544037,8 +512529,6 @@ }, "description": "00.05.016, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5605.EG.016", "maps": [], @@ -544071,8 +512561,6 @@ }, "description": "00.05.017, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5605.EG.017", "maps": [], @@ -544105,8 +512593,6 @@ }, "description": "00.05.018, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5605.EG.018", "maps": [], @@ -544139,8 +512625,6 @@ }, "description": "00.05.019, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5605.EG.019", "maps": [], @@ -544173,8 +512657,6 @@ }, "description": "00.05.020, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5605.EG.020", "maps": [], @@ -544207,8 +512689,6 @@ }, "description": "00.05.021, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5605.EG.021", "maps": [], @@ -544241,8 +512721,6 @@ }, "description": "00.05.030, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5605.EG.030", "maps": [], @@ -544275,8 +512753,6 @@ }, "description": "00.05.031, Wasserversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5605.EG.031", "maps": [], @@ -544309,8 +512785,6 @@ }, "description": "00.05.032A, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5605.EG.032A", "maps": [], @@ -544343,8 +512817,6 @@ }, "description": "00.05.032B, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5605.EG.032B", "maps": [], @@ -544377,8 +512849,6 @@ }, "description": "00.05.033, Raumlufttechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5605.EG.033", "maps": [], @@ -544411,8 +512881,6 @@ }, "description": "00.05.034, Kopierraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5605.EG.034", "maps": [], @@ -544445,8 +512913,6 @@ }, "description": "00.05.035, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5605.EG.035", "maps": [], @@ -544479,8 +512945,6 @@ }, "description": "00.05.036A, Aufenthaltsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5605.EG.036A", "maps": [], @@ -544513,8 +512977,6 @@ }, "description": "00.05.036B, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5605.EG.036B", "maps": [], @@ -544547,8 +513009,6 @@ }, "description": "00.05.038, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5605.EG.038", "maps": [], @@ -544581,8 +513041,6 @@ }, "description": "00.05.040, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5605.EG.040", "maps": [], @@ -544615,8 +513073,6 @@ }, "description": "00.05.041, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5605.EG.041", "maps": [], @@ -544649,8 +513105,6 @@ }, "description": "00.05.042, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5605.EG.042", "maps": [], @@ -544683,8 +513137,6 @@ }, "description": "00.05.043, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5605.EG.043", "maps": [], @@ -544717,8 +513169,6 @@ }, "description": "00.05.044, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5605.EG.044", "maps": [], @@ -544751,8 +513201,6 @@ }, "description": "00.05.050, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5605.EG.050", "maps": [], @@ -544785,8 +513233,6 @@ }, "description": "00.05.052, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5605.EG.052", "maps": [], @@ -544819,8 +513265,6 @@ }, "description": "00.05.053, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5605.EG.053", "maps": [], @@ -544853,8 +513297,6 @@ }, "description": "00.05.055, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5605.EG.055", "maps": [], @@ -544887,8 +513329,6 @@ }, "description": "00.05.056, B\u00fcro Leiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5605.EG.056", "maps": [], @@ -544921,8 +513361,6 @@ }, "description": "00.05.057, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5605.EG.057", "maps": [], @@ -544955,8 +513393,6 @@ }, "description": "00.05.058, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5605.EG.058", "maps": [], @@ -544989,8 +513425,6 @@ }, "description": "00.05.059, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5605.EG.059", "maps": [], @@ -545023,8 +513457,6 @@ }, "description": "00.05.060, B\u00fcro Verwaltung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5605.EG.060", "maps": [], @@ -545057,8 +513489,6 @@ }, "description": "00.05.061, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5605.EG.061", "maps": [], @@ -545091,8 +513521,6 @@ }, "description": "00.05.101, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5605.EG.101", "maps": [], @@ -545125,8 +513553,6 @@ }, "description": "00.05.102, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5605.EG.102", "maps": [], @@ -545159,8 +513585,6 @@ }, "description": "-1.05.008, Personenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5605.U1.008", "maps": [], @@ -545193,8 +513617,6 @@ }, "description": "-1.05.011, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5605.U1.011", "maps": [], @@ -545227,8 +513649,6 @@ }, "description": "-1.05.012, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5605.U1.012", "maps": [], @@ -545261,8 +513681,6 @@ }, "description": "-1.05.013A, Umkleide", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5605.U1.013A", "maps": [], @@ -545294,8 +513712,6 @@ }, "description": "-1.05.013B, Waschraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5605.U1.013B", "maps": [], @@ -545327,8 +513743,6 @@ }, "description": "-1.05.013C, Duschraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5605.U1.013C", "maps": [], @@ -545360,8 +513774,6 @@ }, "description": "-1.05.014A, Umkleide", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5605.U1.014A", "maps": [], @@ -545394,8 +513806,6 @@ }, "description": "-1.05.014B, Waschraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5605.U1.014B", "maps": [], @@ -545428,8 +513838,6 @@ }, "description": "-1.05.014C, Duschraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5605.U1.014C", "maps": [], @@ -545462,8 +513870,6 @@ }, "description": "-1.05.015, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5605.U1.015", "maps": [], @@ -545496,8 +513902,6 @@ }, "description": "-1.05.016, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5605.U1.016", "maps": [], @@ -545530,8 +513934,6 @@ }, "description": "-1.05.017, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5605.U1.017", "maps": [], @@ -545564,8 +513966,6 @@ }, "description": "-1.05.018, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5605.U1.018", "maps": [], @@ -545598,8 +513998,6 @@ }, "description": "-1.05.019, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5605.U1.019", "maps": [], @@ -545632,8 +514030,6 @@ }, "description": "-1.05.020, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5605.U1.020", "maps": [], @@ -545666,8 +514062,6 @@ }, "description": "-1.05.101, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5605.U1.101", "maps": [], @@ -545700,8 +514094,6 @@ }, "description": "01.06.001, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5606.01.001", "maps": [], @@ -545734,8 +514126,6 @@ }, "description": "01.06.011, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5606.01.011", "maps": [], @@ -545768,8 +514158,6 @@ }, "description": "01.06.011A, Balkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5606.01.011A", "maps": [], @@ -545802,8 +514190,6 @@ }, "description": "01.06.013, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5606.01.013", "maps": [], @@ -545836,8 +514222,6 @@ }, "description": "01.06.014, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5606.01.014", "maps": [], @@ -545870,8 +514254,6 @@ }, "description": "01.06.015, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5606.01.015", "maps": [], @@ -545904,8 +514286,6 @@ }, "description": "01.06.016, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5606.01.016", "maps": [], @@ -545938,8 +514318,6 @@ }, "description": "01.06.017A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5606.01.017A", "maps": [], @@ -545972,8 +514350,6 @@ }, "description": "01.06.017B, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5606.01.017B", "maps": [], @@ -546006,8 +514382,6 @@ }, "description": "01.06.018, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5606.01.018", "maps": [], @@ -546040,8 +514414,6 @@ }, "description": "01.06.019, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5606.01.019", "maps": [], @@ -546074,8 +514446,6 @@ }, "description": "01.06.020, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5606.01.020", "maps": [], @@ -546108,8 +514478,6 @@ }, "description": "01.06.020A, Balkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5606.01.020A", "maps": [], @@ -546142,8 +514510,6 @@ }, "description": "01.06.022A, Kopierer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5606.01.022A", "maps": [], @@ -546176,8 +514542,6 @@ }, "description": "01.06.022B, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5606.01.022B", "maps": [], @@ -546210,8 +514574,6 @@ }, "description": "01.06.030, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5606.01.030", "maps": [], @@ -546244,8 +514606,6 @@ }, "description": "01.06.031, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5606.01.031", "maps": [], @@ -546278,8 +514638,6 @@ }, "description": "01.06.032A, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5606.01.032A", "maps": [], @@ -546312,8 +514670,6 @@ }, "description": "01.06.032B, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5606.01.032B", "maps": [], @@ -546346,8 +514702,6 @@ }, "description": "01.06.033, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5606.01.033", "maps": [], @@ -546380,8 +514734,6 @@ }, "description": "01.06.034A, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5606.01.034A", "maps": [], @@ -546414,8 +514766,6 @@ }, "description": "01.06.034B, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5606.01.034B", "maps": [], @@ -546448,8 +514798,6 @@ }, "description": "01.06.035, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5606.01.035", "maps": [], @@ -546482,8 +514830,6 @@ }, "description": "01.06.036, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5606.01.036", "maps": [], @@ -546516,8 +514862,6 @@ }, "description": "01.06.037, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5606.01.037", "maps": [], @@ -546550,8 +514894,6 @@ }, "description": "01.06.038, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5606.01.038", "maps": [], @@ -546584,8 +514926,6 @@ }, "description": "01.06.039, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5606.01.039", "maps": [], @@ -546618,8 +514958,6 @@ }, "description": "01.06.040, B\u00fcro Verwaltung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5606.01.040", "maps": [], @@ -546652,8 +514990,6 @@ }, "description": "01.06.050, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5606.01.050", "maps": [], @@ -546686,8 +515022,6 @@ }, "description": "01.06.051, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5606.01.051", "maps": [], @@ -546720,8 +515054,6 @@ }, "description": "01.06.052, Besprechung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5606.01.052", "maps": [], @@ -546754,8 +515086,6 @@ }, "description": "01.06.053, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5606.01.053", "maps": [], @@ -546788,8 +515118,6 @@ }, "description": "01.06.054, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5606.01.054", "maps": [], @@ -546822,8 +515150,6 @@ }, "description": "01.06.055, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5606.01.055", "maps": [], @@ -546856,8 +515182,6 @@ }, "description": "01.06.056, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5606.01.056", "maps": [], @@ -546890,8 +515214,6 @@ }, "description": "01.06.057, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5606.01.057", "maps": [], @@ -546924,8 +515246,6 @@ }, "description": "01.06.058, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5606.01.058", "maps": [], @@ -546958,8 +515278,6 @@ }, "description": "01.06.059, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5606.01.059", "maps": [], @@ -546992,8 +515310,6 @@ }, "description": "01.06.060, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5606.01.060", "maps": [], @@ -547026,8 +515342,6 @@ }, "description": "01.06.061, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5606.01.061", "maps": [], @@ -547060,8 +515374,6 @@ }, "description": "01.06.101, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5606.01.101", "maps": [], @@ -547094,8 +515406,6 @@ }, "description": "01.06.102, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5606.01.102", "maps": [], @@ -547128,8 +515438,6 @@ }, "description": "02.06.001, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5606.02.001", "maps": [], @@ -547162,8 +515470,6 @@ }, "description": "02.06.011, Rechnerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5606.02.011", "maps": [], @@ -547196,8 +515502,6 @@ }, "description": "02.06.011A, Balkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5606.02.011A", "maps": [], @@ -547230,8 +515534,6 @@ }, "description": "02.06.013, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5606.02.013", "maps": [], @@ -547264,8 +515566,6 @@ }, "description": "02.06.014, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5606.02.014", "maps": [], @@ -547298,8 +515598,6 @@ }, "description": "02.06.015, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5606.02.015", "maps": [], @@ -547332,8 +515630,6 @@ }, "description": "02.06.016, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5606.02.016", "maps": [], @@ -547366,8 +515662,6 @@ }, "description": "02.06.017A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5606.02.017A", "maps": [], @@ -547400,8 +515694,6 @@ }, "description": "02.06.017B, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5606.02.017B", "maps": [], @@ -547434,8 +515726,6 @@ }, "description": "02.06.018, Abstellraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5606.02.018", "maps": [], @@ -547468,8 +515758,6 @@ }, "description": "02.06.019, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5606.02.019", "maps": [], @@ -547502,8 +515790,6 @@ }, "description": "02.06.020, Rechnerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5606.02.020", "maps": [], @@ -547536,8 +515822,6 @@ }, "description": "02.06.020A, Balkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5606.02.020A", "maps": [], @@ -547570,8 +515854,6 @@ }, "description": "02.06.021, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5606.02.021", "maps": [], @@ -547604,8 +515886,6 @@ }, "description": "02.06.022A, Kopierer (M9/M10)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5606.02.022A", "maps": [], @@ -547668,8 +515948,6 @@ }, "description": "02.06.030, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5606.02.030", "maps": [], @@ -547702,8 +515980,6 @@ }, "description": "02.06.031, Wasserversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5606.02.031", "maps": [], @@ -547736,8 +516012,6 @@ }, "description": "02.06.032A, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5606.02.032A", "maps": [], @@ -547770,8 +516044,6 @@ }, "description": "02.06.032B, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5606.02.032B", "maps": [], @@ -547804,8 +516076,6 @@ }, "description": "02.06.033, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5606.02.033", "maps": [], @@ -547838,8 +516108,6 @@ }, "description": "02.06.034A, Drucker", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5606.02.034A", "maps": [], @@ -547872,8 +516140,6 @@ }, "description": "02.06.034B, Archiv", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5606.02.034B", "maps": [], @@ -547906,8 +516172,6 @@ }, "description": "02.06.035, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5606.02.035", "maps": [], @@ -547940,8 +516204,6 @@ }, "description": "02.06.036, Rechnerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5606.02.036", "maps": [], @@ -547974,8 +516236,6 @@ }, "description": "02.06.037, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5606.02.037", "maps": [], @@ -548008,8 +516268,6 @@ }, "description": "02.06.038, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5606.02.038", "maps": [], @@ -548042,8 +516300,6 @@ }, "description": "02.06.039, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5606.02.039", "maps": [], @@ -548076,8 +516332,6 @@ }, "description": "02.06.040, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5606.02.040", "maps": [], @@ -548110,8 +516364,6 @@ }, "description": "02.06.050, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5606.02.050", "maps": [], @@ -548144,8 +516396,6 @@ }, "description": "02.06.051, Aufenthaltsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5606.02.051", "maps": [], @@ -548178,8 +516428,6 @@ }, "description": "02.06.052, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5606.02.052", "maps": [], @@ -548212,8 +516460,6 @@ }, "description": "02.06.053, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5606.02.053", "maps": [], @@ -548246,8 +516492,6 @@ }, "description": "02.06.054, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5606.02.054", "maps": [], @@ -548280,8 +516524,6 @@ }, "description": "02.06.055, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5606.02.055", "maps": [], @@ -548314,8 +516556,6 @@ }, "description": "02.06.057, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5606.02.057", "maps": [], @@ -548348,8 +516588,6 @@ }, "description": "02.06.058, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5606.02.058", "maps": [], @@ -548382,8 +516620,6 @@ }, "description": "02.06.059, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5606.02.059", "maps": [], @@ -548416,8 +516652,6 @@ }, "description": "02.06.060, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5606.02.060", "maps": [], @@ -548450,8 +516684,6 @@ }, "description": "02.06.061, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5606.02.061", "maps": [], @@ -548484,8 +516716,6 @@ }, "description": "02.06.101, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5606.02.101", "maps": [], @@ -548517,8 +516747,6 @@ }, "description": "02.06.102, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5606.02.102", "maps": [], @@ -548550,8 +516778,6 @@ }, "description": "03.06.001, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5606.03.001", "maps": [], @@ -548615,8 +516841,6 @@ }, "description": "03.06.011A, Balkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5606.03.011A", "maps": [], @@ -548649,8 +516873,6 @@ }, "description": "03.06.013, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5606.03.013", "maps": [], @@ -548683,8 +516905,6 @@ }, "description": "03.06.014, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5606.03.014", "maps": [], @@ -548717,8 +516937,6 @@ }, "description": "03.06.015, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5606.03.015", "maps": [], @@ -548751,8 +516969,6 @@ }, "description": "03.06.016, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5606.03.016", "maps": [], @@ -548785,8 +517001,6 @@ }, "description": "03.06.017A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5606.03.017A", "maps": [], @@ -548819,8 +517033,6 @@ }, "description": "03.06.017B, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5606.03.017B", "maps": [], @@ -548853,8 +517065,6 @@ }, "description": "03.06.018, Abstellraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5606.03.018", "maps": [], @@ -548887,8 +517097,6 @@ }, "description": "03.06.019, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5606.03.019", "maps": [], @@ -548921,8 +517129,6 @@ }, "description": "03.06.020, Rechnerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5606.03.020", "maps": [], @@ -548955,8 +517161,6 @@ }, "description": "03.06.020A, Balkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5606.03.020A", "maps": [], @@ -548989,8 +517193,6 @@ }, "description": "03.06.021, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5606.03.021", "maps": [], @@ -549023,8 +517225,6 @@ }, "description": "03.06.022A, Kopierer (M6/M8)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5606.03.022A", "maps": [], @@ -549087,8 +517287,6 @@ }, "description": "03.06.030, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5606.03.030", "maps": [], @@ -549121,8 +517319,6 @@ }, "description": "03.06.031, Wasserversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5606.03.031", "maps": [], @@ -549155,8 +517351,6 @@ }, "description": "03.06.032A, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5606.03.032A", "maps": [], @@ -549189,8 +517383,6 @@ }, "description": "03.06.032B, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5606.03.032B", "maps": [], @@ -549223,8 +517415,6 @@ }, "description": "03.06.033, B\u00fcro (M6/M8)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5606.03.033", "maps": [], @@ -549257,8 +517447,6 @@ }, "description": "03.06.034A, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5606.03.034A", "maps": [], @@ -549291,8 +517479,6 @@ }, "description": "03.06.034B, Lager/B\u00fcromaterial", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5606.03.034B", "maps": [], @@ -549325,8 +517511,6 @@ }, "description": "03.06.035, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5606.03.035", "maps": [], @@ -549359,8 +517543,6 @@ }, "description": "03.06.036, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5606.03.036", "maps": [], @@ -549393,8 +517575,6 @@ }, "description": "03.06.037, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5606.03.037", "maps": [], @@ -549427,8 +517607,6 @@ }, "description": "03.06.038, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5606.03.038", "maps": [], @@ -549461,8 +517639,6 @@ }, "description": "03.06.039, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5606.03.039", "maps": [], @@ -549495,8 +517671,6 @@ }, "description": "03.06.040, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5606.03.040", "maps": [], @@ -549529,8 +517703,6 @@ }, "description": "03.06.050, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5606.03.050", "maps": [], @@ -549563,8 +517735,6 @@ }, "description": "03.06.051, Aufenthaltsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5606.03.051", "maps": [], @@ -549597,8 +517767,6 @@ }, "description": "03.06.052, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5606.03.052", "maps": [], @@ -549631,8 +517799,6 @@ }, "description": "03.06.053, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5606.03.053", "maps": [], @@ -549665,8 +517831,6 @@ }, "description": "03.06.054, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5606.03.054", "maps": [], @@ -549699,8 +517863,6 @@ }, "description": "03.05.055, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5606.03.055", "maps": [], @@ -549733,8 +517895,6 @@ }, "description": "03.06.057, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5606.03.057", "maps": [], @@ -549767,8 +517927,6 @@ }, "description": "03.06.058, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5606.03.058", "maps": [], @@ -549801,8 +517959,6 @@ }, "description": "03.06.059, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5606.03.059", "maps": [], @@ -549835,8 +517991,6 @@ }, "description": "03.06.060, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5606.03.060", "maps": [], @@ -549869,8 +518023,6 @@ }, "description": "03.06.061, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5606.03.061", "maps": [], @@ -549903,8 +518055,6 @@ }, "description": "03.06.101, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5606.03.101", "maps": [], @@ -549936,8 +518086,6 @@ }, "description": "03.06.102, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5606.03.102", "maps": [], @@ -549969,8 +518117,6 @@ }, "description": "04.06.013, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5606.04.013", "maps": [], @@ -550003,8 +518149,6 @@ }, "description": "04.06.019, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5606.04.019", "maps": [], @@ -550037,8 +518181,6 @@ }, "description": "04.06.020, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5606.04.020", "maps": [], @@ -550151,8 +518293,6 @@ }, "description": "00.06.013, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5606.EG.013", "maps": [], @@ -550185,8 +518325,6 @@ }, "description": "00.06.014, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5606.EG.014", "maps": [], @@ -550219,8 +518357,6 @@ }, "description": "00.06.015, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5606.EG.015", "maps": [], @@ -550253,8 +518389,6 @@ }, "description": "00.06.016, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5606.EG.016", "maps": [], @@ -550287,8 +518421,6 @@ }, "description": "00.06.017A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5606.EG.017A", "maps": [], @@ -550321,8 +518453,6 @@ }, "description": "00.06.017B, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5606.EG.017B", "maps": [], @@ -550355,8 +518485,6 @@ }, "description": "00.06.018, Abstellraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5606.EG.018", "maps": [], @@ -550389,8 +518517,6 @@ }, "description": "00.06.019, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5606.EG.019", "maps": [], @@ -550423,8 +518549,6 @@ }, "description": "00.06.021, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5606.EG.021", "maps": [], @@ -550457,8 +518581,6 @@ }, "description": "00.06.030, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5606.EG.030", "maps": [], @@ -550491,8 +518613,6 @@ }, "description": "00.06.031, Dusche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5606.EG.031", "maps": [], @@ -550525,8 +518645,6 @@ }, "description": "00.06.032A, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5606.EG.032A", "maps": [], @@ -550559,8 +518677,6 @@ }, "description": "00.06.032B, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5606.EG.032B", "maps": [], @@ -550593,8 +518709,6 @@ }, "description": "00.06.033, Besprechungsraum/Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5606.EG.033", "maps": [], @@ -550627,8 +518741,6 @@ }, "description": "00.06.034, Sanit\u00e4tsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5606.EG.034", "maps": [], @@ -550661,8 +518773,6 @@ }, "description": "00.06.036, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5606.EG.036", "maps": [], @@ -550695,8 +518805,6 @@ }, "description": "00.06.037, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5606.EG.037", "maps": [], @@ -550729,8 +518837,6 @@ }, "description": "00.06.038, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5606.EG.038", "maps": [], @@ -550763,8 +518869,6 @@ }, "description": "00.06.039, Ausgabe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5606.EG.039", "maps": [], @@ -550797,8 +518901,6 @@ }, "description": "00.06.040, Post", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5606.EG.040", "maps": [], @@ -550831,8 +518933,6 @@ }, "description": "00.06.041, Drucker", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5606.EG.041", "maps": [], @@ -550865,8 +518965,6 @@ }, "description": "00.06.042, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5606.EG.042", "maps": [], @@ -550899,8 +518997,6 @@ }, "description": "00.06.050, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5606.EG.050", "maps": [], @@ -550933,8 +519029,6 @@ }, "description": "00.06.050A, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5606.EG.050A", "maps": [], @@ -550967,8 +519061,6 @@ }, "description": "00.06.052, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5606.EG.052", "maps": [], @@ -551001,8 +519093,6 @@ }, "description": "00.06.054, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5606.EG.054", "maps": [], @@ -551035,8 +519125,6 @@ }, "description": "00.06.055, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5606.EG.055", "maps": [], @@ -551069,8 +519157,6 @@ }, "description": "00.06.056, Pausenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5606.EG.056", "maps": [], @@ -551103,8 +519189,6 @@ }, "description": "00.06.057, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5606.EG.057", "maps": [], @@ -551137,8 +519221,6 @@ }, "description": "00.06.058, Pausenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5606.EG.058", "maps": [], @@ -551171,8 +519253,6 @@ }, "description": "00.06.059, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5606.EG.059", "maps": [], @@ -551205,8 +519285,6 @@ }, "description": "00.06.101, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5606.EG.101", "maps": [], @@ -551239,8 +519317,6 @@ }, "description": "00.06.102, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5606.EG.102", "maps": [], @@ -551273,8 +519349,6 @@ }, "description": "-1.06.011, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5606.U1.011", "maps": [], @@ -551307,8 +519381,6 @@ }, "description": "-1.06.012, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5606.U1.012", "maps": [], @@ -551341,8 +519413,6 @@ }, "description": "-1.06.013, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5606.U1.013", "maps": [], @@ -551375,8 +519445,6 @@ }, "description": "-1.06.014, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5606.U1.014", "maps": [], @@ -551409,8 +519477,6 @@ }, "description": "-1.06.015, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5606.U1.015", "maps": [], @@ -551443,8 +519509,6 @@ }, "description": "-1.06.016A, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5606.U1.016A", "maps": [], @@ -551477,8 +519541,6 @@ }, "description": "-1.06.016B, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5606.U1.016B", "maps": [], @@ -551511,8 +519573,6 @@ }, "description": "-1.06.017A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5606.U1.017A", "maps": [], @@ -551545,8 +519605,6 @@ }, "description": "-1.06.017B, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5606.U1.017B", "maps": [], @@ -551579,8 +519637,6 @@ }, "description": "-1.06.018, Abstellraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5606.U1.018", "maps": [], @@ -551613,8 +519669,6 @@ }, "description": "-1.06.019, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5606.U1.019", "maps": [], @@ -551647,8 +519701,6 @@ }, "description": "-1.06.020, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5606.U1.020", "maps": [], @@ -551681,8 +519733,6 @@ }, "description": "-1.06.021, RLT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5606.U1.021", "maps": [], @@ -551715,8 +519765,6 @@ }, "description": "-1.06.031, Wasserversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5606.U1.031", "maps": [], @@ -551749,8 +519797,6 @@ }, "description": "-1.06.032, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5606.U1.032", "maps": [], @@ -551783,8 +519829,6 @@ }, "description": "-1.06.033, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5606.U1.033", "maps": [], @@ -551817,8 +519861,6 @@ }, "description": "-1.06.034, Umkleide", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5606.U1.034", "maps": [], @@ -551851,8 +519893,6 @@ }, "description": "-1.06.034A, Duschraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5606.U1.034A", "maps": [], @@ -551885,8 +519925,6 @@ }, "description": "-1.06.034B, Duschraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5606.U1.034B", "maps": [], @@ -551919,8 +519957,6 @@ }, "description": "-1.06.035, Pausenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5606.U1.035", "maps": [], @@ -551953,8 +519989,6 @@ }, "description": "-1.06.036, Umkleide", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5606.U1.036", "maps": [], @@ -551987,8 +520021,6 @@ }, "description": "-1.06.036A, Duschraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5606.U1.036A", "maps": [], @@ -552021,8 +520053,6 @@ }, "description": "-1.06.036B, Duschraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5606.U1.036B", "maps": [], @@ -552055,8 +520085,6 @@ }, "description": "-1.06.038, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5606.U1.038", "maps": [], @@ -552089,8 +520117,6 @@ }, "description": "-1.06.050, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5606.U1.050", "maps": [], @@ -552123,8 +520149,6 @@ }, "description": "-1.06.051, Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5606.U1.051", "maps": [], @@ -552157,8 +520181,6 @@ }, "description": "-1.06.053, Abfallentsorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5606.U1.053", "maps": [], @@ -552191,8 +520213,6 @@ }, "description": "-1.06.056, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5606.U1.056", "maps": [], @@ -552225,8 +520245,6 @@ }, "description": "-1.06.057, Abfallentsorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5606.U1.057", "maps": [], @@ -552259,8 +520277,6 @@ }, "description": "-1.06.059, Abfallentsorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5606.U1.059", "maps": [], @@ -552293,8 +520309,6 @@ }, "description": "-1.06.060, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5606.U1.060", "maps": [], @@ -552327,8 +520341,6 @@ }, "description": "-1.06.061, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5606.U1.061", "maps": [], @@ -552361,8 +520373,6 @@ }, "description": "-1.06.101, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5606.U1.101", "maps": [], @@ -552395,8 +520405,6 @@ }, "description": "-1.06.102, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5606.U1.102", "maps": [], @@ -552429,8 +520437,6 @@ }, "description": "01.07.011A, Kopierer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5607.01.011A", "maps": [], @@ -552463,8 +520469,6 @@ }, "description": "01.07.011B, Besprechung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5607.01.011B", "maps": [], @@ -552497,8 +520501,6 @@ }, "description": "01.07.012, Praktikumsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5607.01.012", "maps": [], @@ -552531,8 +520533,6 @@ }, "description": "01.07.014, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5607.01.014", "maps": [], @@ -552565,8 +520565,6 @@ }, "description": "01.07.014A, Balkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5607.01.014A", "maps": [], @@ -552599,8 +520597,6 @@ }, "description": "01.07.015, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5607.01.015", "maps": [], @@ -552633,8 +520629,6 @@ }, "description": "01.07.016, Wickeltisch/Beh.-WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5607.01.016", "maps": [], @@ -552667,8 +520661,6 @@ }, "description": "01.07.017, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5607.01.017", "maps": [], @@ -552701,8 +520693,6 @@ }, "description": "01.07.018, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5607.01.018", "maps": [], @@ -552735,8 +520725,6 @@ }, "description": "01.07.019A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5607.01.019A", "maps": [], @@ -552769,8 +520757,6 @@ }, "description": "01.07.019B, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5607.01.019B", "maps": [], @@ -552803,8 +520789,6 @@ }, "description": "01.07.020, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5607.01.020", "maps": [], @@ -552837,8 +520821,6 @@ }, "description": "01.07.021, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5607.01.021", "maps": [], @@ -552871,8 +520853,6 @@ }, "description": "01.07.023, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5607.01.023", "maps": [], @@ -552905,8 +520885,6 @@ }, "description": "01.07.023A, Balkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5607.01.023A", "maps": [], @@ -552939,8 +520917,6 @@ }, "description": "01.07.030, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5607.01.030", "maps": [], @@ -552973,8 +520949,6 @@ }, "description": "01.07.031A, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5607.01.031A", "maps": [], @@ -553007,8 +520981,6 @@ }, "description": "01.07.031B, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5607.01.031B", "maps": [], @@ -553041,8 +521013,6 @@ }, "description": "01.07.032, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5607.01.032", "maps": [], @@ -553075,8 +521045,6 @@ }, "description": "01.07.033A, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5607.01.033A", "maps": [], @@ -553109,8 +521077,6 @@ }, "description": "01.07.033B, Kopierraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5607.01.033B", "maps": [], @@ -553143,8 +521109,6 @@ }, "description": "01.07.034, Rechnerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5607.01.034", "maps": [], @@ -553177,8 +521141,6 @@ }, "description": "01.07.035, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5607.01.035", "maps": [], @@ -553211,8 +521173,6 @@ }, "description": "01.07.037, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5607.01.037", "maps": [], @@ -553245,8 +521205,6 @@ }, "description": "01.07.038, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5607.01.038", "maps": [], @@ -553279,8 +521237,6 @@ }, "description": "01.07.039, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5607.01.039", "maps": [], @@ -553313,8 +521269,6 @@ }, "description": "01.07.040, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5607.01.040", "maps": [], @@ -553347,8 +521301,6 @@ }, "description": "01.07.041, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5607.01.041", "maps": [], @@ -553381,8 +521333,6 @@ }, "description": "01.07.042, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5607.01.042", "maps": [], @@ -553415,8 +521365,6 @@ }, "description": "01.07.043, Computerlabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5607.01.043", "maps": [], @@ -553449,8 +521397,6 @@ }, "description": "01.07.044, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5607.01.044", "maps": [], @@ -553483,8 +521429,6 @@ }, "description": "01.07.050, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5607.01.050", "maps": [], @@ -553517,8 +521461,6 @@ }, "description": "01.07.051, Aufenthalt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5607.01.051", "maps": [], @@ -553551,8 +521493,6 @@ }, "description": "01.07.052, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5607.01.052", "maps": [], @@ -553585,8 +521525,6 @@ }, "description": "01.07.053, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5607.01.053", "maps": [], @@ -553619,8 +521557,6 @@ }, "description": "01.07.054, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5607.01.054", "maps": [], @@ -553653,8 +521589,6 @@ }, "description": "01.07.055, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5607.01.055", "maps": [], @@ -553687,8 +521621,6 @@ }, "description": "01.07.057, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5607.01.057", "maps": [], @@ -553721,8 +521653,6 @@ }, "description": "01.07.058, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5607.01.058", "maps": [], @@ -553755,8 +521685,6 @@ }, "description": "01.07.059, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5607.01.059", "maps": [], @@ -553789,8 +521717,6 @@ }, "description": "01.07.060, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5607.01.060", "maps": [], @@ -553823,8 +521749,6 @@ }, "description": "01.07.061, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5607.01.061", "maps": [], @@ -553857,8 +521781,6 @@ }, "description": "01.07.101, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5607.01.101", "maps": [], @@ -553891,8 +521813,6 @@ }, "description": "01.07.102, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5607.01.102", "maps": [], @@ -553925,8 +521845,6 @@ }, "description": "02.07.011A, Kopierer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5607.02.011A", "maps": [], @@ -553959,8 +521877,6 @@ }, "description": "02.07.011B, Besprechung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5607.02.011B", "maps": [], @@ -553993,8 +521909,6 @@ }, "description": "02.07.012, Messraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5607.02.012", "maps": [], @@ -554027,8 +521941,6 @@ }, "description": "02.07.014, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5607.02.014", "maps": [], @@ -554061,8 +521973,6 @@ }, "description": "02.07.014A, Balkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5607.02.014A", "maps": [], @@ -554095,8 +522005,6 @@ }, "description": "02.07.015, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5607.02.015", "maps": [], @@ -554129,8 +522037,6 @@ }, "description": "02.07.016, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5607.02.016", "maps": [], @@ -554163,8 +522069,6 @@ }, "description": "02.07.017, Beh.-WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5607.02.017", "maps": [], @@ -554197,8 +522101,6 @@ }, "description": "02.07.018, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5607.02.018", "maps": [], @@ -554231,8 +522133,6 @@ }, "description": "02.07.019A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5607.02.019A", "maps": [], @@ -554265,8 +522165,6 @@ }, "description": "02.07.019B, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5607.02.019B", "maps": [], @@ -554299,8 +522197,6 @@ }, "description": "02.07.020, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5607.02.020", "maps": [], @@ -554333,8 +522229,6 @@ }, "description": "02.07.021, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5607.02.021", "maps": [], @@ -554367,8 +522261,6 @@ }, "description": "02.07.023, Seminarraum (Inf. 2/5)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5607.02.023", "maps": [], @@ -554401,8 +522293,6 @@ }, "description": "02.07.023A, Balkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5607.02.023A", "maps": [], @@ -554435,8 +522325,6 @@ }, "description": "02.07.030, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5607.02.030", "maps": [], @@ -554469,8 +522357,6 @@ }, "description": "02.07.031A, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5607.02.031A", "maps": [], @@ -554503,8 +522389,6 @@ }, "description": "02.07.031B, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5607.02.031B", "maps": [], @@ -554537,8 +522421,6 @@ }, "description": "02.07.032, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5607.02.032", "maps": [], @@ -554571,8 +522453,6 @@ }, "description": "02.07.033A, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5607.02.033A", "maps": [], @@ -554605,8 +522485,6 @@ }, "description": "02.07.033B, Lager/B\u00fcromaterial", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5607.02.033B", "maps": [], @@ -554639,8 +522517,6 @@ }, "description": "02.07.034, Gro\u00dfraumb\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5607.02.034", "maps": [], @@ -554673,8 +522549,6 @@ }, "description": "02.07.035, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5607.02.035", "maps": [], @@ -554707,8 +522581,6 @@ }, "description": "02.07.037, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5607.02.037", "maps": [], @@ -554741,8 +522613,6 @@ }, "description": "02.07.038, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5607.02.038", "maps": [], @@ -554775,8 +522645,6 @@ }, "description": "02.07.039, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5607.02.039", "maps": [], @@ -554809,8 +522677,6 @@ }, "description": "02.07.041, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5607.02.041", "maps": [], @@ -554843,8 +522709,6 @@ }, "description": "02.07.042, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5607.02.042", "maps": [], @@ -554877,8 +522741,6 @@ }, "description": "02.07.043, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5607.02.043", "maps": [], @@ -554911,8 +522773,6 @@ }, "description": "02.07.044, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5607.02.044", "maps": [], @@ -554945,8 +522805,6 @@ }, "description": "02.07.050, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5607.02.050", "maps": [], @@ -554979,8 +522837,6 @@ }, "description": "02.07.051, Aufenthalt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5607.02.051", "maps": [], @@ -555013,8 +522869,6 @@ }, "description": "02.07.052, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5607.02.052", "maps": [], @@ -555047,8 +522901,6 @@ }, "description": "02.07.053, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5607.02.053", "maps": [], @@ -555081,8 +522933,6 @@ }, "description": "02.07.054, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5607.02.054", "maps": [], @@ -555115,8 +522965,6 @@ }, "description": "02.07.055, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5607.02.055", "maps": [], @@ -555149,8 +522997,6 @@ }, "description": "02.07.057, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5607.02.057", "maps": [], @@ -555183,8 +523029,6 @@ }, "description": "02.07.058, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5607.02.058", "maps": [], @@ -555217,8 +523061,6 @@ }, "description": "02.07.059, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5607.02.059", "maps": [], @@ -555251,8 +523093,6 @@ }, "description": "02.07.060, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5607.02.060", "maps": [], @@ -555285,8 +523125,6 @@ }, "description": "02.07.061, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5607.02.061", "maps": [], @@ -555319,8 +523157,6 @@ }, "description": "02.07.101, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5607.02.101", "maps": [], @@ -555353,8 +523189,6 @@ }, "description": "02.07.102, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5607.02.102", "maps": [], @@ -555387,8 +523221,6 @@ }, "description": "03.07.001, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5607.03.001", "maps": [], @@ -555421,8 +523253,6 @@ }, "description": "03.07.011, Praktikum/Labor/Mob.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5607.03.011", "maps": [], @@ -555455,8 +523285,6 @@ }, "description": "03.07.014B, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5607.03.014B", "maps": [], @@ -555489,8 +523317,6 @@ }, "description": "03.07.015, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5607.03.015", "maps": [], @@ -555523,8 +523349,6 @@ }, "description": "03.07.016, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5607.03.016", "maps": [], @@ -555557,8 +523381,6 @@ }, "description": "03.07.017, Beh.-WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5607.03.017", "maps": [], @@ -555591,8 +523413,6 @@ }, "description": "03.07.018, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5607.03.018", "maps": [], @@ -555625,8 +523445,6 @@ }, "description": "03.07.019A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5607.03.019A", "maps": [], @@ -555659,8 +523477,6 @@ }, "description": "03.07.019B, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5607.03.019B", "maps": [], @@ -555693,8 +523509,6 @@ }, "description": "03.07.020, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5607.03.020", "maps": [], @@ -555727,8 +523541,6 @@ }, "description": "03.07.021, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5607.03.021", "maps": [], @@ -555761,8 +523573,6 @@ }, "description": "03.07.023, Tutor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5607.03.023", "maps": [], @@ -555795,8 +523605,6 @@ }, "description": "03.07.030, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5607.03.030", "maps": [], @@ -555829,8 +523637,6 @@ }, "description": "03.07.031A, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5607.03.031A", "maps": [], @@ -555863,8 +523669,6 @@ }, "description": "03.07.031B, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5607.03.031B", "maps": [], @@ -555897,8 +523701,6 @@ }, "description": "03.07.032, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5607.03.032", "maps": [], @@ -555931,8 +523733,6 @@ }, "description": "03.07.033A, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5607.03.033A", "maps": [], @@ -555965,8 +523765,6 @@ }, "description": "03.07.033B, Lager/B\u00fcromaterial/Akten", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5607.03.033B", "maps": [], @@ -555999,8 +523797,6 @@ }, "description": "03.07.034, Mitarbeiterb\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5607.03.034", "maps": [], @@ -556033,8 +523829,6 @@ }, "description": "03.07.035, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5607.03.035", "maps": [], @@ -556067,8 +523861,6 @@ }, "description": "03.07.036, Mitarbeiterb\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5607.03.036", "maps": [], @@ -556101,8 +523893,6 @@ }, "description": "03.07.037, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5607.03.037", "maps": [], @@ -556135,8 +523925,6 @@ }, "description": "03.07.038, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5607.03.038", "maps": [], @@ -556169,8 +523957,6 @@ }, "description": "03.07.039, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5607.03.039", "maps": [], @@ -556203,8 +523989,6 @@ }, "description": "03.07.041, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5607.03.041", "maps": [], @@ -556237,8 +524021,6 @@ }, "description": "03.07.042, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5607.03.042", "maps": [], @@ -556271,8 +524053,6 @@ }, "description": "03.07.043, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5607.03.043", "maps": [], @@ -556305,8 +524085,6 @@ }, "description": "03.07.044, B\u00fcro Verwaltung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5607.03.044", "maps": [], @@ -556339,8 +524117,6 @@ }, "description": "03.07.050, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5607.03.050", "maps": [], @@ -556373,8 +524149,6 @@ }, "description": "03.07.051, Aufenthaltsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5607.03.051", "maps": [], @@ -556407,8 +524181,6 @@ }, "description": "03.07.052, B\u00fcro Verwaltung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5607.03.052", "maps": [], @@ -556441,8 +524213,6 @@ }, "description": "03.07.053, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5607.03.053", "maps": [], @@ -556475,8 +524245,6 @@ }, "description": "03.07.054, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5607.03.054", "maps": [], @@ -556509,8 +524277,6 @@ }, "description": "03.07.055, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5607.03.055", "maps": [], @@ -556543,8 +524309,6 @@ }, "description": "03.07.057, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5607.03.057", "maps": [], @@ -556577,8 +524341,6 @@ }, "description": "03.07.058, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5607.03.058", "maps": [], @@ -556611,8 +524373,6 @@ }, "description": "03.07.059, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5607.03.059", "maps": [], @@ -556645,8 +524405,6 @@ }, "description": "03.07.060, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5607.03.060", "maps": [], @@ -556679,8 +524437,6 @@ }, "description": "03.07.061, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5607.03.061", "maps": [], @@ -556713,8 +524469,6 @@ }, "description": "03.07.101, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5607.03.101", "maps": [], @@ -556747,8 +524501,6 @@ }, "description": "03.07.102, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5607.03.102", "maps": [], @@ -556781,8 +524533,6 @@ }, "description": "04.07.015, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5607.04.015", "maps": [], @@ -556815,8 +524565,6 @@ }, "description": "04.07.016, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5607.04.016", "maps": [], @@ -556849,8 +524597,6 @@ }, "description": "04.07.017, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5607.04.017", "maps": [], @@ -556883,8 +524629,6 @@ }, "description": "04.07.020, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5607.04.020", "maps": [], @@ -556917,8 +524661,6 @@ }, "description": "04.07.101, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5607.04.101", "maps": [], @@ -556951,8 +524693,6 @@ }, "description": "00.07.011, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5607.EG.011", "maps": [], @@ -557015,8 +524755,6 @@ }, "description": "00.07.014A, Terrasse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5607.EG.014A", "maps": [], @@ -557049,8 +524787,6 @@ }, "description": "00.07.015, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5607.EG.015", "maps": [], @@ -557083,8 +524819,6 @@ }, "description": "00.07.016, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5607.EG.016", "maps": [], @@ -557117,8 +524851,6 @@ }, "description": "00.07.017, Beh.-WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5607.EG.017", "maps": [], @@ -557151,8 +524883,6 @@ }, "description": "00.07.018, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5607.EG.018", "maps": [], @@ -557185,8 +524915,6 @@ }, "description": "00.07.019, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5607.EG.019", "maps": [], @@ -557219,8 +524947,6 @@ }, "description": "00.07.020, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5607.EG.020", "maps": [], @@ -557253,8 +524979,6 @@ }, "description": "00.07.021, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5607.EG.021", "maps": [], @@ -557287,8 +525011,6 @@ }, "description": "00.07.023, Rechnerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5607.EG.023", "maps": [], @@ -557321,8 +525043,6 @@ }, "description": "00.07.024, Rechnerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5607.EG.024", "maps": [], @@ -557355,8 +525075,6 @@ }, "description": "00.07.030, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5607.EG.030", "maps": [], @@ -557389,8 +525107,6 @@ }, "description": "00.07.031A, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5607.EG.031A", "maps": [], @@ -557423,8 +525139,6 @@ }, "description": "00.07.031B, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5607.EG.031B", "maps": [], @@ -557457,8 +525171,6 @@ }, "description": "00.07.032, Teek\u00fcche Inf./Math.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5607.EG.032", "maps": [], @@ -557491,8 +525203,6 @@ }, "description": "00.07.033, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5607.EG.033", "maps": [], @@ -557524,8 +525234,6 @@ }, "description": "00.07.034, Raumlufttechnik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5607.EG.034", "maps": [], @@ -557558,8 +525266,6 @@ }, "description": "00.07.035, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5607.EG.035", "maps": [], @@ -557592,8 +525298,6 @@ }, "description": "00.07.036, Unterrichtsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5607.EG.036", "maps": [], @@ -557626,8 +525330,6 @@ }, "description": "00.07.037, Rechnerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5607.EG.037", "maps": [], @@ -557659,8 +525361,6 @@ }, "description": "00.07.040, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5607.EG.040", "maps": [], @@ -557693,8 +525393,6 @@ }, "description": "00.07.041, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5607.EG.041", "maps": [], @@ -557726,8 +525424,6 @@ }, "description": "00.07.042, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5607.EG.042", "maps": [], @@ -557760,8 +525456,6 @@ }, "description": "00.07.050, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5607.EG.050", "maps": [], @@ -557794,8 +525488,6 @@ }, "description": "00.07.051, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5607.EG.051", "maps": [], @@ -557827,8 +525519,6 @@ }, "description": "00.07.053, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5607.EG.053", "maps": [], @@ -557860,8 +525550,6 @@ }, "description": "00.07.054, Wartungszentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5607.EG.054", "maps": [], @@ -557894,8 +525582,6 @@ }, "description": "00.07.055, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5607.EG.055", "maps": [], @@ -557927,8 +525613,6 @@ }, "description": "00.07.056, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5607.EG.056", "maps": [], @@ -557961,8 +525645,6 @@ }, "description": "00.07.057, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5607.EG.057", "maps": [], @@ -557995,8 +525677,6 @@ }, "description": "00.07.057A, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5607.EG.057A", "maps": [], @@ -558028,8 +525708,6 @@ }, "description": "00.07.059, Werkstatt-Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5607.EG.059", "maps": [], @@ -558062,8 +525740,6 @@ }, "description": "00.07.060, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5607.EG.060", "maps": [], @@ -558096,8 +525772,6 @@ }, "description": "00.07.101, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5607.EG.101", "maps": [], @@ -558130,8 +525804,6 @@ }, "description": "00.07.102, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5607.EG.102", "maps": [], @@ -558164,8 +525836,6 @@ }, "description": "00.07.103, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5607.EG.103", "maps": [], @@ -558198,8 +525868,6 @@ }, "description": "-1.07.011, Niederspannung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5607.U1.011", "maps": [], @@ -558232,8 +525900,6 @@ }, "description": "-1.07.012, Magazin/Ausstellung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5607.U1.012", "maps": [], @@ -558266,8 +525932,6 @@ }, "description": "-1.07.013, Heizung/Brauchwassererw\u00e4rmung/Hebeanlag", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5607.U1.013", "maps": [], @@ -558300,8 +525964,6 @@ }, "description": "-1.07.014, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5607.U1.014", "maps": [], @@ -558334,8 +525996,6 @@ }, "description": "-1.07.015, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5607.U1.015", "maps": [], @@ -558368,8 +526028,6 @@ }, "description": "-1.07.016, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5607.U1.016", "maps": [], @@ -558402,8 +526060,6 @@ }, "description": "-1.07.017, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5607.U1.017", "maps": [], @@ -558436,8 +526092,6 @@ }, "description": "-1.07.018, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5607.U1.018", "maps": [], @@ -558470,8 +526124,6 @@ }, "description": "-1.07.019, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5607.U1.019", "maps": [], @@ -558504,8 +526156,6 @@ }, "description": "-1.07.020, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5607.U1.020", "maps": [], @@ -558538,8 +526188,6 @@ }, "description": "-1.07.021, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5607.U1.021", "maps": [], @@ -558571,8 +526219,6 @@ }, "description": "-1.07.023, Netzwerk/Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5607.U1.023", "maps": [], @@ -558605,8 +526251,6 @@ }, "description": "-1.07.040, Lichtschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5607.U1.040", "maps": [], @@ -558639,8 +526283,6 @@ }, "description": "-1.07.041, Trafo", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5607.U1.041", "maps": [], @@ -558673,8 +526315,6 @@ }, "description": "-1.07.042, Trafo", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5607.U1.042", "maps": [], @@ -558707,8 +526347,6 @@ }, "description": "-1.07.043, Trafo", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5607.U1.043", "maps": [], @@ -558741,8 +526379,6 @@ }, "description": "-1.07.101, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5607.U1.101", "maps": [], @@ -558775,8 +526411,6 @@ }, "description": "01.08.001, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5608.01.001", "maps": [], @@ -558809,8 +526443,6 @@ }, "description": "01.08.011, Praktikumsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5608.01.011", "maps": [], @@ -558843,8 +526475,6 @@ }, "description": "01.08.011A, Balkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5608.01.011A", "maps": [], @@ -558877,8 +526507,6 @@ }, "description": "01.08.013, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5608.01.013", "maps": [], @@ -558911,8 +526539,6 @@ }, "description": "01.08.014, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5608.01.014", "maps": [], @@ -558945,8 +526571,6 @@ }, "description": "01.08.015, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5608.01.015", "maps": [], @@ -558979,8 +526603,6 @@ }, "description": "01.08.016, Beh.-WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5608.01.016", "maps": [], @@ -559013,8 +526635,6 @@ }, "description": "01.08.017A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5608.01.017A", "maps": [], @@ -559047,8 +526667,6 @@ }, "description": "01.08.017B, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5608.01.017B", "maps": [], @@ -559081,8 +526699,6 @@ }, "description": "01.08.018, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5608.01.018", "maps": [], @@ -559115,8 +526731,6 @@ }, "description": "01.08.019, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5608.01.019", "maps": [], @@ -559149,8 +526763,6 @@ }, "description": "01.08.020, Praktikumsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5608.01.020", "maps": [], @@ -559183,8 +526795,6 @@ }, "description": "01.08.021, Praktikumsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5608.01.021", "maps": [], @@ -559217,8 +526827,6 @@ }, "description": "01.08.021A, Balkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5608.01.021A", "maps": [], @@ -559251,8 +526859,6 @@ }, "description": "01.08.022A, Kopierer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5608.01.022A", "maps": [], @@ -559285,8 +526891,6 @@ }, "description": "01.08.022B, Besprechung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5608.01.022B", "maps": [], @@ -559319,8 +526923,6 @@ }, "description": "01.08.030, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5608.01.030", "maps": [], @@ -559353,8 +526955,6 @@ }, "description": "01.08.031, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5608.01.031", "maps": [], @@ -559387,8 +526987,6 @@ }, "description": "01.08.032A, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5608.01.032A", "maps": [], @@ -559421,8 +527019,6 @@ }, "description": "01.08.032B, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5608.01.032B", "maps": [], @@ -559455,8 +527051,6 @@ }, "description": "01.08.033, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5608.01.033", "maps": [], @@ -559489,8 +527083,6 @@ }, "description": "01.08.034A, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5608.01.034A", "maps": [], @@ -559523,8 +527115,6 @@ }, "description": "01.08.034B, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5608.01.034B", "maps": [], @@ -559557,8 +527147,6 @@ }, "description": "01.08.036, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5608.01.036", "maps": [], @@ -559591,8 +527179,6 @@ }, "description": "01.08.037, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5608.01.037", "maps": [], @@ -559625,8 +527211,6 @@ }, "description": "01.08.038, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5608.01.038", "maps": [], @@ -559659,8 +527243,6 @@ }, "description": "01.08.039, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5608.01.039", "maps": [], @@ -559693,8 +527275,6 @@ }, "description": "01.08.040, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5608.01.040", "maps": [], @@ -559727,8 +527307,6 @@ }, "description": "01.08.050, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5608.01.050", "maps": [], @@ -559761,8 +527339,6 @@ }, "description": "01.08.051, Aufenthalt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5608.01.051", "maps": [], @@ -559795,8 +527371,6 @@ }, "description": "01.08.052, B\u00fcro Verwaltung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5608.01.052", "maps": [], @@ -559829,8 +527403,6 @@ }, "description": "01.08.053, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5608.01.053", "maps": [], @@ -559863,8 +527435,6 @@ }, "description": "01.08.054, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5608.01.054", "maps": [], @@ -559897,8 +527467,6 @@ }, "description": "01.08.055, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5608.01.055", "maps": [], @@ -559931,8 +527499,6 @@ }, "description": "01.08.057, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5608.01.057", "maps": [], @@ -559965,8 +527531,6 @@ }, "description": "01.08.058, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5608.01.058", "maps": [], @@ -559999,8 +527563,6 @@ }, "description": "01.08.059, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5608.01.059", "maps": [], @@ -560033,8 +527595,6 @@ }, "description": "01.08.060, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5608.01.060", "maps": [], @@ -560067,8 +527627,6 @@ }, "description": "01.08.061, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5608.01.061", "maps": [], @@ -560101,8 +527659,6 @@ }, "description": "01.08.101, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5608.01.101", "maps": [], @@ -560135,8 +527691,6 @@ }, "description": "01.08.102, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5608.01.102", "maps": [], @@ -560169,8 +527723,6 @@ }, "description": "02.08.001, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5608.02.001", "maps": [], @@ -560234,8 +527786,6 @@ }, "description": "02.08.011A, Balkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5608.02.011A", "maps": [], @@ -560268,8 +527818,6 @@ }, "description": "02.08.013, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5608.02.013", "maps": [], @@ -560302,8 +527850,6 @@ }, "description": "02.08.014, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5608.02.014", "maps": [], @@ -560336,8 +527882,6 @@ }, "description": "02.08.015, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5608.02.015", "maps": [], @@ -560370,8 +527914,6 @@ }, "description": "02.08.016, Beh.-WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5608.02.016", "maps": [], @@ -560404,8 +527946,6 @@ }, "description": "02.08.017A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5608.02.017A", "maps": [], @@ -560438,8 +527978,6 @@ }, "description": "02.08.017B, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5608.02.017B", "maps": [], @@ -560472,8 +528010,6 @@ }, "description": "02.08.018, Abstellraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5608.02.018", "maps": [], @@ -560506,8 +528042,6 @@ }, "description": "02.08.019, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5608.02.019", "maps": [], @@ -560571,8 +528105,6 @@ }, "description": "02.08.020A, Balkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5608.02.020A", "maps": [], @@ -560605,8 +528137,6 @@ }, "description": "02.08.021, Common Room", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5608.02.021", "maps": [], @@ -560638,8 +528168,6 @@ }, "description": "02.08.030, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5608.02.030", "maps": [], @@ -560672,8 +528200,6 @@ }, "description": "02.08.031, Wasserversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5608.02.031", "maps": [], @@ -560706,8 +528232,6 @@ }, "description": "02.08.032A, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5608.02.032A", "maps": [], @@ -560740,8 +528264,6 @@ }, "description": "02.08.032B, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5608.02.032B", "maps": [], @@ -560774,8 +528296,6 @@ }, "description": "02.08.033, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5608.02.033", "maps": [], @@ -560808,8 +528328,6 @@ }, "description": "02.08.034A, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5608.02.034A", "maps": [], @@ -560842,8 +528360,6 @@ }, "description": "02.08.034B, Lager/B\u00fcromaterialien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5608.02.034B", "maps": [], @@ -560876,8 +528392,6 @@ }, "description": "02.08.035, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5608.02.035", "maps": [], @@ -560910,8 +528424,6 @@ }, "description": "02.08.036, B\u00fcro (M1/M7)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5608.02.036", "maps": [], @@ -560943,8 +528455,6 @@ }, "description": "02.08.037, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5608.02.037", "maps": [], @@ -560977,8 +528487,6 @@ }, "description": "02.08.038, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5608.02.038", "maps": [], @@ -561011,8 +528519,6 @@ }, "description": "02.08.039, Technischer Dienst", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5608.02.039", "maps": [], @@ -561045,8 +528551,6 @@ }, "description": "02.08.040, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5608.02.040", "maps": [], @@ -561079,8 +528583,6 @@ }, "description": "02.08.050, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5608.02.050", "maps": [], @@ -561113,8 +528615,6 @@ }, "description": "02.08.051, Aufenthaltsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5608.02.051", "maps": [], @@ -561147,8 +528647,6 @@ }, "description": "02.08.052, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5608.02.052", "maps": [], @@ -561181,8 +528679,6 @@ }, "description": "02.08.053, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5608.02.053", "maps": [], @@ -561215,8 +528711,6 @@ }, "description": "02.08.054, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5608.02.054", "maps": [], @@ -561249,8 +528743,6 @@ }, "description": "02.08.055, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5608.02.055", "maps": [], @@ -561283,8 +528775,6 @@ }, "description": "02.08.057, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5608.02.057", "maps": [], @@ -561317,8 +528807,6 @@ }, "description": "02.08.058, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5608.02.058", "maps": [], @@ -561351,8 +528839,6 @@ }, "description": "02.08.059, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5608.02.059", "maps": [], @@ -561385,8 +528871,6 @@ }, "description": "02.08.060, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5608.02.060", "maps": [], @@ -561419,8 +528903,6 @@ }, "description": "02.08.061, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5608.02.061", "maps": [], @@ -561453,8 +528935,6 @@ }, "description": "02.08.101, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5608.02.101", "maps": [], @@ -561486,8 +528966,6 @@ }, "description": "02.08.102, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5608.02.102", "maps": [], @@ -561519,8 +528997,6 @@ }, "description": "03.08.001, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5608.03.001", "maps": [], @@ -561584,8 +529060,6 @@ }, "description": "03.08.011A, Balkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5608.03.011A", "maps": [], @@ -561618,8 +529092,6 @@ }, "description": "03.08.013, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5608.03.013", "maps": [], @@ -561652,8 +529124,6 @@ }, "description": "03.08.014, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5608.03.014", "maps": [], @@ -561686,8 +529156,6 @@ }, "description": "03.08.015, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5608.03.015", "maps": [], @@ -561720,8 +529188,6 @@ }, "description": "03.08.016, Wickeltisch/Beh.-WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5608.03.016", "maps": [], @@ -561754,8 +529220,6 @@ }, "description": "03.08.017A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5608.03.017A", "maps": [], @@ -561788,8 +529252,6 @@ }, "description": "03.08.017B, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5608.03.017B", "maps": [], @@ -561822,8 +529284,6 @@ }, "description": "03.08.018, Abstellraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5608.03.018", "maps": [], @@ -561855,8 +529315,6 @@ }, "description": "03.08.019, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5608.03.019", "maps": [], @@ -561889,8 +529347,6 @@ }, "description": "03.08.020, Rechnerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5608.03.020", "maps": [], @@ -561923,8 +529379,6 @@ }, "description": "03.08.020A, Balkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5608.03.020A", "maps": [], @@ -561957,8 +529411,6 @@ }, "description": "03.08.021, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5608.03.021", "maps": [], @@ -562021,8 +529473,6 @@ }, "description": "03.08.030, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5608.03.030", "maps": [], @@ -562055,8 +529505,6 @@ }, "description": "03.08.031, Wasserversorgung (M1/M7)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5608.03.031", "maps": [], @@ -562089,8 +529537,6 @@ }, "description": "03.08.032A, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5608.03.032A", "maps": [], @@ -562123,8 +529569,6 @@ }, "description": "03.08.032B, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5608.03.032B", "maps": [], @@ -562157,8 +529601,6 @@ }, "description": "03.08.033A, Kopierer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5608.03.033A", "maps": [], @@ -562191,8 +529633,6 @@ }, "description": "03.08.033B, Archiv", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5608.03.033B", "maps": [], @@ -562225,8 +529665,6 @@ }, "description": "03.08.034A, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5608.03.034A", "maps": [], @@ -562259,8 +529697,6 @@ }, "description": "03.08.034B, Lager/B\u00fcromaterialien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5608.03.034B", "maps": [], @@ -562293,8 +529729,6 @@ }, "description": "03.08.035, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5608.03.035", "maps": [], @@ -562327,8 +529761,6 @@ }, "description": "03.08.036, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5608.03.036", "maps": [], @@ -562361,8 +529793,6 @@ }, "description": "03.08.037, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5608.03.037", "maps": [], @@ -562395,8 +529825,6 @@ }, "description": "03.08.038, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5608.03.038", "maps": [], @@ -562429,8 +529857,6 @@ }, "description": "03.08.039, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5608.03.039", "maps": [], @@ -562463,8 +529889,6 @@ }, "description": "03.08.040, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5608.03.040", "maps": [], @@ -562497,8 +529921,6 @@ }, "description": "03.08.050, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5608.03.050", "maps": [], @@ -562531,8 +529953,6 @@ }, "description": "03.08.051, Besprechung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5608.03.051", "maps": [], @@ -562565,8 +529985,6 @@ }, "description": "03.08.052, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5608.03.052", "maps": [], @@ -562599,8 +530017,6 @@ }, "description": "03.08.053, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5608.03.053", "maps": [], @@ -562633,8 +530049,6 @@ }, "description": "03.08.054, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5608.03.054", "maps": [], @@ -562667,8 +530081,6 @@ }, "description": "03.08.055, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5608.03.055", "maps": [], @@ -562701,8 +530113,6 @@ }, "description": "03.08.057, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5608.03.057", "maps": [], @@ -562735,8 +530145,6 @@ }, "description": "03.08.058, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5608.03.058", "maps": [], @@ -562769,8 +530177,6 @@ }, "description": "03.08.060, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5608.03.060", "maps": [], @@ -562803,8 +530209,6 @@ }, "description": "03.08.061, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5608.03.061", "maps": [], @@ -562837,8 +530241,6 @@ }, "description": "03.08.101, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5608.03.101", "maps": [], @@ -562870,8 +530272,6 @@ }, "description": "03.08.102, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5608.03.102", "maps": [], @@ -562903,8 +530303,6 @@ }, "description": "04.08.013, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5608.DG.013", "maps": [], @@ -562937,8 +530335,6 @@ }, "description": "04.08.013A, Personenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5608.DG.013A", "maps": [], @@ -562971,8 +530367,6 @@ }, "description": "04.08.014, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5608.DG.014", "maps": [], @@ -563005,8 +530399,6 @@ }, "description": "04.08.015, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5608.DG.015", "maps": [], @@ -563039,8 +530431,6 @@ }, "description": "04.08.016, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5608.DG.016", "maps": [], @@ -563073,8 +530463,6 @@ }, "description": "04.08.016A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5608.DG.016A", "maps": [], @@ -563107,8 +530495,6 @@ }, "description": "04.08.101, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5608.DG.101", "maps": [], @@ -563141,8 +530527,6 @@ }, "description": "00.08.013, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5608.EG.013", "maps": [], @@ -563175,8 +530559,6 @@ }, "description": "00.08.014, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5608.EG.014", "maps": [], @@ -563209,8 +530591,6 @@ }, "description": "00.08.015, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5608.EG.015", "maps": [], @@ -563243,8 +530623,6 @@ }, "description": "00.08.016, Beh.-WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5608.EG.016", "maps": [], @@ -563277,8 +530655,6 @@ }, "description": "00.08.017A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5608.EG.017A", "maps": [], @@ -563311,8 +530687,6 @@ }, "description": "00.08.017B, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5608.EG.017B", "maps": [], @@ -563345,8 +530719,6 @@ }, "description": "00.08.019, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5608.EG.019", "maps": [], @@ -563379,8 +530751,6 @@ }, "description": "00.08.030, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5608.EG.030", "maps": [], @@ -563413,8 +530783,6 @@ }, "description": "00.08.031, Sp\u00fclk\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5608.EG.031", "maps": [], @@ -563447,8 +530815,6 @@ }, "description": "00.08.032A, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5608.EG.032A", "maps": [], @@ -563481,8 +530847,6 @@ }, "description": "00.08.032B, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5608.EG.032B", "maps": [], @@ -563515,8 +530879,6 @@ }, "description": "00.08.036, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5608.EG.036", "maps": [], @@ -563549,8 +530911,6 @@ }, "description": "00.08.038, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5608.EG.038", "maps": [], @@ -563583,8 +530943,6 @@ }, "description": "00.08.050, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5608.EG.050", "maps": [], @@ -563617,8 +530975,6 @@ }, "description": "00.08.051, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5608.EG.051", "maps": [], @@ -563651,8 +531007,6 @@ }, "description": "00.08.053, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5608.EG.053", "maps": [], @@ -563685,8 +531039,6 @@ }, "description": "00.08.055, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5608.EG.055", "maps": [], @@ -563719,8 +531071,6 @@ }, "description": "00.08.057, Rechnerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5608.EG.057", "maps": [], @@ -563753,8 +531103,6 @@ }, "description": "00.08.059, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5608.EG.059", "maps": [], @@ -563787,8 +531135,6 @@ }, "description": "00.08.060, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5608.EG.060", "maps": [], @@ -563821,8 +531167,6 @@ }, "description": "00.08.101, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5608.EG.101", "maps": [], @@ -563855,8 +531199,6 @@ }, "description": "00.08.102, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5608.EG.102", "maps": [], @@ -563889,8 +531231,6 @@ }, "description": "00.08.150, Terrasse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5608.EG.150", "maps": [], @@ -563923,8 +531263,6 @@ }, "description": "-1.08.013, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5608.U1.013", "maps": [], @@ -563957,8 +531295,6 @@ }, "description": "-1.08.014, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5608.U1.014", "maps": [], @@ -563991,8 +531327,6 @@ }, "description": "-1.08.015, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5608.U1.015", "maps": [], @@ -564025,8 +531359,6 @@ }, "description": "-1.08.016A, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5608.U1.016A", "maps": [], @@ -564059,8 +531391,6 @@ }, "description": "-1.08.016B, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5608.U1.016B", "maps": [], @@ -564093,8 +531423,6 @@ }, "description": "-1.08.017A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5608.U1.017A", "maps": [], @@ -564127,8 +531455,6 @@ }, "description": "-1.08.017B, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5608.U1.017B", "maps": [], @@ -564161,8 +531487,6 @@ }, "description": "-1.08.018A, Umkleide", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5608.U1.018A", "maps": [], @@ -564195,8 +531519,6 @@ }, "description": "-1.08.018B, Waschraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5608.U1.018B", "maps": [], @@ -564229,8 +531551,6 @@ }, "description": "-1.08.019, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5608.U1.019", "maps": [], @@ -564263,8 +531583,6 @@ }, "description": "-1.08.020, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5608.U1.020", "maps": [], @@ -564297,8 +531615,6 @@ }, "description": "MI -1.08.021, Regieraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5608.U1.021", "maps": [], @@ -564331,8 +531647,6 @@ }, "description": "-1.08.030, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5608.U1.030", "maps": [], @@ -564365,8 +531679,6 @@ }, "description": "-1.08.031, Wasserversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5608.U1.031", "maps": [], @@ -564399,8 +531711,6 @@ }, "description": "-1.08.032A, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5608.U1.032A", "maps": [], @@ -564433,8 +531743,6 @@ }, "description": "-1.08.032B, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5608.U1.032B", "maps": [], @@ -564467,8 +531775,6 @@ }, "description": "-1.08.034, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5608.U1.034", "maps": [], @@ -564501,8 +531807,6 @@ }, "description": "-1.08.035, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5608.U1.035", "maps": [], @@ -564535,8 +531839,6 @@ }, "description": "-1.08.036, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5608.U1.036", "maps": [], @@ -564569,8 +531871,6 @@ }, "description": "-1.08.037, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5608.U1.037", "maps": [], @@ -564603,8 +531903,6 @@ }, "description": "-1.08.040, Kopierer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5608.U1.040", "maps": [], @@ -564637,8 +531935,6 @@ }, "description": "-1.08.101, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5608.U1.101", "maps": [], @@ -564671,8 +531967,6 @@ }, "description": "01.09.001, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5609.01.001", "maps": [], @@ -564705,8 +531999,6 @@ }, "description": "01.09.011A, Kopierer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5609.01.011A", "maps": [], @@ -564739,8 +532031,6 @@ }, "description": "01.09.011B, Besprechung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5609.01.011B", "maps": [], @@ -564773,8 +532063,6 @@ }, "description": "01.09.012, Computerlabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5609.01.012", "maps": [], @@ -564807,8 +532095,6 @@ }, "description": "01.09.014, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5609.01.014", "maps": [], @@ -564841,8 +532127,6 @@ }, "description": "01.09.014A, Balkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5609.01.014A", "maps": [], @@ -564875,8 +532159,6 @@ }, "description": "01.09.015, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5609.01.015", "maps": [], @@ -564909,8 +532191,6 @@ }, "description": "01.09.016, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5609.01.016", "maps": [], @@ -564943,8 +532223,6 @@ }, "description": "01.09.017, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5609.01.017", "maps": [], @@ -564977,8 +532255,6 @@ }, "description": "01.09.018, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5609.01.018", "maps": [], @@ -565011,8 +532287,6 @@ }, "description": "01.09.019A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5609.01.019A", "maps": [], @@ -565045,8 +532319,6 @@ }, "description": "01.09.019B, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5609.01.019B", "maps": [], @@ -565079,8 +532351,6 @@ }, "description": "01.09.020, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5609.01.020", "maps": [], @@ -565113,8 +532383,6 @@ }, "description": "01.09.021, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5609.01.021", "maps": [], @@ -565147,8 +532415,6 @@ }, "description": "01.09.022, Praktikumsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5609.01.022", "maps": [], @@ -565181,8 +532447,6 @@ }, "description": "01.09.022A, Balkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5609.01.022A", "maps": [], @@ -565215,8 +532479,6 @@ }, "description": "01.09.023, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5609.01.023", "maps": [], @@ -565249,8 +532511,6 @@ }, "description": "01.09.030, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5609.01.030", "maps": [], @@ -565283,8 +532543,6 @@ }, "description": "01.09.031A, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5609.01.031A", "maps": [], @@ -565317,8 +532575,6 @@ }, "description": "01.09.031B, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5609.01.031B", "maps": [], @@ -565351,8 +532607,6 @@ }, "description": "01.09.032, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5609.01.032", "maps": [], @@ -565385,8 +532639,6 @@ }, "description": "01.09.033A, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5609.01.033A", "maps": [], @@ -565419,8 +532671,6 @@ }, "description": "01.09.033B, Lager/B\u00fcromaterialien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5609.01.033B", "maps": [], @@ -565453,8 +532703,6 @@ }, "description": "01.09.034, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5609.01.034", "maps": [], @@ -565487,8 +532735,6 @@ }, "description": "01.09.035, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5609.01.035", "maps": [], @@ -565521,8 +532767,6 @@ }, "description": "01.09.037, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5609.01.037", "maps": [], @@ -565555,8 +532799,6 @@ }, "description": "01.09.038, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5609.01.038", "maps": [], @@ -565589,8 +532831,6 @@ }, "description": "01.09.039, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5609.01.039", "maps": [], @@ -565623,8 +532863,6 @@ }, "description": "01.09.040, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5609.01.040", "maps": [], @@ -565657,8 +532895,6 @@ }, "description": "01.09.041, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5609.01.041", "maps": [], @@ -565691,8 +532927,6 @@ }, "description": "01.09.042, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5609.01.042", "maps": [], @@ -565725,8 +532959,6 @@ }, "description": "01.09.043, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5609.01.043", "maps": [], @@ -565759,8 +532991,6 @@ }, "description": "01.09.044, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5609.01.044", "maps": [], @@ -565793,8 +533023,6 @@ }, "description": "01.09.050, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5609.01.050", "maps": [], @@ -565827,8 +533055,6 @@ }, "description": "01.09.051, Aufenthalt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5609.01.051", "maps": [], @@ -565861,8 +533087,6 @@ }, "description": "01.09.052, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5609.01.052", "maps": [], @@ -565895,8 +533119,6 @@ }, "description": "01.09.053, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5609.01.053", "maps": [], @@ -565929,8 +533151,6 @@ }, "description": "01.09.054, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5609.01.054", "maps": [], @@ -565963,8 +533183,6 @@ }, "description": "01.09.055, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5609.01.055", "maps": [], @@ -565997,8 +533215,6 @@ }, "description": "01.09.057, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5609.01.057", "maps": [], @@ -566031,8 +533247,6 @@ }, "description": "01.09.058, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5609.01.058", "maps": [], @@ -566065,8 +533279,6 @@ }, "description": "01.09.059, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5609.01.059", "maps": [], @@ -566099,8 +533311,6 @@ }, "description": "01.09.060, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5609.01.060", "maps": [], @@ -566133,8 +533343,6 @@ }, "description": "01.09.061, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5609.01.061", "maps": [], @@ -566167,8 +533375,6 @@ }, "description": "01.09.101, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5609.01.101", "maps": [], @@ -566201,8 +533407,6 @@ }, "description": "01.09.102, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5609.01.102", "maps": [], @@ -566235,8 +533439,6 @@ }, "description": "02.09.001, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5609.02.001", "maps": [], @@ -566269,8 +533471,6 @@ }, "description": "02.09.011A, Kopierer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5609.02.011A", "maps": [], @@ -566303,8 +533503,6 @@ }, "description": "02.09.011B, Besprechung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5609.02.011B", "maps": [], @@ -566337,8 +533535,6 @@ }, "description": "02.09.012, Rechnerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5609.02.012", "maps": [], @@ -566371,8 +533567,6 @@ }, "description": "02.09.014, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5609.02.014", "maps": [], @@ -566405,8 +533599,6 @@ }, "description": "02.09.014A, Balkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5609.02.014A", "maps": [], @@ -566439,8 +533631,6 @@ }, "description": "02.09.015, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5609.02.015", "maps": [], @@ -566473,8 +533663,6 @@ }, "description": "02.09.016, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5609.02.016", "maps": [], @@ -566507,8 +533695,6 @@ }, "description": "02.09.017, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5609.02.017", "maps": [], @@ -566541,8 +533727,6 @@ }, "description": "02.09.018, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5609.02.018", "maps": [], @@ -566575,8 +533759,6 @@ }, "description": "02.09.019A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5609.02.019A", "maps": [], @@ -566609,8 +533791,6 @@ }, "description": "02.09.019B, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5609.02.019B", "maps": [], @@ -566643,8 +533823,6 @@ }, "description": "02.09.020, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5609.02.020", "maps": [], @@ -566677,8 +533855,6 @@ }, "description": "02.09.021, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5609.02.021", "maps": [], @@ -566711,8 +533887,6 @@ }, "description": "02.09.023, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5609.02.023", "maps": [], @@ -566745,8 +533919,6 @@ }, "description": "02.09.023A, Balkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5609.02.023A", "maps": [], @@ -566779,8 +533951,6 @@ }, "description": "02.09.030, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5609.02.030", "maps": [], @@ -566813,8 +533983,6 @@ }, "description": "02.09.031A, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5609.02.031A", "maps": [], @@ -566847,8 +534015,6 @@ }, "description": "02.09.031B, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5609.02.031B", "maps": [], @@ -566881,8 +534047,6 @@ }, "description": "02.09.032, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5609.02.032", "maps": [], @@ -566915,8 +534079,6 @@ }, "description": "02.09.033, Mitarbeiterb\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5609.02.033", "maps": [], @@ -566949,8 +534111,6 @@ }, "description": "02.09.034, Computerlabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5609.02.034", "maps": [], @@ -566983,8 +534143,6 @@ }, "description": "02.09.035, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5609.02.035", "maps": [], @@ -567017,8 +534175,6 @@ }, "description": "02.09.037, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5609.02.037", "maps": [], @@ -567051,8 +534207,6 @@ }, "description": "02.09.038, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5609.02.038", "maps": [], @@ -567085,8 +534239,6 @@ }, "description": "02.09.039, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5609.02.039", "maps": [], @@ -567119,8 +534271,6 @@ }, "description": "02.09.041, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5609.02.041", "maps": [], @@ -567153,8 +534303,6 @@ }, "description": "02.09.042, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5609.02.042", "maps": [], @@ -567187,8 +534335,6 @@ }, "description": "02.09.043, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5609.02.043", "maps": [], @@ -567221,8 +534367,6 @@ }, "description": "02.09.044, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5609.02.044", "maps": [], @@ -567255,8 +534399,6 @@ }, "description": "02.09.050, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5609.02.050", "maps": [], @@ -567289,8 +534431,6 @@ }, "description": "02.09.051, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5609.02.051", "maps": [], @@ -567323,8 +534463,6 @@ }, "description": "02.09.052, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5609.02.052", "maps": [], @@ -567357,8 +534495,6 @@ }, "description": "02.09.053, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5609.02.053", "maps": [], @@ -567391,8 +534527,6 @@ }, "description": "02.09.054, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5609.02.054", "maps": [], @@ -567425,8 +534559,6 @@ }, "description": "02.09.055, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5609.02.055", "maps": [], @@ -567459,8 +534591,6 @@ }, "description": "02.09.057, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5609.02.057", "maps": [], @@ -567493,8 +534623,6 @@ }, "description": "02.09.058, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5609.02.058", "maps": [], @@ -567527,8 +534655,6 @@ }, "description": "02.09.059, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5609.02.059", "maps": [], @@ -567561,8 +534687,6 @@ }, "description": "02.09.060, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5609.02.060", "maps": [], @@ -567595,8 +534719,6 @@ }, "description": "02.09.061, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5609.02.061", "maps": [], @@ -567629,8 +534751,6 @@ }, "description": "02.09.101, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5609.02.101", "maps": [], @@ -567663,8 +534783,6 @@ }, "description": "02.09.102, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5609.02.102", "maps": [], @@ -567697,8 +534815,6 @@ }, "description": "03.09.001, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5609.03.001", "maps": [], @@ -567731,8 +534847,6 @@ }, "description": "03.09.011A, Kopierer (Inf.7/14)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5609.03.011A", "maps": [], @@ -567765,8 +534879,6 @@ }, "description": "03.09.011B, Besprechung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5609.03.011B", "maps": [], @@ -567799,8 +534911,6 @@ }, "description": "03.09.012, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5609.03.012", "maps": [], @@ -567833,8 +534943,6 @@ }, "description": "03.09.014, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5609.03.014", "maps": [], @@ -567867,8 +534975,6 @@ }, "description": "03.09.014A, Balkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5609.03.014A", "maps": [], @@ -567901,8 +535007,6 @@ }, "description": "03.09.015, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5609.03.015", "maps": [], @@ -567935,8 +535039,6 @@ }, "description": "03.09.016, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5609.03.016", "maps": [], @@ -567969,8 +535071,6 @@ }, "description": "03.09.017, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5609.03.017", "maps": [], @@ -568003,8 +535103,6 @@ }, "description": "03.09.018, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5609.03.018", "maps": [], @@ -568037,8 +535135,6 @@ }, "description": "03.09.019A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5609.03.019A", "maps": [], @@ -568071,8 +535167,6 @@ }, "description": "03.09.019B, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5609.03.019B", "maps": [], @@ -568105,8 +535199,6 @@ }, "description": "03.09.020, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5609.03.020", "maps": [], @@ -568139,8 +535231,6 @@ }, "description": "03.09.021, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5609.03.021", "maps": [], @@ -568173,8 +535263,6 @@ }, "description": "03.09.023, \u00dcbung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5609.03.023", "maps": [], @@ -568207,8 +535295,6 @@ }, "description": "03.09.023A, Balkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5609.03.023A", "maps": [], @@ -568241,8 +535327,6 @@ }, "description": "03.09.030, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5609.03.030", "maps": [], @@ -568275,8 +535359,6 @@ }, "description": "03.09.031A, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5609.03.031A", "maps": [], @@ -568309,8 +535391,6 @@ }, "description": "03.09.031B, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5609.03.031B", "maps": [], @@ -568343,8 +535423,6 @@ }, "description": "03.09.032, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5609.03.032", "maps": [], @@ -568377,8 +535455,6 @@ }, "description": "03.09.033A, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5609.03.033A", "maps": [], @@ -568411,8 +535487,6 @@ }, "description": "03.09.033B, Lager/B\u00fcromaterial", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5609.03.033B", "maps": [], @@ -568445,8 +535519,6 @@ }, "description": "03.09.034, Praktikumsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5609.03.034", "maps": [], @@ -568479,8 +535551,6 @@ }, "description": "03.09.035, Gruppenleiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5609.03.035", "maps": [], @@ -568513,8 +535583,6 @@ }, "description": "03.09.037, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5609.03.037", "maps": [], @@ -568547,8 +535615,6 @@ }, "description": "03.09.038, Praktikumsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5609.03.038", "maps": [], @@ -568581,8 +535647,6 @@ }, "description": "03.09.039, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5609.03.039", "maps": [], @@ -568615,8 +535679,6 @@ }, "description": "03.09.040, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5609.03.040", "maps": [], @@ -568649,8 +535711,6 @@ }, "description": "03.09.041, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5609.03.041", "maps": [], @@ -568683,8 +535743,6 @@ }, "description": "03.09.042, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5609.03.042", "maps": [], @@ -568717,8 +535775,6 @@ }, "description": "03.09.043, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5609.03.043", "maps": [], @@ -568751,8 +535807,6 @@ }, "description": "03.09.044, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5609.03.044", "maps": [], @@ -568785,8 +535839,6 @@ }, "description": "03.09.050, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5609.03.050", "maps": [], @@ -568819,8 +535871,6 @@ }, "description": "03.09.051, Aufenthalt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5609.03.051", "maps": [], @@ -568853,8 +535903,6 @@ }, "description": "03.09.052, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5609.03.052", "maps": [], @@ -568887,8 +535935,6 @@ }, "description": "03.09.053, B\u00fcro Verwaltung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5609.03.053", "maps": [], @@ -568921,8 +535967,6 @@ }, "description": "03.09.054, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5609.03.054", "maps": [], @@ -568955,8 +535999,6 @@ }, "description": "03.09.055, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5609.03.055", "maps": [], @@ -568989,8 +536031,6 @@ }, "description": "03.09.057, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5609.03.057", "maps": [], @@ -569023,8 +536063,6 @@ }, "description": "03.09.058, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5609.03.058", "maps": [], @@ -569057,8 +536095,6 @@ }, "description": "03.09.059, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5609.03.059", "maps": [], @@ -569091,8 +536127,6 @@ }, "description": "03.09.060, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5609.03.060", "maps": [], @@ -569125,8 +536159,6 @@ }, "description": "03.09.061, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5609.03.061", "maps": [], @@ -569159,8 +536191,6 @@ }, "description": "03.09.101, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5609.03.101", "maps": [], @@ -569193,8 +536223,6 @@ }, "description": "03.09.102, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5609.03.102", "maps": [], @@ -569227,8 +536255,6 @@ }, "description": "04.09.015, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5609.DG.015", "maps": [], @@ -569261,8 +536287,6 @@ }, "description": "04.09.016, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5609.DG.016", "maps": [], @@ -569295,8 +536319,6 @@ }, "description": "04.09.021, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5609.DG.021", "maps": [], @@ -569329,8 +536351,6 @@ }, "description": "00.09.011, Ausstellung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5609.EG.011", "maps": [], @@ -569363,8 +536383,6 @@ }, "description": "00.09.015, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5609.EG.015", "maps": [], @@ -569397,8 +536415,6 @@ }, "description": "00.09.016, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5609.EG.016", "maps": [], @@ -569431,8 +536447,6 @@ }, "description": "00.09.017, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5609.EG.017", "maps": [], @@ -569465,8 +536479,6 @@ }, "description": "00.09.018, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5609.EG.018", "maps": [], @@ -569499,8 +536511,6 @@ }, "description": "00.09.019A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5609.EG.019A", "maps": [], @@ -569533,8 +536543,6 @@ }, "description": "00.09.019B, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5609.EG.019B", "maps": [], @@ -569567,8 +536575,6 @@ }, "description": "00.09.020, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5609.EG.020", "maps": [], @@ -569601,8 +536607,6 @@ }, "description": "00.09.021, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5609.EG.021", "maps": [], @@ -569666,8 +536670,6 @@ }, "description": "00.09.030, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5609.EG.030", "maps": [], @@ -569700,8 +536702,6 @@ }, "description": "00.09.031A, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5609.EG.031A", "maps": [], @@ -569734,8 +536734,6 @@ }, "description": "00.09.031B, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5609.EG.031B", "maps": [], @@ -569768,8 +536766,6 @@ }, "description": "00.09.032, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5609.EG.032", "maps": [], @@ -569802,8 +536798,6 @@ }, "description": "00.09.033A, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5609.EG.033A", "maps": [], @@ -569836,8 +536830,6 @@ }, "description": "00.09.033B, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5609.EG.033B", "maps": [], @@ -569870,8 +536862,6 @@ }, "description": "00.09.034, B\u00fcro Verwaltung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5609.EG.034", "maps": [], @@ -569904,8 +536894,6 @@ }, "description": "00.09.035, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5609.EG.035", "maps": [], @@ -569938,8 +536926,6 @@ }, "description": "00.09.036, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5609.EG.036", "maps": [], @@ -569972,8 +536958,6 @@ }, "description": "00.09.037, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5609.EG.037", "maps": [], @@ -570006,8 +536990,6 @@ }, "description": "00.09.038, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5609.EG.038", "maps": [], @@ -570040,8 +537022,6 @@ }, "description": "00.09.039, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5609.EG.039", "maps": [], @@ -570074,8 +537054,6 @@ }, "description": "00.09.050, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5609.EG.050", "maps": [], @@ -570108,8 +537086,6 @@ }, "description": "00.09.051, B\u00fcro Verwaltung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5609.EG.051", "maps": [], @@ -570142,8 +537118,6 @@ }, "description": "00.09.052, B\u00fcro BICC Net", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5609.EG.052", "maps": [], @@ -570176,8 +537150,6 @@ }, "description": "00.09.053, B\u00fcro Verwaltung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5609.EG.053", "maps": [], @@ -570210,8 +537182,6 @@ }, "description": "00.09.054, B\u00fcro BICC Net", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5609.EG.054", "maps": [], @@ -570244,8 +537214,6 @@ }, "description": "00.09.055, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5609.EG.055", "maps": [], @@ -570278,8 +537246,6 @@ }, "description": "00.09.056, B\u00fcro BICC Net", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5609.EG.056", "maps": [], @@ -570312,8 +537278,6 @@ }, "description": "00.09.058A, Archiv", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5609.EG.058A", "maps": [], @@ -570346,8 +537310,6 @@ }, "description": "00.09.058B, Archiv", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5609.EG.058B", "maps": [], @@ -570380,8 +537342,6 @@ }, "description": "00.09.059, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5609.EG.059", "maps": [], @@ -570414,8 +537374,6 @@ }, "description": "00.09.060, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5609.EG.060", "maps": [], @@ -570448,8 +537406,6 @@ }, "description": "00.09.061, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5609.EG.061", "maps": [], @@ -570482,8 +537438,6 @@ }, "description": "00.09.062, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5609.EG.062", "maps": [], @@ -570516,8 +537470,6 @@ }, "description": "00.09.063, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5609.EG.063", "maps": [], @@ -570550,8 +537502,6 @@ }, "description": "00.09.064, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5609.EG.064", "maps": [], @@ -570584,8 +537534,6 @@ }, "description": "00.09.065, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5609.EG.065", "maps": [], @@ -570618,8 +537566,6 @@ }, "description": "00.09.101, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5609.EG.101", "maps": [], @@ -570652,8 +537598,6 @@ }, "description": "00.09.102, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5609.EG.102", "maps": [], @@ -570686,8 +537630,6 @@ }, "description": "00.09.012, Terrasse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5609.EG.999", "maps": [], @@ -570720,8 +537662,6 @@ }, "description": "-1.09.011, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5609.U1.011", "maps": [], @@ -570754,8 +537694,6 @@ }, "description": "-1.09.013, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5609.U1.013", "maps": [], @@ -570788,8 +537726,6 @@ }, "description": "-1.09.014, Schleuse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5609.U1.014", "maps": [], @@ -570822,8 +537758,6 @@ }, "description": "-1.09.015, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5609.U1.015", "maps": [], @@ -570856,8 +537790,6 @@ }, "description": "-1.09.016, HLS-Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5609.U1.016", "maps": [], @@ -570890,8 +537822,6 @@ }, "description": "-1.09.017, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5609.U1.017", "maps": [], @@ -570924,8 +537854,6 @@ }, "description": "-1.09.018, Mittelspannung 20KV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5609.U1.018", "maps": [], @@ -570958,8 +537886,6 @@ }, "description": "-1.09.030, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5609.U1.030", "maps": [], @@ -570992,8 +537918,6 @@ }, "description": "-1.09.101, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5609.U1.101", "maps": [], @@ -571026,8 +537950,6 @@ }, "description": "01.10.001, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5610.01.001", "maps": [], @@ -571060,8 +537982,6 @@ }, "description": "01.10.011, Seminarraum (Inf. 18/19", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5610.01.011", "maps": [], @@ -571094,8 +538014,6 @@ }, "description": "01.10.013, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5610.01.013", "maps": [], @@ -571128,8 +538046,6 @@ }, "description": "01.10.014, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5610.01.014", "maps": [], @@ -571162,8 +538078,6 @@ }, "description": "01.10.015, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5610.01.015", "maps": [], @@ -571196,8 +538110,6 @@ }, "description": "01.10.016, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5610.01.016", "maps": [], @@ -571230,8 +538142,6 @@ }, "description": "01.10.017A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5610.01.017A", "maps": [], @@ -571264,8 +538174,6 @@ }, "description": "01.10.017B, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5610.01.017B", "maps": [], @@ -571298,8 +538206,6 @@ }, "description": "01.10.018, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5610.01.018", "maps": [], @@ -571332,8 +538238,6 @@ }, "description": "01.10.019, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5610.01.019", "maps": [], @@ -571366,8 +538270,6 @@ }, "description": "01.10.020, Praktikumsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5610.01.020", "maps": [], @@ -571400,8 +538302,6 @@ }, "description": "01.10.020A, Balkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5610.01.020A", "maps": [], @@ -571434,8 +538334,6 @@ }, "description": "01.10.021, Praktikumsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5610.01.021", "maps": [], @@ -571468,8 +538366,6 @@ }, "description": "01.10.022A, Kopierer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5610.01.022A", "maps": [], @@ -571502,8 +538398,6 @@ }, "description": "01.10.022B, Besprechung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5610.01.022B", "maps": [], @@ -571536,8 +538430,6 @@ }, "description": "01.10.030, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5610.01.030", "maps": [], @@ -571570,8 +538462,6 @@ }, "description": "01.10.031, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5610.01.031", "maps": [], @@ -571604,8 +538494,6 @@ }, "description": "01.10.032A, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5610.01.032A", "maps": [], @@ -571638,8 +538526,6 @@ }, "description": "01.10.032B, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5610.01.032B", "maps": [], @@ -571672,8 +538558,6 @@ }, "description": "01.10.033, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5610.01.033", "maps": [], @@ -571706,8 +538590,6 @@ }, "description": "01.10.034A, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5610.01.034A", "maps": [], @@ -571740,8 +538622,6 @@ }, "description": "01.10.036, Computer-Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5610.01.036", "maps": [], @@ -571774,8 +538654,6 @@ }, "description": "01.10.037, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5610.01.037", "maps": [], @@ -571808,8 +538686,6 @@ }, "description": "01.10.039, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5610.01.039", "maps": [], @@ -571842,8 +538718,6 @@ }, "description": "01.10.040, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5610.01.040", "maps": [], @@ -571876,8 +538750,6 @@ }, "description": "01.10.050, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5610.01.050", "maps": [], @@ -571910,8 +538782,6 @@ }, "description": "01.10.051, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5610.01.051", "maps": [], @@ -571944,8 +538814,6 @@ }, "description": "01.10.052, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5610.01.052", "maps": [], @@ -571978,8 +538846,6 @@ }, "description": "01.10.053, B\u00fcro/Drucker/Leseraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5610.01.053", "maps": [], @@ -572012,8 +538878,6 @@ }, "description": "01.10.054, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5610.01.054", "maps": [], @@ -572046,8 +538910,6 @@ }, "description": "01.10.055, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5610.01.055", "maps": [], @@ -572080,8 +538942,6 @@ }, "description": "01.10.056, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5610.01.056", "maps": [], @@ -572114,8 +538974,6 @@ }, "description": "01.10.057, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5610.01.057", "maps": [], @@ -572148,8 +539006,6 @@ }, "description": "01.10.058, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5610.01.058", "maps": [], @@ -572182,8 +539038,6 @@ }, "description": "01.10.059, Besprechung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5610.01.059", "maps": [], @@ -572216,8 +539070,6 @@ }, "description": "01.10.060, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5610.01.060", "maps": [], @@ -572250,8 +539102,6 @@ }, "description": "01.10.061, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5610.01.061", "maps": [], @@ -572284,8 +539134,6 @@ }, "description": "01.10.101, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5610.01.101", "maps": [], @@ -572318,8 +539166,6 @@ }, "description": "01.10.102, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5610.01.102", "maps": [], @@ -572352,8 +539198,6 @@ }, "description": "02.10.001, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5610.02.001", "maps": [], @@ -572386,8 +539230,6 @@ }, "description": "02.10.011, Rechnerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5610.02.011", "maps": [], @@ -572420,8 +539262,6 @@ }, "description": "02.10.011A, Balkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5610.02.011A", "maps": [], @@ -572454,8 +539294,6 @@ }, "description": "02.10.013, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5610.02.013", "maps": [], @@ -572488,8 +539326,6 @@ }, "description": "02.10.014, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5610.02.014", "maps": [], @@ -572522,8 +539358,6 @@ }, "description": "02.10.015, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5610.02.015", "maps": [], @@ -572556,8 +539390,6 @@ }, "description": "02.10.016, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5610.02.016", "maps": [], @@ -572590,8 +539422,6 @@ }, "description": "02.10.017A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5610.02.017A", "maps": [], @@ -572624,8 +539454,6 @@ }, "description": "02.10.017B, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5610.02.017B", "maps": [], @@ -572658,8 +539486,6 @@ }, "description": "02.10.018, Abstellraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5610.02.018", "maps": [], @@ -572692,8 +539518,6 @@ }, "description": "02.10.019, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5610.02.019", "maps": [], @@ -572726,8 +539550,6 @@ }, "description": "02.10.020, Rechnerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5610.02.020", "maps": [], @@ -572760,8 +539582,6 @@ }, "description": "02.10.020A, Balkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5610.02.020A", "maps": [], @@ -572794,8 +539614,6 @@ }, "description": "02.10.021, B\u00fcro/Post", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5610.02.021", "maps": [], @@ -572828,8 +539646,6 @@ }, "description": "02.10.022A, Kopierer M2/M3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5610.02.022A", "maps": [], @@ -572862,8 +539678,6 @@ }, "description": "02.10.022B, Besprechungsraum M2/M3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5610.02.022B", "maps": [], @@ -572896,8 +539710,6 @@ }, "description": "02.10.030, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5610.02.030", "maps": [], @@ -572930,8 +539742,6 @@ }, "description": "02.10.031, Wasserversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5610.02.031", "maps": [], @@ -572964,8 +539774,6 @@ }, "description": "02.10.032A, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5610.02.032A", "maps": [], @@ -572998,8 +539806,6 @@ }, "description": "02.10.032B, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5610.02.032B", "maps": [], @@ -573032,8 +539838,6 @@ }, "description": "02.10.033, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5610.02.033", "maps": [], @@ -573066,8 +539870,6 @@ }, "description": "02.10.034A, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5610.02.034A", "maps": [], @@ -573100,8 +539902,6 @@ }, "description": "02.10.034B, Fotolabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5610.02.034B", "maps": [], @@ -573134,8 +539934,6 @@ }, "description": "02.10.035, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5610.02.035", "maps": [], @@ -573168,8 +539966,6 @@ }, "description": "02.10.036, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5610.02.036", "maps": [], @@ -573202,8 +539998,6 @@ }, "description": "02.10.037, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5610.02.037", "maps": [], @@ -573236,8 +540030,6 @@ }, "description": "02.10.038, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5610.02.038", "maps": [], @@ -573270,8 +540062,6 @@ }, "description": "02.10.039, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5610.02.039", "maps": [], @@ -573304,8 +540094,6 @@ }, "description": "02.10.040, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5610.02.040", "maps": [], @@ -573338,8 +540126,6 @@ }, "description": "02.10.050, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5610.02.050", "maps": [], @@ -573372,8 +540158,6 @@ }, "description": "02.10.051, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5610.02.051", "maps": [], @@ -573406,8 +540190,6 @@ }, "description": "02.10.052, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5610.02.052", "maps": [], @@ -573440,8 +540222,6 @@ }, "description": "02.10.053, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5610.02.053", "maps": [], @@ -573474,8 +540254,6 @@ }, "description": "02.10.054, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5610.02.054", "maps": [], @@ -573508,8 +540286,6 @@ }, "description": "02.10.055, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5610.02.055", "maps": [], @@ -573542,8 +540318,6 @@ }, "description": "02.10.057, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5610.02.057", "maps": [], @@ -573576,8 +540350,6 @@ }, "description": "02.10.058, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5610.02.058", "maps": [], @@ -573610,8 +540382,6 @@ }, "description": "02.10.059, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5610.02.059", "maps": [], @@ -573644,8 +540414,6 @@ }, "description": "02.10.060, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5610.02.060", "maps": [], @@ -573678,8 +540446,6 @@ }, "description": "02.10.101, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5610.02.101", "maps": [], @@ -573711,8 +540477,6 @@ }, "description": "02.10.102, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5610.02.102", "maps": [], @@ -573744,8 +540508,6 @@ }, "description": "03.10.001, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5610.03.001", "maps": [], @@ -573809,8 +540571,6 @@ }, "description": "03.10.011A, Balkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5610.03.011A", "maps": [], @@ -573843,8 +540603,6 @@ }, "description": "03.10.013, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5610.03.013", "maps": [], @@ -573877,8 +540635,6 @@ }, "description": "03.10.014, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5610.03.014", "maps": [], @@ -573911,8 +540667,6 @@ }, "description": "03.10.015, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5610.03.015", "maps": [], @@ -573945,8 +540699,6 @@ }, "description": "03.10.016, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5610.03.016", "maps": [], @@ -573979,8 +540731,6 @@ }, "description": "03.10.017A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5610.03.017A", "maps": [], @@ -574013,8 +540763,6 @@ }, "description": "03.10.017B, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5610.03.017B", "maps": [], @@ -574047,8 +540795,6 @@ }, "description": "03.10.018, Abstellraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5610.03.018", "maps": [], @@ -574081,8 +540827,6 @@ }, "description": "03.10.019, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5610.03.019", "maps": [], @@ -574115,8 +540859,6 @@ }, "description": "03.10.020, Rechnerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5610.03.020", "maps": [], @@ -574149,8 +540891,6 @@ }, "description": "03.10.020A, Balkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5610.03.020A", "maps": [], @@ -574183,8 +540923,6 @@ }, "description": "03.10.021, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5610.03.021", "maps": [], @@ -574217,8 +540955,6 @@ }, "description": "03.10.022A, Kopierer M4/M13", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5610.03.022A", "maps": [], @@ -574251,8 +540987,6 @@ }, "description": "03.10.022B, Besprechungsraum M4/M13", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5610.03.022B", "maps": [], @@ -574285,8 +541019,6 @@ }, "description": "03.10.030, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5610.03.030", "maps": [], @@ -574319,8 +541051,6 @@ }, "description": "03.10.031, Wasserversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5610.03.031", "maps": [], @@ -574353,8 +541083,6 @@ }, "description": "03.10.032A, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5610.03.032A", "maps": [], @@ -574387,8 +541115,6 @@ }, "description": "03.10.032B, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5610.03.032B", "maps": [], @@ -574421,8 +541147,6 @@ }, "description": "03.10.033, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5610.03.033", "maps": [], @@ -574454,8 +541178,6 @@ }, "description": "03.10.034A, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5610.03.034A", "maps": [], @@ -574488,8 +541210,6 @@ }, "description": "03.10.034B, Lager/B\u00fcromaterialien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5610.03.034B", "maps": [], @@ -574522,8 +541242,6 @@ }, "description": "03.10.035, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5610.03.035", "maps": [], @@ -574555,8 +541273,6 @@ }, "description": "03.10.036, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5610.03.036", "maps": [], @@ -574589,8 +541305,6 @@ }, "description": "03.10.037, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5610.03.037", "maps": [], @@ -574622,8 +541336,6 @@ }, "description": "03.10.038, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5610.03.038", "maps": [], @@ -574656,8 +541368,6 @@ }, "description": "03.10.039, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5610.03.039", "maps": [], @@ -574689,8 +541399,6 @@ }, "description": "03.10.040, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5610.03.040", "maps": [], @@ -574723,8 +541431,6 @@ }, "description": "03.10.050, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5610.03.050", "maps": [], @@ -574757,8 +541463,6 @@ }, "description": "03.10.051, Aufenthalt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5610.03.051", "maps": [], @@ -574791,8 +541495,6 @@ }, "description": "03.10.052, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5610.03.052", "maps": [], @@ -574825,8 +541527,6 @@ }, "description": "03.10.053, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5610.03.053", "maps": [], @@ -574858,8 +541558,6 @@ }, "description": "03.10.054, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5610.03.054", "maps": [], @@ -574892,8 +541590,6 @@ }, "description": "03.10.055, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5610.03.055", "maps": [], @@ -574925,8 +541621,6 @@ }, "description": "03.10.057, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5610.03.057", "maps": [], @@ -574958,8 +541652,6 @@ }, "description": "03.10.058, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5610.03.058", "maps": [], @@ -574992,8 +541684,6 @@ }, "description": "03.10.059, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5610.03.059", "maps": [], @@ -575025,8 +541715,6 @@ }, "description": "03.10.060, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5610.03.060", "maps": [], @@ -575059,8 +541747,6 @@ }, "description": "03.10.101, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5610.03.101", "maps": [], @@ -575092,8 +541778,6 @@ }, "description": "03.10.102, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5610.03.102", "maps": [], @@ -575125,8 +541809,6 @@ }, "description": "04.10.013, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5610.04.013", "maps": [], @@ -575159,8 +541841,6 @@ }, "description": "04.10.014, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5610.04.014", "maps": [], @@ -575193,8 +541873,6 @@ }, "description": "04.10.019, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "5610.04.019", "maps": [], @@ -575227,8 +541905,6 @@ }, "description": "00.10.010, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5610.EG.010", "maps": [], @@ -575261,8 +541937,6 @@ }, "description": "00.10.010A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5610.EG.010A", "maps": [], @@ -575327,8 +542001,6 @@ }, "description": "00.10.012, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5610.EG.012", "maps": [], @@ -575360,8 +542032,6 @@ }, "description": "00.10.013, Ausgabe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5610.EG.013", "maps": [], @@ -575393,8 +542063,6 @@ }, "description": "00.10.014, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5610.EG.014", "maps": [], @@ -575427,8 +542095,6 @@ }, "description": "00.10.015, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5610.EG.015", "maps": [], @@ -575461,8 +542127,6 @@ }, "description": "00.10.016, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5610.EG.016", "maps": [], @@ -575495,8 +542159,6 @@ }, "description": "00.10.017, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5610.EG.017", "maps": [], @@ -575529,8 +542191,6 @@ }, "description": "00.10.018A, Plutzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5610.EG.018A", "maps": [], @@ -575563,8 +542223,6 @@ }, "description": "00.10.018B, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5610.EG.018B", "maps": [], @@ -575597,8 +542255,6 @@ }, "description": "00.10.019, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5610.EG.019", "maps": [], @@ -575631,8 +542287,6 @@ }, "description": "00.10.020, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5610.EG.020", "maps": [], @@ -575665,8 +542319,6 @@ }, "description": "00.10.021, Cafeteria", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5610.EG.021", "maps": [], @@ -575699,8 +542351,6 @@ }, "description": "00.10.030, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5610.EG.030", "maps": [], @@ -575733,8 +542383,6 @@ }, "description": "00.10.031, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5610.EG.031", "maps": [], @@ -575767,8 +542415,6 @@ }, "description": "00.10.032A, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5610.EG.032A", "maps": [], @@ -575801,8 +542447,6 @@ }, "description": "00.10.032B, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5610.EG.032B", "maps": [], @@ -575835,8 +542479,6 @@ }, "description": "00.10.033, Besprechung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5610.EG.033", "maps": [], @@ -575869,8 +542511,6 @@ }, "description": "00.10.034A, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5610.EG.034A", "maps": [], @@ -575903,8 +542543,6 @@ }, "description": "00.10.034B, Archiv", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5610.EG.034B", "maps": [], @@ -575937,8 +542575,6 @@ }, "description": "00.10.035, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5610.EG.035", "maps": [], @@ -575971,8 +542607,6 @@ }, "description": "00.10.036, B\u00fcro Verwaltung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5610.EG.036", "maps": [], @@ -576005,8 +542639,6 @@ }, "description": "00.10.037, B\u00fcro Verwaltung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5610.EG.037", "maps": [], @@ -576039,8 +542671,6 @@ }, "description": "00.10.038, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5610.EG.038", "maps": [], @@ -576073,8 +542703,6 @@ }, "description": "00.10.039, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5610.EG.039", "maps": [], @@ -576107,8 +542735,6 @@ }, "description": "00.10.041, B\u00fcro Verwaltung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5610.EG.041", "maps": [], @@ -576141,8 +542767,6 @@ }, "description": "00.10.042, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5610.EG.042", "maps": [], @@ -576174,8 +542798,6 @@ }, "description": "00.10.043, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5610.EG.043", "maps": [], @@ -576208,8 +542830,6 @@ }, "description": "00.10.044, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5610.EG.044", "maps": [], @@ -576241,8 +542861,6 @@ }, "description": "00.10.050, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5610.EG.050", "maps": [], @@ -576275,8 +542893,6 @@ }, "description": "00.10.051, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5610.EG.051", "maps": [], @@ -576308,8 +542924,6 @@ }, "description": "00.10.052, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5610.EG.052", "maps": [], @@ -576341,8 +542955,6 @@ }, "description": "00.10.053, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5610.EG.053", "maps": [], @@ -576374,8 +542986,6 @@ }, "description": "00.10.054, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5610.EG.054", "maps": [], @@ -576407,8 +543017,6 @@ }, "description": "00.10.055, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5610.EG.055", "maps": [], @@ -576440,8 +543048,6 @@ }, "description": "00.10.056, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5610.EG.056", "maps": [], @@ -576473,8 +543079,6 @@ }, "description": "00.10.057, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5610.EG.057", "maps": [], @@ -576506,8 +543110,6 @@ }, "description": "00.10.058, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5610.EG.058", "maps": [], @@ -576540,8 +543142,6 @@ }, "description": "00.10.101, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5610.EG.101", "maps": [], @@ -576574,8 +543174,6 @@ }, "description": "00.10.102, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5610.EG.102", "maps": [], @@ -576608,8 +543206,6 @@ }, "description": "-1.10.011, Fernw\u00e4rme", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5610.U1.011", "maps": [], @@ -576642,8 +543238,6 @@ }, "description": "-1.10.012, Hebeanlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5610.U1.012", "maps": [], @@ -576676,8 +543270,6 @@ }, "description": "-1.10.013, Druckluftzentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5610.U1.013", "maps": [], @@ -576710,8 +543302,6 @@ }, "description": "-1.10.014, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5610.U1.014", "maps": [], @@ -576744,8 +543334,6 @@ }, "description": "-1.10.015, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5610.U1.015", "maps": [], @@ -576778,8 +543366,6 @@ }, "description": "-1.10.016, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5610.U1.016", "maps": [], @@ -576812,8 +543398,6 @@ }, "description": "-1.10.017, Niederspannung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5610.U1.017", "maps": [], @@ -576846,8 +543430,6 @@ }, "description": "-1.10.018, Personenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5610.U1.018", "maps": [], @@ -576880,8 +543462,6 @@ }, "description": "-1.10.030, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5610.U1.030", "maps": [], @@ -576914,8 +543494,6 @@ }, "description": "-1.10.040, Lichtschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5610.U1.040", "maps": [], @@ -576948,8 +543526,6 @@ }, "description": "-1.10.041, Trafo", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5610.U1.041", "maps": [], @@ -576982,8 +543558,6 @@ }, "description": "-1.10.042, Trafo", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5610.U1.042", "maps": [], @@ -577016,8 +543590,6 @@ }, "description": "-1.10.043, Trafo", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5610.U1.043", "maps": [], @@ -577050,8 +543622,6 @@ }, "description": "-1.10.044, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5610.U1.044", "maps": [], @@ -577084,8 +543654,6 @@ }, "description": "-1.10.101, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5610.U1.101", "maps": [], @@ -577118,8 +543686,6 @@ }, "description": "01.11.001, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5611.01.001", "maps": [], @@ -577152,8 +543718,6 @@ }, "description": "01.11.011, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5611.01.011", "maps": [], @@ -577186,8 +543750,6 @@ }, "description": "01.11.012, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5611.01.012", "maps": [], @@ -577220,8 +543782,6 @@ }, "description": "01.11.013, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5611.01.013", "maps": [], @@ -577254,8 +543814,6 @@ }, "description": "01.11.014, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5611.01.014", "maps": [], @@ -577288,8 +543846,6 @@ }, "description": "01.11.015A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5611.01.015A", "maps": [], @@ -577322,8 +543878,6 @@ }, "description": "01.11.015B, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5611.01.015B", "maps": [], @@ -577356,8 +543910,6 @@ }, "description": "01.11.016, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5611.01.016", "maps": [], @@ -577390,8 +543942,6 @@ }, "description": "01.11.017, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5611.01.017", "maps": [], @@ -577424,8 +543974,6 @@ }, "description": "01.11.018, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5611.01.018", "maps": [], @@ -577458,8 +544006,6 @@ }, "description": "01.11.018A, Balkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5611.01.018A", "maps": [], @@ -577492,8 +544038,6 @@ }, "description": "01.11.030, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5611.01.030", "maps": [], @@ -577526,8 +544070,6 @@ }, "description": "01.11.031A, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5611.01.031A", "maps": [], @@ -577560,8 +544102,6 @@ }, "description": "01.11.031B, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5611.01.031B", "maps": [], @@ -577594,8 +544134,6 @@ }, "description": "01.11.032, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5611.01.032", "maps": [], @@ -577628,8 +544166,6 @@ }, "description": "01.11.033A, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5611.01.033A", "maps": [], @@ -577662,8 +544198,6 @@ }, "description": "01.11.033B, Lager/B\u00fcromaterial", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5611.01.033B", "maps": [], @@ -577696,8 +544230,6 @@ }, "description": "01.11.034, B\u00fcro Verwaltung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5611.01.034", "maps": [], @@ -577730,8 +544262,6 @@ }, "description": "01.11.035, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5611.01.035", "maps": [], @@ -577764,8 +544294,6 @@ }, "description": "01.11.037, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5611.01.037", "maps": [], @@ -577798,8 +544326,6 @@ }, "description": "01.11.038, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5611.01.038", "maps": [], @@ -577832,8 +544358,6 @@ }, "description": "01.11.039, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5611.01.039", "maps": [], @@ -577866,8 +544390,6 @@ }, "description": "01.11.040, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5611.01.040", "maps": [], @@ -577900,8 +544422,6 @@ }, "description": "01.11.041, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5611.01.041", "maps": [], @@ -577934,8 +544454,6 @@ }, "description": "01.11.042, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5611.01.042", "maps": [], @@ -577968,8 +544486,6 @@ }, "description": "01.11.043, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5611.01.043", "maps": [], @@ -578002,8 +544518,6 @@ }, "description": "01.11.044, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5611.01.044", "maps": [], @@ -578036,8 +544550,6 @@ }, "description": "01.11.050, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5611.01.050", "maps": [], @@ -578070,8 +544582,6 @@ }, "description": "01.11.051, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5611.01.051", "maps": [], @@ -578104,8 +544614,6 @@ }, "description": "01.11.052, Besprechung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5611.01.052", "maps": [], @@ -578138,8 +544646,6 @@ }, "description": "01.11.053, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5611.01.053", "maps": [], @@ -578172,8 +544678,6 @@ }, "description": "01.11.054, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5611.01.054", "maps": [], @@ -578206,8 +544710,6 @@ }, "description": "01.11.055, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5611.01.055", "maps": [], @@ -578240,8 +544742,6 @@ }, "description": "01.11.057, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5611.01.057", "maps": [], @@ -578274,8 +544774,6 @@ }, "description": "01.11.058, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5611.01.058", "maps": [], @@ -578308,8 +544806,6 @@ }, "description": "01.11.059, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5611.01.059", "maps": [], @@ -578342,8 +544838,6 @@ }, "description": "01.11.060, B\u00fcro Verwaltung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5611.01.060", "maps": [], @@ -578376,8 +544870,6 @@ }, "description": "01.11.061, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5611.01.061", "maps": [], @@ -578410,8 +544902,6 @@ }, "description": "01.11.101, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5611.01.101", "maps": [], @@ -578444,8 +544934,6 @@ }, "description": "01.11.102, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5611.01.102", "maps": [], @@ -578478,8 +544966,6 @@ }, "description": "02.11.001, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5611.02.001", "maps": [], @@ -578512,8 +544998,6 @@ }, "description": "02.11.011, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5611.02.011", "maps": [], @@ -578546,8 +545030,6 @@ }, "description": "02.11.012, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5611.02.012", "maps": [], @@ -578580,8 +545062,6 @@ }, "description": "02.11.013, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5611.02.013", "maps": [], @@ -578614,8 +545094,6 @@ }, "description": "02.11.014, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5611.02.014", "maps": [], @@ -578648,8 +545126,6 @@ }, "description": "02.11.015A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5611.02.015A", "maps": [], @@ -578682,8 +545158,6 @@ }, "description": "02.11.015B, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5611.02.015B", "maps": [], @@ -578716,8 +545190,6 @@ }, "description": "02.11.016, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5611.02.016", "maps": [], @@ -578750,8 +545222,6 @@ }, "description": "02.11.017, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5611.02.017", "maps": [], @@ -578784,8 +545254,6 @@ }, "description": "02.11.018, Praktikumsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5611.02.018", "maps": [], @@ -578818,8 +545286,6 @@ }, "description": "02.11.018A, Balkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5611.02.018A", "maps": [], @@ -578852,8 +545318,6 @@ }, "description": "02.11.030, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5611.02.030", "maps": [], @@ -578886,8 +545350,6 @@ }, "description": "02.11.031A, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5611.02.031A", "maps": [], @@ -578920,8 +545382,6 @@ }, "description": "02.11.031B, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5611.02.031B", "maps": [], @@ -578954,8 +545414,6 @@ }, "description": "02.11.032, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5611.02.032", "maps": [], @@ -578988,8 +545446,6 @@ }, "description": "02.11.033, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5611.02.033", "maps": [], @@ -579022,8 +545478,6 @@ }, "description": "02.11.034, Toutor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5611.02.034", "maps": [], @@ -579056,8 +545510,6 @@ }, "description": "02.11.035, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5611.02.035", "maps": [], @@ -579090,8 +545542,6 @@ }, "description": "02.11.037, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5611.02.037", "maps": [], @@ -579124,8 +545574,6 @@ }, "description": "02.11.038, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5611.02.038", "maps": [], @@ -579158,8 +545606,6 @@ }, "description": "02.11.039, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5611.02.039", "maps": [], @@ -579192,8 +545638,6 @@ }, "description": "02.11.040, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5611.02.040", "maps": [], @@ -579226,8 +545670,6 @@ }, "description": "02.11.041, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5611.02.041", "maps": [], @@ -579260,8 +545702,6 @@ }, "description": "02.11.042, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5611.02.042", "maps": [], @@ -579294,8 +545734,6 @@ }, "description": "02.11.043, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5611.02.043", "maps": [], @@ -579328,8 +545766,6 @@ }, "description": "02.11.044, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5611.02.044", "maps": [], @@ -579362,8 +545798,6 @@ }, "description": "02.11.050, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5611.02.050", "maps": [], @@ -579396,8 +545830,6 @@ }, "description": "02.11.051, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5611.02.051", "maps": [], @@ -579430,8 +545862,6 @@ }, "description": "02.11.052, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5611.02.052", "maps": [], @@ -579464,8 +545894,6 @@ }, "description": "02.11.053, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5611.02.053", "maps": [], @@ -579498,8 +545926,6 @@ }, "description": "02.11.054, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5611.02.054", "maps": [], @@ -579532,8 +545958,6 @@ }, "description": "02.11.055, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5611.02.055", "maps": [], @@ -579566,8 +545990,6 @@ }, "description": "02.11.057, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5611.02.057", "maps": [], @@ -579600,8 +546022,6 @@ }, "description": "02.11.058, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5611.02.058", "maps": [], @@ -579634,8 +546054,6 @@ }, "description": "02.11.059, B\u00fcro/Emeritus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5611.02.059", "maps": [], @@ -579668,8 +546086,6 @@ }, "description": "02.11.060, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5611.02.060", "maps": [], @@ -579702,8 +546118,6 @@ }, "description": "02.11.061, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5611.02.061", "maps": [], @@ -579736,8 +546150,6 @@ }, "description": "02.11.101, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5611.02.101", "maps": [], @@ -579770,8 +546182,6 @@ }, "description": "02.11.102, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5611.02.102", "maps": [], @@ -579804,8 +546214,6 @@ }, "description": "03.11.001, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5611.03.001", "maps": [], @@ -579838,8 +546246,6 @@ }, "description": "03.11.011, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5611.03.011", "maps": [], @@ -579872,8 +546278,6 @@ }, "description": "03.11.012, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5611.03.012", "maps": [], @@ -579906,8 +546310,6 @@ }, "description": "03.11.013, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5611.03.013", "maps": [], @@ -579940,8 +546342,6 @@ }, "description": "03.11.014, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5611.03.014", "maps": [], @@ -579974,8 +546374,6 @@ }, "description": "03.11.015A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5611.03.015A", "maps": [], @@ -580008,8 +546406,6 @@ }, "description": "03.11.015B, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5611.03.015B", "maps": [], @@ -580042,8 +546438,6 @@ }, "description": "03.11.016, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5611.03.016", "maps": [], @@ -580076,8 +546470,6 @@ }, "description": "03.11.017, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5611.03.017", "maps": [], @@ -580110,8 +546502,6 @@ }, "description": "03.11.018, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5611.03.018", "maps": [], @@ -580144,8 +546534,6 @@ }, "description": "03.11.018A, Balkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5611.03.018A", "maps": [], @@ -580178,8 +546566,6 @@ }, "description": "03.11.030, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5611.03.030", "maps": [], @@ -580212,8 +546598,6 @@ }, "description": "03.11.031A, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5611.03.031A", "maps": [], @@ -580246,8 +546630,6 @@ }, "description": "03.11.031B, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5611.03.031B", "maps": [], @@ -580280,8 +546662,6 @@ }, "description": "03.11.032, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5611.03.032", "maps": [], @@ -580314,8 +546694,6 @@ }, "description": "03.11.033A, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5611.03.033A", "maps": [], @@ -580348,8 +546726,6 @@ }, "description": "03.11.033B, Kopierraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5611.03.033B", "maps": [], @@ -580382,8 +546758,6 @@ }, "description": "03.11.034, Praktikumsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5611.03.034", "maps": [], @@ -580416,8 +546790,6 @@ }, "description": "03.11.035, Praktikumsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5611.03.035", "maps": [], @@ -580450,8 +546822,6 @@ }, "description": "03.11.037, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5611.03.037", "maps": [], @@ -580484,8 +546854,6 @@ }, "description": "03.11.038, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5611.03.038", "maps": [], @@ -580518,8 +546886,6 @@ }, "description": "03.11.039, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5611.03.039", "maps": [], @@ -580552,8 +546918,6 @@ }, "description": "03.11.040, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5611.03.040", "maps": [], @@ -580586,8 +546950,6 @@ }, "description": "03.11.041, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5611.03.041", "maps": [], @@ -580620,8 +546982,6 @@ }, "description": "03.11.042, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5611.03.042", "maps": [], @@ -580654,8 +547014,6 @@ }, "description": "03.11.043, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5611.03.043", "maps": [], @@ -580688,8 +547046,6 @@ }, "description": "03.11.044, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5611.03.044", "maps": [], @@ -580722,8 +547078,6 @@ }, "description": "03.11.050, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5611.03.050", "maps": [], @@ -580756,8 +547110,6 @@ }, "description": "03.11.051, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5611.03.051", "maps": [], @@ -580790,8 +547142,6 @@ }, "description": "03.11.052, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5611.03.052", "maps": [], @@ -580824,8 +547174,6 @@ }, "description": "03.11.053, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5611.03.053", "maps": [], @@ -580858,8 +547206,6 @@ }, "description": "03.11.054, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5611.03.054", "maps": [], @@ -580892,8 +547238,6 @@ }, "description": "03.11.055, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5611.03.055", "maps": [], @@ -580926,8 +547270,6 @@ }, "description": "03.11.057, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5611.03.057", "maps": [], @@ -580960,8 +547302,6 @@ }, "description": "03.11.058, Besprechung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5611.03.058", "maps": [], @@ -580994,8 +547334,6 @@ }, "description": "03.11.059, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5611.03.059", "maps": [], @@ -581028,8 +547366,6 @@ }, "description": "03.11.060, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5611.03.060", "maps": [], @@ -581062,8 +547398,6 @@ }, "description": "03.11.061, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5611.03.061", "maps": [], @@ -581096,8 +547430,6 @@ }, "description": "03.11.101, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5611.03.101", "maps": [], @@ -581130,8 +547462,6 @@ }, "description": "03.11.102, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5611.03.102", "maps": [], @@ -581164,8 +547494,6 @@ }, "description": "04.11.012, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5611.DG.012", "maps": [], @@ -581198,8 +547526,6 @@ }, "description": "04.11.013, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5611.DG.013", "maps": [], @@ -581232,8 +547558,6 @@ }, "description": "00.11.011, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5611.EG.011", "maps": [], @@ -581266,8 +547590,6 @@ }, "description": "00.11.012, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5611.EG.012", "maps": [], @@ -581300,8 +547622,6 @@ }, "description": "00.11.013, Forsoft/Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5611.EG.013", "maps": [], @@ -581334,8 +547654,6 @@ }, "description": "00.11.014, Forsoft/Abstellraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5611.EG.014", "maps": [], @@ -581368,8 +547686,6 @@ }, "description": "00.11.015, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5611.EG.015", "maps": [], @@ -581402,8 +547718,6 @@ }, "description": "00.11.016A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5611.EG.016A", "maps": [], @@ -581436,8 +547750,6 @@ }, "description": "00.11.016B, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5611.EG.016B", "maps": [], @@ -581470,8 +547782,6 @@ }, "description": "00.11.017, Forsoft/Abstellraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5611.EG.017", "maps": [], @@ -581504,8 +547814,6 @@ }, "description": "00.11.030, Forsoft/Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5611.EG.030", "maps": [], @@ -581538,8 +547846,6 @@ }, "description": "00.11.031A, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5611.EG.031A", "maps": [], @@ -581572,8 +547878,6 @@ }, "description": "00.11.031B, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5611.EG.031B", "maps": [], @@ -581606,8 +547910,6 @@ }, "description": "00.11.032, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5611.EG.032", "maps": [], @@ -581640,8 +547942,6 @@ }, "description": "00.11.033A, Forsoft/Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5611.EG.033A", "maps": [], @@ -581674,8 +547974,6 @@ }, "description": "00.11.033B, Forsoft/Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5611.EG.033B", "maps": [], @@ -581708,8 +548006,6 @@ }, "description": "00.11.034, Forsoft/B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5611.EG.034", "maps": [], @@ -581742,8 +548038,6 @@ }, "description": "00.11.035, Forsoft/Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5611.EG.035", "maps": [], @@ -581776,8 +548070,6 @@ }, "description": "00.11.036, Forsoft/B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5611.EG.036", "maps": [], @@ -581810,8 +548102,6 @@ }, "description": "00.11.037, Besprechung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5611.EG.037", "maps": [], @@ -581844,8 +548134,6 @@ }, "description": "00.11.038, Forsoft/Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5611.EG.038", "maps": [], @@ -581878,8 +548166,6 @@ }, "description": "00.11.039, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5611.EG.039", "maps": [], @@ -581912,8 +548198,6 @@ }, "description": "00.11.050, Forsoft/Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5611.EG.050", "maps": [], @@ -581946,8 +548230,6 @@ }, "description": "00.11.051, Forsoft/B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5611.EG.051", "maps": [], @@ -581980,8 +548262,6 @@ }, "description": "00.11.052, Forsoft/B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5611.EG.052", "maps": [], @@ -582014,8 +548294,6 @@ }, "description": "00.11.053, Forsoft/B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5611.EG.053", "maps": [], @@ -582048,8 +548326,6 @@ }, "description": "00.11.054, Forsoft/B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5611.EG.054", "maps": [], @@ -582082,8 +548358,6 @@ }, "description": "00.11.055, Forsoft/B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5611.EG.055", "maps": [], @@ -582116,8 +548390,6 @@ }, "description": "00.11.056, Forsoft/B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5611.EG.056", "maps": [], @@ -582150,8 +548422,6 @@ }, "description": "00.11.057, Forsoft/B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5611.EG.057", "maps": [], @@ -582184,8 +548454,6 @@ }, "description": "00.11.058, Forsoft/B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5611.EG.058", "maps": [], @@ -582218,8 +548486,6 @@ }, "description": "00.11.059, Forsoft/B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5611.EG.059", "maps": [], @@ -582252,8 +548518,6 @@ }, "description": "00.11.060, Forsoft/B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5611.EG.060", "maps": [], @@ -582286,8 +548550,6 @@ }, "description": "00.11.061, Forsoft/B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5611.EG.061", "maps": [], @@ -582320,8 +548582,6 @@ }, "description": "00.11.062, Forsoft/B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5611.EG.062", "maps": [], @@ -582354,8 +548614,6 @@ }, "description": "00.11.063, Forsoft/B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5611.EG.063", "maps": [], @@ -582388,8 +548646,6 @@ }, "description": "00.11.064, Forsoft/B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5611.EG.064", "maps": [], @@ -582422,8 +548678,6 @@ }, "description": "00.11.065, Forsoft/B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5611.EG.065", "maps": [], @@ -582456,8 +548710,6 @@ }, "description": "00.11.101, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5611.EG.101", "maps": [], @@ -582490,8 +548742,6 @@ }, "description": "00.11.102, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5611.EG.102", "maps": [], @@ -582524,8 +548774,6 @@ }, "description": "-1.11.012, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5611.U1.012", "maps": [], @@ -582558,8 +548806,6 @@ }, "description": "-1.11.013, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5611.U1.013", "maps": [], @@ -582592,8 +548838,6 @@ }, "description": "-1.11.014, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5611.U1.014", "maps": [], @@ -582626,8 +548870,6 @@ }, "description": "-1.11.015, Heizung/Brauchwassererw\u00e4rmung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5611.U1.015", "maps": [], @@ -582660,8 +548902,6 @@ }, "description": "-1.11.101, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5611.U1.101", "maps": [], @@ -582694,8 +548934,6 @@ }, "description": "01.12.001, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5612.01.001", "maps": [], @@ -582728,8 +548966,6 @@ }, "description": "01.12.011, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5612.01.011", "maps": [], @@ -582762,8 +548998,6 @@ }, "description": "01.12.012, Heizung/L\u00fcftung/Sanit\u00e4r", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5612.01.012", "maps": [], @@ -582796,8 +549030,6 @@ }, "description": "01.12.013, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5612.01.013", "maps": [], @@ -582830,8 +549062,6 @@ }, "description": "01.12.014, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5612.01.014", "maps": [], @@ -582864,8 +549094,6 @@ }, "description": "01.12.015A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5612.01.015A", "maps": [], @@ -582898,8 +549126,6 @@ }, "description": "01.12.015B, Heizung/L\u00fcftung/Sanit\u00e4r", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5612.01.015B", "maps": [], @@ -582932,8 +549158,6 @@ }, "description": "01.12.016, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5612.01.016", "maps": [], @@ -582966,8 +549190,6 @@ }, "description": "01.12.017, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5612.01.017", "maps": [], @@ -583000,8 +549222,6 @@ }, "description": "01.12.018, Praktikumsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5612.01.018", "maps": [], @@ -583034,8 +549254,6 @@ }, "description": "01.12.019, Praktikumsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5612.01.019", "maps": [], @@ -583068,8 +549286,6 @@ }, "description": "01.12.020A, Kopierraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5612.01.020A", "maps": [], @@ -583102,8 +549318,6 @@ }, "description": "01.12.020B, Besprechung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5612.01.020B", "maps": [], @@ -583136,8 +549350,6 @@ }, "description": "01.12.030, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5612.01.030", "maps": [], @@ -583170,8 +549382,6 @@ }, "description": "01.12.031A, Elektrische Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5612.01.031A", "maps": [], @@ -583204,8 +549414,6 @@ }, "description": "01.12.031B, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5612.01.031B", "maps": [], @@ -583238,8 +549446,6 @@ }, "description": "01.12.032, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5612.01.032", "maps": [], @@ -583272,8 +549478,6 @@ }, "description": "01.12.033A, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5612.01.033A", "maps": [], @@ -583306,8 +549510,6 @@ }, "description": "01.12.033B, Lager B\u00fcromaterial", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5612.01.033B", "maps": [], @@ -583340,8 +549542,6 @@ }, "description": "01.12.034, Seminar", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5612.01.034", "maps": [], @@ -583374,8 +549574,6 @@ }, "description": "01.12.035, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5612.01.035", "maps": [], @@ -583408,8 +549606,6 @@ }, "description": "01.12.036, Mitarbeiterraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5612.01.036", "maps": [], @@ -583442,8 +549638,6 @@ }, "description": "01.12.038, Mitarbeiterraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5612.01.038", "maps": [], @@ -583476,8 +549670,6 @@ }, "description": "01.12.039, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5612.01.039", "maps": [], @@ -583510,8 +549702,6 @@ }, "description": "01.12.040, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5612.01.040", "maps": [], @@ -583544,8 +549734,6 @@ }, "description": "01.12.050, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5612.01.050", "maps": [], @@ -583578,8 +549766,6 @@ }, "description": "01.12.051, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5612.01.051", "maps": [], @@ -583612,8 +549798,6 @@ }, "description": "01.12.052, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5612.01.052", "maps": [], @@ -583646,8 +549830,6 @@ }, "description": "01.12.053, Besprechung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5612.01.053", "maps": [], @@ -583680,8 +549862,6 @@ }, "description": "01.12.054, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5612.01.054", "maps": [], @@ -583714,8 +549894,6 @@ }, "description": "01.12.055, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5612.01.055", "maps": [], @@ -583748,8 +549926,6 @@ }, "description": "01.12.056, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5612.01.056", "maps": [], @@ -583782,8 +549958,6 @@ }, "description": "01.12.057, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5612.01.057", "maps": [], @@ -583816,8 +549990,6 @@ }, "description": "01.12.058, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5612.01.058", "maps": [], @@ -583850,8 +550022,6 @@ }, "description": "01.12.059, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5612.01.059", "maps": [], @@ -583884,8 +550054,6 @@ }, "description": "01.12.060, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5612.01.060", "maps": [], @@ -583918,8 +550086,6 @@ }, "description": "01.12.061, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5612.01.061", "maps": [], @@ -583952,8 +550118,6 @@ }, "description": "01.12.101, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5612.01.101", "maps": [], @@ -583986,8 +550150,6 @@ }, "description": "01.12.102, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5612.01.102", "maps": [], @@ -584020,8 +550182,6 @@ }, "description": "02.12.001, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5612.02.001", "maps": [], @@ -584054,8 +550214,6 @@ }, "description": "02.12.011, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5612.02.011", "maps": [], @@ -584088,8 +550246,6 @@ }, "description": "02.12.012, Heizung/L\u00fcftung/Sanit\u00e4r", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5612.02.012", "maps": [], @@ -584122,8 +550278,6 @@ }, "description": "02.12.013, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5612.02.013", "maps": [], @@ -584156,8 +550310,6 @@ }, "description": "02.12.014, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5612.02.014", "maps": [], @@ -584190,8 +550342,6 @@ }, "description": "02.12.015A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5612.02.015A", "maps": [], @@ -584224,8 +550374,6 @@ }, "description": "02.12.015B, Heizung/L\u00fcftung/Sanit\u00e4r", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5612.02.015B", "maps": [], @@ -584258,8 +550406,6 @@ }, "description": "02.12.016, Abstellraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5612.02.016", "maps": [], @@ -584292,8 +550438,6 @@ }, "description": "02.12.017, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5612.02.017", "maps": [], @@ -584326,8 +550470,6 @@ }, "description": "02.12.018, Rechnerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5612.02.018", "maps": [], @@ -584360,8 +550502,6 @@ }, "description": "02.12.019, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5612.02.019", "maps": [], @@ -584394,8 +550534,6 @@ }, "description": "02.12.020, Besprechungsraum", "eexam": null, - "events_end": "2023-12-18", - "events_start": "2023-10-02", "floor": "02", "id": "5612.02.020", "maps": [], @@ -584428,8 +550566,6 @@ }, "description": "02.12.030, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5612.02.030", "maps": [], @@ -584462,8 +550598,6 @@ }, "description": "02.12.031A, Elektrische Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5612.02.031A", "maps": [], @@ -584496,8 +550630,6 @@ }, "description": "02.12.031B, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5612.02.031B", "maps": [], @@ -584530,8 +550662,6 @@ }, "description": "02.12.032, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5612.02.032", "maps": [], @@ -584564,8 +550694,6 @@ }, "description": "02.12.033A, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5612.02.033A", "maps": [], @@ -584598,8 +550726,6 @@ }, "description": "02.12.033B, Lager B\u00fcromaterial", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5612.02.033B", "maps": [], @@ -584632,8 +550758,6 @@ }, "description": "02.12.034, B\u00fcro (GKAAM)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5612.02.034", "maps": [], @@ -584665,8 +550789,6 @@ }, "description": "02.12.035, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5612.02.035", "maps": [], @@ -584699,8 +550821,6 @@ }, "description": "02.12.036, B\u00fcro (GKAAM)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5612.02.036", "maps": [], @@ -584732,8 +550852,6 @@ }, "description": "02.12.037, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5612.02.037", "maps": [], @@ -584766,8 +550884,6 @@ }, "description": "02.12.038, B\u00fcro (GKAAM)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5612.02.038", "maps": [], @@ -584799,8 +550915,6 @@ }, "description": "02.12.039, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5612.02.039", "maps": [], @@ -584833,8 +550947,6 @@ }, "description": "02.12.040, B\u00fcro (GKAAM)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5612.02.040", "maps": [], @@ -584866,8 +550978,6 @@ }, "description": "02.12.050, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5612.02.050", "maps": [], @@ -584900,8 +551010,6 @@ }, "description": "02.12.051, Aufenthalt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5612.02.051", "maps": [], @@ -584934,8 +551042,6 @@ }, "description": "02.12.052, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5612.02.052", "maps": [], @@ -584968,8 +551074,6 @@ }, "description": "02.12.053, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5612.02.053", "maps": [], @@ -585002,8 +551106,6 @@ }, "description": "02.12.054, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5612.02.054", "maps": [], @@ -585036,8 +551138,6 @@ }, "description": "02.12.055, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5612.02.055", "maps": [], @@ -585070,8 +551170,6 @@ }, "description": "02.12.056, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5612.02.056", "maps": [], @@ -585104,8 +551202,6 @@ }, "description": "02.12.057, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5612.02.057", "maps": [], @@ -585138,8 +551234,6 @@ }, "description": "02.12.058, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5612.02.058", "maps": [], @@ -585172,8 +551266,6 @@ }, "description": "02.12.059, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5612.02.059", "maps": [], @@ -585206,8 +551298,6 @@ }, "description": "02.12.060, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5612.02.060", "maps": [], @@ -585240,8 +551330,6 @@ }, "description": "02.12.061, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5612.02.061", "maps": [], @@ -585274,8 +551362,6 @@ }, "description": "02.12.101, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5612.02.101", "maps": [], @@ -585308,8 +551394,6 @@ }, "description": "02.12.102, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5612.02.102", "maps": [], @@ -585342,8 +551426,6 @@ }, "description": "03.12.001, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5612.03.001", "maps": [], @@ -585376,8 +551458,6 @@ }, "description": "03.12.011, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5612.03.011", "maps": [], @@ -585410,8 +551490,6 @@ }, "description": "03.12.012, Heizung/L\u00fcftung/Sanit\u00e4r", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5612.03.012", "maps": [], @@ -585444,8 +551522,6 @@ }, "description": "03.12.013, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5612.03.013", "maps": [], @@ -585478,8 +551554,6 @@ }, "description": "03.12.014, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5612.03.014", "maps": [], @@ -585512,8 +551586,6 @@ }, "description": "03.12.015A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5612.03.015A", "maps": [], @@ -585546,8 +551618,6 @@ }, "description": "03.12.015B, Heizung/L\u00fcftung/Sanit\u00e4r", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5612.03.015B", "maps": [], @@ -585580,8 +551650,6 @@ }, "description": "03.12.016, Abstellraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5612.03.016", "maps": [], @@ -585614,8 +551682,6 @@ }, "description": "03.12.017, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5612.03.017", "maps": [], @@ -585648,8 +551714,6 @@ }, "description": "03.12.018, Rechnerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5612.03.018", "maps": [], @@ -585681,8 +551745,6 @@ }, "description": "03.12.019, B\u00fcro (M4/M13)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5612.03.019", "maps": [], @@ -585715,8 +551777,6 @@ }, "description": "03.12.020, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5612.03.020", "maps": [], @@ -585749,8 +551809,6 @@ }, "description": "03.12.020C, Balkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5612.03.020C", "maps": [], @@ -585783,8 +551841,6 @@ }, "description": "03.12.030, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5612.03.030", "maps": [], @@ -585817,8 +551873,6 @@ }, "description": "03.12.031A, Elektrische Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5612.03.031A", "maps": [], @@ -585851,8 +551905,6 @@ }, "description": "03.12.031B, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5612.03.031B", "maps": [], @@ -585885,8 +551937,6 @@ }, "description": "03.12.032, Wasserversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5612.03.032", "maps": [], @@ -585919,8 +551969,6 @@ }, "description": "03.12.033A, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5612.03.033A", "maps": [], @@ -585953,8 +552001,6 @@ }, "description": "03.12.033B, Lager B\u00fcromaterial", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5612.03.033B", "maps": [], @@ -585987,8 +552033,6 @@ }, "description": "03.12.034, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5612.03.034", "maps": [], @@ -586021,8 +552065,6 @@ }, "description": "03.12.035, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5612.03.035", "maps": [], @@ -586055,8 +552097,6 @@ }, "description": "03.12.036, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5612.03.036", "maps": [], @@ -586089,8 +552129,6 @@ }, "description": "03.12.037, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5612.03.037", "maps": [], @@ -586123,8 +552161,6 @@ }, "description": "03.12.038, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5612.03.038", "maps": [], @@ -586157,8 +552193,6 @@ }, "description": "03.12.039, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5612.03.039", "maps": [], @@ -586191,8 +552225,6 @@ }, "description": "03.12.040, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5612.03.040", "maps": [], @@ -586225,8 +552257,6 @@ }, "description": "03.12.050, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5612.03.050", "maps": [], @@ -586259,8 +552289,6 @@ }, "description": "03.12.051, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5612.03.051", "maps": [], @@ -586293,8 +552321,6 @@ }, "description": "03.12.052, Aufenthalt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5612.03.052", "maps": [], @@ -586327,8 +552353,6 @@ }, "description": "03.12.053, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5612.03.053", "maps": [], @@ -586361,8 +552385,6 @@ }, "description": "03.12.054, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5612.03.054", "maps": [], @@ -586395,8 +552417,6 @@ }, "description": "03.12.056, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5612.03.056", "maps": [], @@ -586429,8 +552449,6 @@ }, "description": "03.12.057, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5612.03.057", "maps": [], @@ -586463,8 +552481,6 @@ }, "description": "03.12.058, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5612.03.058", "maps": [], @@ -586497,8 +552513,6 @@ }, "description": "03.12.059, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5612.03.059", "maps": [], @@ -586531,8 +552545,6 @@ }, "description": "03.12.060, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5612.03.060", "maps": [], @@ -586565,8 +552577,6 @@ }, "description": "03.12.061, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5612.03.061", "maps": [], @@ -586599,8 +552609,6 @@ }, "description": "03.12.101, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5612.03.101", "maps": [], @@ -586632,8 +552640,6 @@ }, "description": "03.12.102, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5612.03.102", "maps": [], @@ -586665,8 +552671,6 @@ }, "description": "04.12.012, Heizung/L\u00fcftung/Sanit\u00e4r", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5612.DG.012", "maps": [], @@ -586699,8 +552703,6 @@ }, "description": "04.12.017, Aufzugs- und F\u00f6rdermaschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5612.DG.017", "maps": [], @@ -586733,8 +552735,6 @@ }, "description": "00.12.010, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5612.EG.010", "maps": [], @@ -586767,8 +552767,6 @@ }, "description": "00.12.010A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5612.EG.010A", "maps": [], @@ -586801,8 +552799,6 @@ }, "description": "00.12.011, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5612.EG.011", "maps": [], @@ -586835,8 +552831,6 @@ }, "description": "00.12.012, Heizung/L\u00fcftung/Sanit\u00e4r", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5612.EG.012", "maps": [], @@ -586869,8 +552863,6 @@ }, "description": "00.12.013, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5612.EG.013", "maps": [], @@ -586903,8 +552895,6 @@ }, "description": "00.12.014, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5612.EG.014", "maps": [], @@ -586937,8 +552927,6 @@ }, "description": "00.12.015A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5612.EG.015A", "maps": [], @@ -586971,8 +552959,6 @@ }, "description": "00.12.015B, Heizung/L\u00fcftung/Sanit\u00e4r", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5612.EG.015B", "maps": [], @@ -587005,8 +552991,6 @@ }, "description": "00.12.016, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5612.EG.016", "maps": [], @@ -587039,8 +553023,6 @@ }, "description": "00.12.017, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5612.EG.017", "maps": [], @@ -587073,8 +553055,6 @@ }, "description": "00.12.018, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5612.EG.018", "maps": [], @@ -587107,8 +553087,6 @@ }, "description": "00.12.019, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5612.EG.019", "maps": [], @@ -587141,8 +553119,6 @@ }, "description": "00.12.020, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5612.EG.020", "maps": [], @@ -587175,8 +553151,6 @@ }, "description": "00.12.030, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5612.EG.030", "maps": [], @@ -587209,8 +553183,6 @@ }, "description": "00.12.031A, Elektrische Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5612.EG.031A", "maps": [], @@ -587243,8 +553215,6 @@ }, "description": "00.12.031B, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5612.EG.031B", "maps": [], @@ -587277,8 +553247,6 @@ }, "description": "00.12.032, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5612.EG.032", "maps": [], @@ -587311,8 +553279,6 @@ }, "description": "00.12.033, Kopierraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5612.EG.033", "maps": [], @@ -587345,8 +553311,6 @@ }, "description": "00.12.034, Besprechung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5612.EG.034", "maps": [], @@ -587379,8 +553343,6 @@ }, "description": "00.12.035, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5612.EG.035", "maps": [], @@ -587413,8 +553375,6 @@ }, "description": "00.12.036, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5612.EG.036", "maps": [], @@ -587447,8 +553407,6 @@ }, "description": "00.12.037, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5612.EG.037", "maps": [], @@ -587481,8 +553439,6 @@ }, "description": "00.12.039, B\u00fcro Verwaltung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5612.EG.039", "maps": [], @@ -587515,8 +553471,6 @@ }, "description": "00.12.040, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5612.EG.040", "maps": [], @@ -587549,8 +553503,6 @@ }, "description": "00.12.041, B\u00fcro Verwaltung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5612.EG.041", "maps": [], @@ -587583,8 +553535,6 @@ }, "description": "00.12.042, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5612.EG.042", "maps": [], @@ -587617,8 +553567,6 @@ }, "description": "00.12.050, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5612.EG.050", "maps": [], @@ -587651,8 +553599,6 @@ }, "description": "00.12.051, B\u00fcro Verwaltung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5612.EG.051", "maps": [], @@ -587685,8 +553631,6 @@ }, "description": "00.12.052, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5612.EG.052", "maps": [], @@ -587719,8 +553663,6 @@ }, "description": "00.12.053, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5612.EG.053", "maps": [], @@ -587753,8 +553695,6 @@ }, "description": "00.12.054, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5612.EG.054", "maps": [], @@ -587787,8 +553727,6 @@ }, "description": "00.12.055, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5612.EG.055", "maps": [], @@ -587821,8 +553759,6 @@ }, "description": "00.12.056, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5612.EG.056", "maps": [], @@ -587855,8 +553791,6 @@ }, "description": "00.12.057, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5612.EG.057", "maps": [], @@ -587889,8 +553823,6 @@ }, "description": "00.12.058, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5612.EG.058", "maps": [], @@ -587923,8 +553855,6 @@ }, "description": "00.12.059, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5612.EG.059", "maps": [], @@ -587957,8 +553887,6 @@ }, "description": "00.12.060, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5612.EG.060", "maps": [], @@ -587991,8 +553919,6 @@ }, "description": "00.12.101, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5612.EG.101", "maps": [], @@ -588025,8 +553951,6 @@ }, "description": "00.12.102, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5612.EG.102", "maps": [], @@ -588059,8 +553983,6 @@ }, "description": "00.12.150, Terrasse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5612.EG.150", "maps": [], @@ -588093,8 +554015,6 @@ }, "description": "Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5612.EG.999", "maps": [], @@ -588127,8 +554047,6 @@ }, "description": "-1.12.011, Abstellraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5612.U1.011", "maps": [], @@ -588161,8 +554079,6 @@ }, "description": "-1.12.012, Heizung/L\u00fcftung/Sanit\u00e4r", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5612.U1.012", "maps": [], @@ -588195,8 +554111,6 @@ }, "description": "-1.12.013, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5612.U1.013", "maps": [], @@ -588229,8 +554143,6 @@ }, "description": "-1.12.014, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5612.U1.014", "maps": [], @@ -588263,8 +554175,6 @@ }, "description": "-1.12.015, Fernw\u00e4rme", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5612.U1.015", "maps": [], @@ -588297,8 +554207,6 @@ }, "description": "-1.12.016, Anschlussraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5612.U1.016", "maps": [], @@ -588331,8 +554239,6 @@ }, "description": "-1.12.017, Versorgungstunnel", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5612.U1.017", "maps": [], @@ -588365,8 +554271,6 @@ }, "description": "-1.12.018, Personenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5612.U1.018", "maps": [], @@ -588399,8 +554303,6 @@ }, "description": "-1.12.101, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5612.U1.101", "maps": [], @@ -588433,8 +554335,6 @@ }, "description": "01.13.001, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5613.01.001", "maps": [], @@ -588467,8 +554367,6 @@ }, "description": "01.13.007, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5613.01.007", "maps": [], @@ -588501,8 +554399,6 @@ }, "description": "01.13.008, Seminar", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5613.01.008", "maps": [], @@ -588535,8 +554431,6 @@ }, "description": "01.13.009A, Kopierraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5613.01.009A", "maps": [], @@ -588569,8 +554463,6 @@ }, "description": "01.13.009B, Besprechung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5613.01.009B", "maps": [], @@ -588603,8 +554495,6 @@ }, "description": "01.13.010, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5613.01.010", "maps": [], @@ -588637,8 +554527,6 @@ }, "description": "01.13.010A, Balkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5613.01.010A", "maps": [], @@ -588671,8 +554559,6 @@ }, "description": "01.13.011, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5613.01.011", "maps": [], @@ -588705,8 +554591,6 @@ }, "description": "01.13.012, Heizung/L\u00fcftung/Sanit\u00e4r", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5613.01.012", "maps": [], @@ -588739,8 +554623,6 @@ }, "description": "01.13.013, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5613.01.013", "maps": [], @@ -588773,8 +554655,6 @@ }, "description": "01.13.014, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5613.01.014", "maps": [], @@ -588807,8 +554687,6 @@ }, "description": "01.13.015, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5613.01.015", "maps": [], @@ -588841,8 +554719,6 @@ }, "description": "01.13.016A, Heizung/L\u00fcftung/Sanit\u00e4r", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5613.01.016A", "maps": [], @@ -588875,8 +554751,6 @@ }, "description": "01.13.016B, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5613.01.016B", "maps": [], @@ -588909,8 +554783,6 @@ }, "description": "01.13.017, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5613.01.017", "maps": [], @@ -588943,8 +554815,6 @@ }, "description": "01.13.030, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5613.01.030", "maps": [], @@ -588977,8 +554847,6 @@ }, "description": "01.13.031A, Elektrische Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5613.01.031A", "maps": [], @@ -589011,8 +554879,6 @@ }, "description": "01.13.031B, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5613.01.031B", "maps": [], @@ -589045,8 +554911,6 @@ }, "description": "01.13.032, WA", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5613.01.032", "maps": [], @@ -589079,8 +554943,6 @@ }, "description": "01.13.033A, Kopierraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5613.01.033A", "maps": [], @@ -589113,8 +554975,6 @@ }, "description": "01.13.033B, Lager B\u00fcromaterial", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5613.01.033B", "maps": [], @@ -589147,8 +555007,6 @@ }, "description": "01.13.034, Praktikumsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5613.01.034", "maps": [], @@ -589181,8 +555039,6 @@ }, "description": "01.13.035, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5613.01.035", "maps": [], @@ -589215,8 +555071,6 @@ }, "description": "01.13.039, Seminar", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5613.01.039", "maps": [], @@ -589249,8 +555103,6 @@ }, "description": "01.13.040, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5613.01.040", "maps": [], @@ -589283,8 +555135,6 @@ }, "description": "01.13.042, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5613.01.042", "maps": [], @@ -589317,8 +555167,6 @@ }, "description": "01.13.043, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5613.01.043", "maps": [], @@ -589351,8 +555199,6 @@ }, "description": "01.13.044, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5613.01.044", "maps": [], @@ -589385,8 +555231,6 @@ }, "description": "01.13.050, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5613.01.050", "maps": [], @@ -589419,8 +555263,6 @@ }, "description": "01.13.051, Aufenthalt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5613.01.051", "maps": [], @@ -589453,8 +555295,6 @@ }, "description": "01.13.052, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5613.01.052", "maps": [], @@ -589487,8 +555327,6 @@ }, "description": "01.13.053, Besprechung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5613.01.053", "maps": [], @@ -589521,8 +555359,6 @@ }, "description": "01.13.054, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5613.01.054", "maps": [], @@ -589555,8 +555391,6 @@ }, "description": "01.13.055, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5613.01.055", "maps": [], @@ -589589,8 +555423,6 @@ }, "description": "01.13.056, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5613.01.056", "maps": [], @@ -589623,8 +555455,6 @@ }, "description": "01.13.057, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5613.01.057", "maps": [], @@ -589657,8 +555487,6 @@ }, "description": "01.13.058, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5613.01.058", "maps": [], @@ -589691,8 +555519,6 @@ }, "description": "01.13.059, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5613.01.059", "maps": [], @@ -589725,8 +555551,6 @@ }, "description": "01.13.060, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5613.01.060", "maps": [], @@ -589759,8 +555583,6 @@ }, "description": "01.13.061, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5613.01.061", "maps": [], @@ -589793,8 +555615,6 @@ }, "description": "01.13.101, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5613.01.101", "maps": [], @@ -589827,8 +555647,6 @@ }, "description": "01.13.102, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5613.01.102", "maps": [], @@ -589861,8 +555679,6 @@ }, "description": "02.13.001, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5613.02.001", "maps": [], @@ -589895,8 +555711,6 @@ }, "description": "02.13.007, Praktikumsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5613.02.007", "maps": [], @@ -589929,8 +555743,6 @@ }, "description": "02.13.008, Praktikum (Inf.15/I16)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5613.02.008", "maps": [], @@ -589963,8 +555775,6 @@ }, "description": "02.13.009A, Kopierraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5613.02.009A", "maps": [], @@ -589997,8 +555807,6 @@ }, "description": "02.13.009B, Besprechung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5613.02.009B", "maps": [], @@ -590031,8 +555839,6 @@ }, "description": "02.13.010, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5613.02.010", "maps": [], @@ -590065,8 +555871,6 @@ }, "description": "02.13.010A, Balkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5613.02.010A", "maps": [], @@ -590099,8 +555903,6 @@ }, "description": "02.13.011, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5613.02.011", "maps": [], @@ -590133,8 +555935,6 @@ }, "description": "02.13.012, Heizung/L\u00fcftung/Sanit\u00e4r", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5613.02.012", "maps": [], @@ -590167,8 +555967,6 @@ }, "description": "02.13.013, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5613.02.013", "maps": [], @@ -590201,8 +555999,6 @@ }, "description": "02.13.014, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5613.02.014", "maps": [], @@ -590235,8 +556031,6 @@ }, "description": "02.13.015, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5613.02.015", "maps": [], @@ -590269,8 +556063,6 @@ }, "description": "02.13.016A, Heizung/L\u00fcftung/Sanit\u00e4r", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5613.02.016A", "maps": [], @@ -590303,8 +556095,6 @@ }, "description": "02.13.016B, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5613.02.016B", "maps": [], @@ -590337,8 +556127,6 @@ }, "description": "02.13.017, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5613.02.017", "maps": [], @@ -590371,8 +556159,6 @@ }, "description": "02.13.030, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5613.02.030", "maps": [], @@ -590405,8 +556191,6 @@ }, "description": "02.13.031A, Elektrische Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5613.02.031A", "maps": [], @@ -590439,8 +556223,6 @@ }, "description": "02.13.031B, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5613.02.031B", "maps": [], @@ -590473,8 +556255,6 @@ }, "description": "02.13.032, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5613.02.032", "maps": [], @@ -590507,8 +556287,6 @@ }, "description": "02.13.033A, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5613.02.033A", "maps": [], @@ -590541,8 +556319,6 @@ }, "description": "02.13.033B, Lager B\u00fcromaterial", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5613.02.033B", "maps": [], @@ -590575,8 +556351,6 @@ }, "description": "02.13.034, Kopierraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5613.02.034", "maps": [], @@ -590609,8 +556383,6 @@ }, "description": "02.13.035, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5613.02.035", "maps": [], @@ -590643,8 +556415,6 @@ }, "description": "02.13.036, Praktikumsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5613.02.036", "maps": [], @@ -590677,8 +556447,6 @@ }, "description": "02.13.037, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5613.02.037", "maps": [], @@ -590711,8 +556479,6 @@ }, "description": "02.13.039, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5613.02.039", "maps": [], @@ -590745,8 +556511,6 @@ }, "description": "02.13.040, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5613.02.040", "maps": [], @@ -590779,8 +556543,6 @@ }, "description": "02.13.041, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5613.02.041", "maps": [], @@ -590813,8 +556575,6 @@ }, "description": "02.13.042, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5613.02.042", "maps": [], @@ -590847,8 +556607,6 @@ }, "description": "02.13.043, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5613.02.043", "maps": [], @@ -590881,8 +556639,6 @@ }, "description": "02.13.044, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5613.02.044", "maps": [], @@ -590915,8 +556671,6 @@ }, "description": "02.13.050, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5613.02.050", "maps": [], @@ -590949,8 +556703,6 @@ }, "description": "02.13.051, Aufenthalt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5613.02.051", "maps": [], @@ -590983,8 +556735,6 @@ }, "description": "02.13.052, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5613.02.052", "maps": [], @@ -591017,8 +556767,6 @@ }, "description": "02.13.053, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5613.02.053", "maps": [], @@ -591051,8 +556799,6 @@ }, "description": "02.13.054, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5613.02.054", "maps": [], @@ -591085,8 +556831,6 @@ }, "description": "02.13.055, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5613.02.055", "maps": [], @@ -591119,8 +556863,6 @@ }, "description": "02.13.056, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5613.02.056", "maps": [], @@ -591153,8 +556895,6 @@ }, "description": "02.13.057, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5613.02.057", "maps": [], @@ -591187,8 +556927,6 @@ }, "description": "02.13.058, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5613.02.058", "maps": [], @@ -591221,8 +556959,6 @@ }, "description": "02.13.059, B\u00fcro Verwaltung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5613.02.059", "maps": [], @@ -591255,8 +556991,6 @@ }, "description": "02.13.060, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5613.02.060", "maps": [], @@ -591289,8 +557023,6 @@ }, "description": "02.13.061, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5613.02.061", "maps": [], @@ -591323,8 +557055,6 @@ }, "description": "02.13.101, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5613.02.101", "maps": [], @@ -591357,8 +557087,6 @@ }, "description": "02.13.102, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5613.02.102", "maps": [], @@ -591391,8 +557119,6 @@ }, "description": "03.13.001, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5613.03.001", "maps": [], @@ -591425,8 +557151,6 @@ }, "description": "03.13.007, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5613.03.007", "maps": [], @@ -591459,8 +557183,6 @@ }, "description": "03.13.008, Praktikumsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5613.03.008", "maps": [], @@ -591493,8 +557215,6 @@ }, "description": "03.13.009A, Kopierraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5613.03.009A", "maps": [], @@ -591527,8 +557247,6 @@ }, "description": "03.13.009B, Aufenthalt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5613.03.009B", "maps": [], @@ -591561,8 +557279,6 @@ }, "description": "03.13.010, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5613.03.010", "maps": [], @@ -591595,8 +557311,6 @@ }, "description": "03.13.010A, Balkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5613.03.010A", "maps": [], @@ -591629,8 +557343,6 @@ }, "description": "03.13.011, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5613.03.011", "maps": [], @@ -591663,8 +557375,6 @@ }, "description": "03.13.012, Heizung/L\u00fcftung/Sanit\u00e4r", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5613.03.012", "maps": [], @@ -591697,8 +557407,6 @@ }, "description": "03.13.013, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5613.03.013", "maps": [], @@ -591731,8 +557439,6 @@ }, "description": "03.13.014, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5613.03.014", "maps": [], @@ -591765,8 +557471,6 @@ }, "description": "03.13.015, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5613.03.015", "maps": [], @@ -591799,8 +557503,6 @@ }, "description": "03.13.016A, Heizung/L\u00fcftung/Sanit\u00e4r", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5613.03.016A", "maps": [], @@ -591833,8 +557535,6 @@ }, "description": "03.13.016B, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5613.03.016B", "maps": [], @@ -591867,8 +557567,6 @@ }, "description": "03.13.017, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5613.03.017", "maps": [], @@ -591901,8 +557599,6 @@ }, "description": "03.13.030, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5613.03.030", "maps": [], @@ -591935,8 +557631,6 @@ }, "description": "03.13.031A, Elektrische Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5613.03.031A", "maps": [], @@ -591969,8 +557663,6 @@ }, "description": "03.13.031B, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5613.03.031B", "maps": [], @@ -592003,8 +557695,6 @@ }, "description": "03.13.032, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5613.03.032", "maps": [], @@ -592037,8 +557727,6 @@ }, "description": "03.13.033A, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5613.03.033A", "maps": [], @@ -592071,8 +557759,6 @@ }, "description": "03.13.033B, Kopierraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5613.03.033B", "maps": [], @@ -592105,8 +557791,6 @@ }, "description": "03.13.034, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5613.03.034", "maps": [], @@ -592139,8 +557823,6 @@ }, "description": "03.13.035, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5613.03.035", "maps": [], @@ -592173,8 +557855,6 @@ }, "description": "03.13.036, \u00dcbung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5613.03.036", "maps": [], @@ -592207,8 +557887,6 @@ }, "description": "03.13.037, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5613.03.037", "maps": [], @@ -592241,8 +557919,6 @@ }, "description": "03.13.039, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5613.03.039", "maps": [], @@ -592275,8 +557951,6 @@ }, "description": "03.13.040, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5613.03.040", "maps": [], @@ -592309,8 +557983,6 @@ }, "description": "03.13.041, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5613.03.041", "maps": [], @@ -592343,8 +558015,6 @@ }, "description": "03.13.042, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5613.03.042", "maps": [], @@ -592377,8 +558047,6 @@ }, "description": "03.13.043, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5613.03.043", "maps": [], @@ -592411,8 +558079,6 @@ }, "description": "03.13.044, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5613.03.044", "maps": [], @@ -592445,8 +558111,6 @@ }, "description": "03.13.050, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5613.03.050", "maps": [], @@ -592479,8 +558143,6 @@ }, "description": "03.13.051, Aufenthalt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5613.03.051", "maps": [], @@ -592513,8 +558175,6 @@ }, "description": "03.13.052, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5613.03.052", "maps": [], @@ -592547,8 +558207,6 @@ }, "description": "03.13.053, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5613.03.053", "maps": [], @@ -592581,8 +558239,6 @@ }, "description": "03.13.054, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5613.03.054", "maps": [], @@ -592615,8 +558271,6 @@ }, "description": "03.13.055, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5613.03.055", "maps": [], @@ -592649,8 +558303,6 @@ }, "description": "03.13.056, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5613.03.056", "maps": [], @@ -592683,8 +558335,6 @@ }, "description": "03.13.057, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5613.03.057", "maps": [], @@ -592717,8 +558367,6 @@ }, "description": "03.13.058, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5613.03.058", "maps": [], @@ -592751,8 +558399,6 @@ }, "description": "03.13.059, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5613.03.059", "maps": [], @@ -592785,8 +558431,6 @@ }, "description": "03.13.060, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5613.03.060", "maps": [], @@ -592819,8 +558463,6 @@ }, "description": "03.13.061, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5613.03.061", "maps": [], @@ -592853,8 +558495,6 @@ }, "description": "03.13.101, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5613.03.101", "maps": [], @@ -592887,8 +558527,6 @@ }, "description": "03.13.102, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5613.03.102", "maps": [], @@ -592921,8 +558559,6 @@ }, "description": "04.13.018, Heizung/L\u00fcftung/Sanit\u00e4r", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5613.DG.018", "maps": [], @@ -592955,8 +558591,6 @@ }, "description": "04.13.019, Heizung/L\u00fcftung/Sanit\u00e4r", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5613.DG.019", "maps": [], @@ -592989,8 +558623,6 @@ }, "description": "00.13.001, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5613.EG.001", "maps": [], @@ -593023,8 +558655,6 @@ }, "description": "00.13.008, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5613.EG.008", "maps": [], @@ -593057,8 +558687,6 @@ }, "description": "00.13.009A, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5613.EG.009A", "maps": [], @@ -593091,8 +558719,6 @@ }, "description": "00.13.009B, Vorbereitungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5613.EG.009B", "maps": [], @@ -593125,8 +558751,6 @@ }, "description": "00.13.010, Praktikumsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5613.EG.010", "maps": [], @@ -593159,8 +558783,6 @@ }, "description": "00.13.010A, Terrasse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5613.EG.010A", "maps": [], @@ -593193,8 +558815,6 @@ }, "description": "00.13.010B, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5613.EG.010B", "maps": [], @@ -593227,8 +558847,6 @@ }, "description": "00.13.011, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5613.EG.011", "maps": [], @@ -593261,8 +558879,6 @@ }, "description": "00.13.012, Heizung/L\u00fcftung/Sanit\u00e4r", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5613.EG.012", "maps": [], @@ -593295,8 +558911,6 @@ }, "description": "00.13.013, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5613.EG.013", "maps": [], @@ -593329,8 +558943,6 @@ }, "description": "00.13.014, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5613.EG.014", "maps": [], @@ -593363,8 +558975,6 @@ }, "description": "00.13.015, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5613.EG.015", "maps": [], @@ -593397,8 +559007,6 @@ }, "description": "00.13.016A, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5613.EG.016A", "maps": [], @@ -593431,8 +559039,6 @@ }, "description": "00.13.016B, Heizg./Brauchw.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5613.EG.016B", "maps": [], @@ -593465,8 +559071,6 @@ }, "description": "00.13.017, Abstellraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5613.EG.017", "maps": [], @@ -593499,8 +559103,6 @@ }, "description": "00.13.030, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5613.EG.030", "maps": [], @@ -593533,8 +559135,6 @@ }, "description": "00.13.031A, Elektrische Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5613.EG.031A", "maps": [], @@ -593567,8 +559167,6 @@ }, "description": "00.13.031B, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5613.EG.031B", "maps": [], @@ -593601,8 +559199,6 @@ }, "description": "00.13.032, Teek\u00fcche Inf. 10, 9, 17", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5613.EG.032", "maps": [], @@ -593635,8 +559231,6 @@ }, "description": "00.13.033A, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5613.EG.033A", "maps": [], @@ -593669,8 +559263,6 @@ }, "description": "00.13.033B, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5613.EG.033B", "maps": [], @@ -593703,8 +559295,6 @@ }, "description": "00.13.034, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5613.EG.034", "maps": [], @@ -593737,8 +559327,6 @@ }, "description": "00.13.036, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5613.EG.036", "maps": [], @@ -593771,8 +559359,6 @@ }, "description": "00.13.037, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5613.EG.037", "maps": [], @@ -593805,8 +559391,6 @@ }, "description": "00.13.050, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5613.EG.050", "maps": [], @@ -593839,8 +559423,6 @@ }, "description": "00.13.052, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5613.EG.052", "maps": [], @@ -593873,8 +559455,6 @@ }, "description": "00.13.053, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5613.EG.053", "maps": [], @@ -593907,8 +559487,6 @@ }, "description": "00.13.054, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5613.EG.054", "maps": [], @@ -593941,8 +559519,6 @@ }, "description": "00.13.059, Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5613.EG.059", "maps": [], @@ -593975,8 +559551,6 @@ }, "description": "00.13.060, B\u00fcro Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5613.EG.060", "maps": [], @@ -594009,8 +559583,6 @@ }, "description": "00.13.061, Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5613.EG.061", "maps": [], @@ -594043,8 +559615,6 @@ }, "description": "00.13.062, Seminar", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5613.EG.062", "maps": [], @@ -594077,8 +559647,6 @@ }, "description": "00.13.063, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5613.EG.063", "maps": [], @@ -594111,8 +559679,6 @@ }, "description": "00.13.065, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5613.EG.065", "maps": [], @@ -594145,8 +559711,6 @@ }, "description": "00.13.066, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5613.EG.066", "maps": [], @@ -594179,8 +559743,6 @@ }, "description": "00.13.101, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5613.EG.101", "maps": [], @@ -594213,8 +559775,6 @@ }, "description": "00.13.101A, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5613.EG.101A", "maps": [], @@ -594247,8 +559807,6 @@ }, "description": "00.13.102, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5613.EG.102", "maps": [], @@ -594281,8 +559839,6 @@ }, "description": "?, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5613.EG.997", "maps": [], @@ -594315,8 +559871,6 @@ }, "description": "-1.13.001, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5613.U1.001", "maps": [], @@ -594349,8 +559903,6 @@ }, "description": "-1.13.002, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5613.U1.002", "maps": [], @@ -594383,8 +559935,6 @@ }, "description": "-1.13.012, Heizung/L\u00fcftung/Sanit\u00e4r", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5613.U1.012", "maps": [], @@ -594417,8 +559967,6 @@ }, "description": "-1.13.013, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5613.U1.013", "maps": [], @@ -594451,8 +559999,6 @@ }, "description": "-1.13.014, Elektrische Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5613.U1.014", "maps": [], @@ -594485,8 +560031,6 @@ }, "description": "-1.13.015, Heizung/L\u00fcftung/Sanit\u00e4r", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5613.U1.015", "maps": [], @@ -594519,8 +560063,6 @@ }, "description": "-1.13.101, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5613.U1.101", "maps": [], @@ -594556,8 +560098,6 @@ "de": "f\u00fcr e-Pr\u00fcfungen geeignet", "en": "suitable for e-exams" }, - "events_end": "2023-12-18", - "events_start": "2023-10-02", "floor": "01", "id": "5620.01.101", "maps": [ @@ -594644,8 +560184,6 @@ "de": "f\u00fcr e-Pr\u00fcfungen geeignet", "en": "suitable for e-exams" }, - "events_end": "2023-12-18", - "events_start": "2023-10-02", "floor": "01", "id": "5620.01.102", "maps": [ @@ -594729,8 +560267,6 @@ }, "description": "103, Wartungsschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5620.01.103", "maps": [], @@ -594763,8 +560299,6 @@ }, "description": "120, Treppe/Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5620.01.120", "maps": [], @@ -594797,8 +560331,6 @@ }, "description": "001, Foyer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5620.EG.001", "maps": [], @@ -594831,8 +560363,6 @@ }, "description": "002, Vorbereitung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5620.EG.002", "maps": [], @@ -594865,8 +560395,6 @@ }, "description": "003, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5620.EG.003", "maps": [], @@ -594899,8 +560427,6 @@ }, "description": "004, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5620.EG.004", "maps": [], @@ -594933,8 +560459,6 @@ }, "description": "005, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5620.EG.005", "maps": [], @@ -594967,8 +560491,6 @@ }, "description": "006, Beh.-WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5620.EG.006", "maps": [], @@ -595001,8 +560523,6 @@ }, "description": "007, K\u00e4ltemaschine", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5620.EG.007", "maps": [], @@ -595035,8 +560555,6 @@ }, "description": "008, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5620.EG.008", "maps": [], @@ -595069,8 +560587,6 @@ }, "description": "009, IT/Audio", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5620.EG.009", "maps": [], @@ -595103,8 +560619,6 @@ }, "description": "010, Hausanschluss", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5620.EG.010", "maps": [], @@ -595137,8 +560651,6 @@ }, "description": "011, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5620.EG.011", "maps": [], @@ -595171,8 +560683,6 @@ }, "description": "012, ELT-UV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5620.EG.012", "maps": [], @@ -595205,8 +560715,6 @@ }, "description": "013, SI-Bel.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5620.EG.013", "maps": [], @@ -595239,8 +560747,6 @@ }, "description": "020, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5620.EG.020", "maps": [], @@ -595273,8 +560779,6 @@ }, "description": "0001, Windfang/Ger\u00e4te", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5622.EG.001", "maps": [], @@ -595307,8 +560811,6 @@ }, "description": "0002, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5622.EG.002", "maps": [], @@ -595341,8 +560843,6 @@ }, "description": "0003, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5622.EG.003", "maps": [], @@ -595375,8 +560875,6 @@ }, "description": "0004, Vorraum Umkleide / WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5622.EG.004", "maps": [], @@ -595409,8 +560907,6 @@ }, "description": "0005, Vorraum / Dusche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5622.EG.005", "maps": [], @@ -595443,8 +560939,6 @@ }, "description": "0006, Dusche 6", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5622.EG.006", "maps": [], @@ -595477,8 +560971,6 @@ }, "description": "0007, Dusche 5", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5622.EG.007", "maps": [], @@ -595511,8 +561003,6 @@ }, "description": "0008, Dusche 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5622.EG.008", "maps": [], @@ -595545,8 +561035,6 @@ }, "description": "0009, Dusche 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5622.EG.009", "maps": [], @@ -595579,8 +561067,6 @@ }, "description": "0010, Dusche 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5622.EG.010", "maps": [], @@ -595613,8 +561099,6 @@ }, "description": "0011, Dusche 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5622.EG.011", "maps": [], @@ -595647,8 +561131,6 @@ }, "description": "0012, Umkleide 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5622.EG.012", "maps": [], @@ -595681,8 +561163,6 @@ }, "description": "0013, Umkleide 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5622.EG.013", "maps": [], @@ -595715,8 +561195,6 @@ }, "description": "0014, Umkleide 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5622.EG.014", "maps": [], @@ -595749,8 +561227,6 @@ }, "description": "0015, Umkleide 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5622.EG.015", "maps": [], @@ -595783,8 +561259,6 @@ }, "description": "0016, Umkleide 5/Zugang ELT UV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5622.EG.016", "maps": [], @@ -595817,8 +561291,6 @@ }, "description": "0091, \u00dcberdachter Containereingang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5622.EG.091", "maps": [], @@ -595851,8 +561323,6 @@ }, "description": "0092, Sportfl\u00e4chen Garching", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5622.EG.092", "maps": [], @@ -595885,8 +561355,6 @@ }, "description": "1.101, Wissenschaftlicher Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.001", "maps": [], @@ -595919,8 +561387,6 @@ }, "description": "1.102, Wissenschaftlicher Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.002", "maps": [], @@ -595953,8 +561419,6 @@ }, "description": "1.103, Wissenschaftlicher Mitarbeiter (gem.N. Biom", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.003", "maps": [], @@ -595987,8 +561451,6 @@ }, "description": "1.104, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.004", "maps": [], @@ -596021,8 +561483,6 @@ }, "description": "1.104A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.004A", "maps": [], @@ -596055,8 +561515,6 @@ }, "description": "1.104B, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.004B", "maps": [], @@ -596089,8 +561547,6 @@ }, "description": "1.105, Tresor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.005", "maps": [], @@ -596123,8 +561579,6 @@ }, "description": "1.106, Bibliothek", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.006", "maps": [], @@ -596157,8 +561611,6 @@ }, "description": "1.107, Wissenschaftlicher Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.007", "maps": [], @@ -596191,8 +561643,6 @@ }, "description": "1.108, Wissenschaftlicher Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.008", "maps": [], @@ -596225,8 +561675,6 @@ }, "description": "1.109, Wissenschaftlicher Mitarbeiter", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.009", "maps": [], @@ -596259,8 +561707,6 @@ }, "description": "1.110, Stud. / Wissenschaftl. Mitarbeiter (gem.N. ", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.010", "maps": [], @@ -596293,8 +561739,6 @@ }, "description": "1.111, CAD", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.011", "maps": [], @@ -596327,8 +561771,6 @@ }, "description": "1.111A, Dachtreppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.011A", "maps": [], @@ -596361,8 +561803,6 @@ }, "description": "1.112, Server", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.012", "maps": [], @@ -596395,8 +561835,6 @@ }, "description": "1.113, Oberassistent", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.013", "maps": [], @@ -596429,8 +561867,6 @@ }, "description": "1.114, Oberassistent", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.014", "maps": [], @@ -596463,8 +561899,6 @@ }, "description": "1.115, Prof.-B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.015", "maps": [], @@ -596497,8 +561931,6 @@ }, "description": "1.116, Oberassistent", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.016", "maps": [], @@ -596531,8 +561963,6 @@ }, "description": "1.117, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.017", "maps": [], @@ -596565,8 +561995,6 @@ }, "description": "1.118, Sekretariat (gem.N. Biomechanik)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.018", "maps": [], @@ -596599,8 +562027,6 @@ }, "description": "1.119, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.019", "maps": [], @@ -596633,8 +562059,6 @@ }, "description": "1.120, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.020", "maps": [], @@ -596667,8 +562091,6 @@ }, "description": "1.120A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.020A", "maps": [], @@ -596701,8 +562123,6 @@ }, "description": "1.120B, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.020B", "maps": [], @@ -596735,8 +562155,6 @@ }, "description": "1.121, Besprechung / Post", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.021", "maps": [], @@ -596769,8 +562187,6 @@ }, "description": "1.122, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.022", "maps": [], @@ -596803,8 +562219,6 @@ }, "description": "1.123, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.023", "maps": [], @@ -596837,8 +562251,6 @@ }, "description": "1.124, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.024", "maps": [], @@ -596871,8 +562283,6 @@ }, "description": "1.125, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.025", "maps": [], @@ -596905,8 +562315,6 @@ }, "description": "1.126, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.026", "maps": [], @@ -596939,8 +562347,6 @@ }, "description": "1.127, Dokumentation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.027", "maps": [], @@ -596973,8 +562379,6 @@ }, "description": "1.128, Dokumentation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.028", "maps": [], @@ -597007,8 +562411,6 @@ }, "description": "1.129, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.029", "maps": [], @@ -597041,8 +562443,6 @@ }, "description": "1.130, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.030", "maps": [], @@ -597075,8 +562475,6 @@ }, "description": "1.133, Terrasse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.033", "maps": [], @@ -597109,8 +562507,6 @@ }, "description": "1.151, Dachtreppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.051", "maps": [], @@ -597143,8 +562539,6 @@ }, "description": "1.160A, Fluchtbalkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.060A", "maps": [], @@ -597177,8 +562571,6 @@ }, "description": "1.160B, Fluchtbalkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.060B", "maps": [], @@ -597211,8 +562603,6 @@ }, "description": "1.180, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.080", "maps": [], @@ -597245,8 +562635,6 @@ }, "description": "1.181, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.081", "maps": [], @@ -597279,8 +562667,6 @@ }, "description": "1.182, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.082", "maps": [], @@ -597313,8 +562699,6 @@ }, "description": "1.201, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.201", "maps": [], @@ -597347,8 +562731,6 @@ }, "description": "1.202, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.202", "maps": [], @@ -597381,8 +562763,6 @@ }, "description": "1.203, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.203", "maps": [], @@ -597415,8 +562795,6 @@ }, "description": "1.204, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.204", "maps": [], @@ -597449,8 +562827,6 @@ }, "description": "1.205, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.205", "maps": [], @@ -597483,8 +562859,6 @@ }, "description": "1.206, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.206", "maps": [], @@ -597517,8 +562891,6 @@ }, "description": "1.207, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.207", "maps": [], @@ -597551,8 +562923,6 @@ }, "description": "1.208, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.208", "maps": [], @@ -597585,8 +562955,6 @@ }, "description": "1.210, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.210", "maps": [], @@ -597619,8 +562987,6 @@ }, "description": "1.211, Besprechung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.211", "maps": [], @@ -597653,8 +563019,6 @@ }, "description": "1.212, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.212", "maps": [], @@ -597687,8 +563051,6 @@ }, "description": "1.214, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.214", "maps": [], @@ -597721,8 +563083,6 @@ }, "description": "1.215, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.215", "maps": [], @@ -597755,8 +563115,6 @@ }, "description": "1.216, Wendeltreppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.216", "maps": [], @@ -597789,8 +563147,6 @@ }, "description": "1.217, Halle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.217", "maps": [], @@ -597823,8 +563179,6 @@ }, "description": "1.217A, \u00dcbergang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.217A", "maps": [], @@ -597857,8 +563211,6 @@ }, "description": "1.217B, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.217B", "maps": [], @@ -597891,8 +563243,6 @@ }, "description": "1.217C, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.217C", "maps": [], @@ -597925,8 +563275,6 @@ }, "description": "1.218, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.218", "maps": [], @@ -597959,8 +563307,6 @@ }, "description": "1.219, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.219", "maps": [], @@ -597993,8 +563339,6 @@ }, "description": "1.220, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.220", "maps": [], @@ -598027,8 +563371,6 @@ }, "description": "1.221, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.221", "maps": [], @@ -598061,8 +563403,6 @@ }, "description": "1.222, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.222", "maps": [], @@ -598095,8 +563435,6 @@ }, "description": "1.223, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.223", "maps": [], @@ -598129,8 +563467,6 @@ }, "description": "1.224, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.224", "maps": [], @@ -598163,8 +563499,6 @@ }, "description": "1.225, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.225", "maps": [], @@ -598197,8 +563531,6 @@ }, "description": "1.226, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.226", "maps": [], @@ -598231,8 +563563,6 @@ }, "description": "1.227, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.227", "maps": [], @@ -598265,8 +563595,6 @@ }, "description": "1.253, Wendeltreppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.253", "maps": [], @@ -598299,8 +563627,6 @@ }, "description": "1.260, Fluchtbalkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.260", "maps": [], @@ -598333,8 +563659,6 @@ }, "description": "1.261, Fluchtbalkon", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.261", "maps": [], @@ -598367,8 +563691,6 @@ }, "description": "1.280, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.280", "maps": [], @@ -598401,8 +563723,6 @@ }, "description": "1.281, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.281", "maps": [], @@ -598435,8 +563755,6 @@ }, "description": "1.282, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.282", "maps": [], @@ -598469,8 +563787,6 @@ }, "description": "1.283, Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5701.01.283", "maps": [], @@ -598503,8 +563819,6 @@ }, "description": "E.101, Halle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.001", "maps": [], @@ -598537,8 +563851,6 @@ }, "description": "Z.101A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.001A", "maps": [], @@ -598571,8 +563883,6 @@ }, "description": "Z.101B, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.001B", "maps": [], @@ -598605,8 +563915,6 @@ }, "description": "Z.101C, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.001C", "maps": [], @@ -598639,8 +563947,6 @@ }, "description": "Z.101, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.001Z", "maps": [], @@ -598673,8 +563979,6 @@ }, "description": "E.102, Halle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.002", "maps": [], @@ -598707,8 +564011,6 @@ }, "description": "E.102A, Lager unter Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.002A", "maps": [], @@ -598741,8 +564043,6 @@ }, "description": "E.102B, Lager unter Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.002B", "maps": [], @@ -598775,8 +564075,6 @@ }, "description": "Z.102, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.002Z", "maps": [], @@ -598809,8 +564107,6 @@ }, "description": "E.103, Technischer Experimentierraum 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.003", "maps": [], @@ -598843,8 +564139,6 @@ }, "description": "Z.103, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.003Z", "maps": [], @@ -598877,8 +564171,6 @@ }, "description": "E.104, Technischer Experimentierraum 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.004", "maps": [], @@ -598911,8 +564203,6 @@ }, "description": "E.104A, Steuerkonsole/MRT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.004A", "maps": [], @@ -598945,8 +564235,6 @@ }, "description": "E.104B, Kernspintomographie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.004B", "maps": [], @@ -598979,8 +564267,6 @@ }, "description": "E.104C, Steuerger\u00e4te", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.004C", "maps": [], @@ -599013,8 +564299,6 @@ }, "description": "E.104F, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.004F", "maps": [], @@ -599047,8 +564331,6 @@ }, "description": "Z.104, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.004Z", "maps": [], @@ -599081,8 +564363,6 @@ }, "description": "E.105, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.005", "maps": [], @@ -599115,8 +564395,6 @@ }, "description": "E.105A, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.005A", "maps": [], @@ -599149,8 +564427,6 @@ }, "description": "Z.105, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.005Z", "maps": [], @@ -599183,8 +564459,6 @@ }, "description": "E.106, Mechanische Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.006", "maps": [], @@ -599217,8 +564491,6 @@ }, "description": "E.106B, Steuerung CT", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.006B", "maps": [], @@ -599251,8 +564523,6 @@ }, "description": "Z.106, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.006Z", "maps": [], @@ -599285,8 +564555,6 @@ }, "description": "E.107, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.007", "maps": [], @@ -599319,8 +564587,6 @@ }, "description": "Z.107A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.007A", "maps": [], @@ -599353,8 +564619,6 @@ }, "description": "Z.107B, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.007B", "maps": [], @@ -599387,8 +564651,6 @@ }, "description": "Z.107, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.007Z", "maps": [], @@ -599421,8 +564683,6 @@ }, "description": "E.108, Rasterelektronenmikroskop", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.008", "maps": [], @@ -599455,8 +564715,6 @@ }, "description": "E.109, Montageraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.009", "maps": [], @@ -599489,8 +564747,6 @@ }, "description": "E.110, Teilk\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.010", "maps": [], @@ -599523,8 +564779,6 @@ }, "description": "E.111, Keramisches Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.011", "maps": [], @@ -599557,8 +564811,6 @@ }, "description": "E.112, Chemisches Labor N", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.012", "maps": [], @@ -599591,8 +564843,6 @@ }, "description": "E.113, Chemisches Labor A", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.013", "maps": [], @@ -599625,8 +564875,6 @@ }, "description": "E.114, Ultrastrukturanalyse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.014", "maps": [], @@ -599659,8 +564907,6 @@ }, "description": "E.114A, Ultrastrukturanalyse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.014A", "maps": [], @@ -599693,8 +564939,6 @@ }, "description": "E.115, Probenvorbereitung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.015", "maps": [], @@ -599727,8 +564971,6 @@ }, "description": "E.116, Tierhaltung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.016", "maps": [], @@ -599761,8 +565003,6 @@ }, "description": "E.117, Organolabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.017", "maps": [], @@ -599795,8 +565035,6 @@ }, "description": "E.118, Zytolabor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.018", "maps": [], @@ -599829,8 +565067,6 @@ }, "description": "E.119, Schleuse (gem.N. Biomechanik)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.019", "maps": [], @@ -599863,8 +565099,6 @@ }, "description": "E.120, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.020", "maps": [], @@ -599897,8 +565131,6 @@ }, "description": "E.121, Schleuse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.021", "maps": [], @@ -599931,8 +565163,6 @@ }, "description": "E.122, Vorraum K\u00fchlraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.022", "maps": [], @@ -599965,8 +565195,6 @@ }, "description": "E.123, K\u00fchlraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.023", "maps": [], @@ -599999,8 +565227,6 @@ }, "description": "E.124, Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.024", "maps": [], @@ -600033,8 +565259,6 @@ }, "description": "E.125, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.025", "maps": [], @@ -600067,8 +565291,6 @@ }, "description": "E.126, H\u00f6rsaal IMETUM", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.026", "maps": [], @@ -600110,8 +565332,6 @@ }, "description": "E.127, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.027", "maps": [], @@ -600144,8 +565364,6 @@ }, "description": "E.128, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.028", "maps": [], @@ -600178,8 +565396,6 @@ }, "description": "E.129, Umkleide-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.029", "maps": [], @@ -600212,8 +565428,6 @@ }, "description": "E.130, Umkleide-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.030", "maps": [], @@ -600246,8 +565460,6 @@ }, "description": "E.131, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.031", "maps": [], @@ -600280,8 +565492,6 @@ }, "description": "E.132, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.032", "maps": [], @@ -600314,8 +565524,6 @@ }, "description": "E.133, Beh.-WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.033", "maps": [], @@ -600348,8 +565556,6 @@ }, "description": "E.134, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.034", "maps": [], @@ -600382,8 +565588,6 @@ }, "description": "E.135, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.035", "maps": [], @@ -600416,8 +565620,6 @@ }, "description": "E.150, Treppe 1a", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.050", "maps": [], @@ -600450,8 +565652,6 @@ }, "description": "E.150A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.050A", "maps": [], @@ -600484,8 +565684,6 @@ }, "description": "E.151, Treppe 1b", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.051", "maps": [], @@ -600518,8 +565716,6 @@ }, "description": "E.152, Treppe 4a", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.052", "maps": [], @@ -600552,8 +565748,6 @@ }, "description": "E.153, Treppe 4b", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.053", "maps": [], @@ -600586,8 +565780,6 @@ }, "description": "E.155, Treppe 3a", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.055", "maps": [], @@ -600620,8 +565812,6 @@ }, "description": "E.156, Treppe 3b", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.056", "maps": [], @@ -600654,8 +565844,6 @@ }, "description": "Z.170, Install. Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.070", "maps": [], @@ -600688,8 +565876,6 @@ }, "description": "E.190, Eingangshalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.190", "maps": [], @@ -600722,8 +565908,6 @@ }, "description": "E.190A, Treppe Eingangshalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.190A", "maps": [], @@ -600756,8 +565940,6 @@ }, "description": "E.191, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.191", "maps": [], @@ -600790,8 +565972,6 @@ }, "description": "E.192, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.192", "maps": [], @@ -600824,8 +566004,6 @@ }, "description": "E.201, Rasterelektronenmikroskop", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.201", "maps": [], @@ -600858,8 +566036,6 @@ }, "description": "E.201A, Pr\u00fcfraum f\u00fcr Werk", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.201A", "maps": [], @@ -600892,8 +566068,6 @@ }, "description": "E.201B, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.201B", "maps": [], @@ -600926,8 +566100,6 @@ }, "description": "E.201C, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.201C", "maps": [], @@ -600960,8 +566132,6 @@ }, "description": "E.202, Vorraum (gem.N. Biomechanik)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.202", "maps": [], @@ -600994,8 +566164,6 @@ }, "description": "E.202A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.202A", "maps": [], @@ -601028,8 +566196,6 @@ }, "description": "E.202B, Mikrobiologie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.202B", "maps": [], @@ -601062,8 +566228,6 @@ }, "description": "E.202C, Sp\u00fclk\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.202C", "maps": [], @@ -601096,8 +566260,6 @@ }, "description": "E.202D, Zellkultur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.202D", "maps": [], @@ -601130,8 +566292,6 @@ }, "description": "E.203A, Vorraum Labor (gem.N. Biomechanik)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.203A", "maps": [], @@ -601164,8 +566324,6 @@ }, "description": "E.203B, Labor (gem.N. Biomechanik)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.203B", "maps": [], @@ -601198,8 +566356,6 @@ }, "description": "E.203C, Labor (gem.N. Biomechanik)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.203C", "maps": [], @@ -601232,8 +566388,6 @@ }, "description": "E.203D, Labor (gem.N. Biomechanik)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.203D", "maps": [], @@ -601266,8 +566420,6 @@ }, "description": "E.204, Versuchshalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.204", "maps": [], @@ -601300,8 +566452,6 @@ }, "description": "E.204A, Bestrahlung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.204A", "maps": [], @@ -601334,8 +566484,6 @@ }, "description": "E.204C, K\u00fchlung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.204C", "maps": [], @@ -601368,8 +566516,6 @@ }, "description": "E.204E, Steuerraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.204E", "maps": [], @@ -601402,8 +566548,6 @@ }, "description": "E.205, Server / Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.205", "maps": [], @@ -601436,8 +566580,6 @@ }, "description": "E.206, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.206", "maps": [], @@ -601470,8 +566612,6 @@ }, "description": "E.207, Dusche / Umkleide", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.207", "maps": [], @@ -601504,8 +566644,6 @@ }, "description": "E.208, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.208", "maps": [], @@ -601538,8 +566676,6 @@ }, "description": "E.209, Aufenthalt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.209", "maps": [], @@ -601572,8 +566708,6 @@ }, "description": "E.210, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.210", "maps": [], @@ -601606,8 +566740,6 @@ }, "description": "E.211, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.211", "maps": [], @@ -601640,8 +566772,6 @@ }, "description": "E.212, Dusche / Umkleide", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.212", "maps": [], @@ -601674,8 +566804,6 @@ }, "description": "E.213, UV", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.213", "maps": [], @@ -601708,8 +566836,6 @@ }, "description": "E.214, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.214", "maps": [], @@ -601742,8 +566868,6 @@ }, "description": "E.215, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.215", "maps": [], @@ -601776,8 +566900,6 @@ }, "description": "E.216, Halle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.216", "maps": [], @@ -601810,8 +566932,6 @@ }, "description": "E.216A, Lager / Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.216A", "maps": [], @@ -601844,8 +566964,6 @@ }, "description": "E.217, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.217", "maps": [], @@ -601878,8 +566996,6 @@ }, "description": "Z.251A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.251A", "maps": [], @@ -601912,8 +567028,6 @@ }, "description": "Z.251B, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.251B", "maps": [], @@ -601946,8 +567060,6 @@ }, "description": "Z.251, Galerie / Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.251Z", "maps": [], @@ -601980,8 +567092,6 @@ }, "description": "Z.252A, Install. Schacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.252A", "maps": [], @@ -602014,8 +567124,6 @@ }, "description": "Z.252B, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.252B", "maps": [], @@ -602048,8 +567156,6 @@ }, "description": "Z.252, Galerie / Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.252Z", "maps": [], @@ -602082,8 +567188,6 @@ }, "description": "E.291, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.291", "maps": [], @@ -602116,8 +567220,6 @@ }, "description": "E.292, Treppe im Freien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5701.EG.292", "maps": [], @@ -602150,8 +567252,6 @@ }, "description": "K.101, Heizungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5701.U1.001", "maps": [], @@ -602184,8 +567284,6 @@ }, "description": "K.102, Flur 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5701.U1.002", "maps": [], @@ -602218,8 +567316,6 @@ }, "description": "K.103, Trafo 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5701.U1.003", "maps": [], @@ -602252,8 +567348,6 @@ }, "description": "K.104, Trafo 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5701.U1.004", "maps": [], @@ -602286,8 +567380,6 @@ }, "description": "K.107, Elektrische Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5701.U1.007", "maps": [], @@ -602320,8 +567412,6 @@ }, "description": "K.108, Flur 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5701.U1.008", "maps": [], @@ -602354,8 +567444,6 @@ }, "description": "K.109, Datenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5701.U1.009", "maps": [], @@ -602388,8 +567476,6 @@ }, "description": "K.110, Flur 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5701.U1.010", "maps": [], @@ -602422,8 +567508,6 @@ }, "description": "K.111, Aufzugs- und F\u00f6rdermaschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5701.U1.011", "maps": [], @@ -602456,8 +567540,6 @@ }, "description": "K.151, Treppe 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5701.U1.051", "maps": [], @@ -602490,8 +567572,6 @@ }, "description": "K.201, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5701.U1.201", "maps": [], @@ -602524,8 +567604,6 @@ }, "description": "K.201A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5701.U1.201A", "maps": [], @@ -602558,8 +567636,6 @@ }, "description": "K.202, Heizungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5701.U1.202", "maps": [], @@ -602592,8 +567668,6 @@ }, "description": "K.202A, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5701.U1.202A", "maps": [], @@ -602626,8 +567700,6 @@ }, "description": "K.203, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5701.U1.203", "maps": [], @@ -602660,8 +567732,6 @@ }, "description": "K.203A, Lager mit Holzverschlag", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5701.U1.203A", "maps": [], @@ -602694,8 +567764,6 @@ }, "description": "K.204, Niederspannungshauptverteilung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5701.U1.204", "maps": [], @@ -602728,8 +567796,6 @@ }, "description": "K.205, Niederspannungshauptverteilung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5701.U1.205", "maps": [], @@ -602762,8 +567828,6 @@ }, "description": "K.206, Batterieraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5701.U1.206", "maps": [], @@ -602796,8 +567860,6 @@ }, "description": "K.280, Lichtschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5701.U1.280", "maps": [], @@ -602830,8 +567892,6 @@ }, "description": "K.281, Lichtschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5701.U1.281", "maps": [], @@ -602864,8 +567924,6 @@ }, "description": "01.5901.001A, Treppe Foyer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5901.01.001A", "maps": [], @@ -602898,8 +567956,6 @@ }, "description": "01.5901.003, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5901.01.003", "maps": [], @@ -602932,8 +567988,6 @@ }, "description": "01.5901.004, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5901.01.004", "maps": [], @@ -602966,8 +568020,6 @@ }, "description": "01.5901.005, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5901.01.005", "maps": [], @@ -603000,8 +568052,6 @@ }, "description": "01.5901.006, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5901.01.006", "maps": [], @@ -603034,8 +568084,6 @@ }, "description": "01.5901.007, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5901.01.007", "maps": [], @@ -603068,8 +568116,6 @@ }, "description": "01.5901.008, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5901.01.008", "maps": [], @@ -603102,8 +568148,6 @@ }, "description": "01.5901.009, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5901.01.009", "maps": [], @@ -603136,8 +568180,6 @@ }, "description": "01.5901.010, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5901.01.010", "maps": [], @@ -603170,8 +568212,6 @@ }, "description": "01.5901.011, Lager WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5901.01.011", "maps": [], @@ -603204,8 +568244,6 @@ }, "description": "01.5901.012A, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5901.01.012A", "maps": [], @@ -603238,8 +568276,6 @@ }, "description": "01.5901.012B, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5901.01.012B", "maps": [], @@ -603272,8 +568308,6 @@ }, "description": "01.5901.013, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5901.01.013", "maps": [], @@ -603306,8 +568340,6 @@ }, "description": "01.5901.022A, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5901.01.022A", "maps": [], @@ -603340,8 +568372,6 @@ }, "description": "01.5901.022B, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5901.01.022B", "maps": [], @@ -603374,8 +568404,6 @@ }, "description": "01.5901.023, WC Behinderten", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5901.01.023", "maps": [], @@ -603408,8 +568436,6 @@ }, "description": "01.5901.024, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5901.01.024", "maps": [], @@ -603442,8 +568468,6 @@ }, "description": "01.5901.057, RLT-Zentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5901.01.057", "maps": [], @@ -603476,8 +568500,6 @@ }, "description": "01.5901.058, Terrasse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5901.01.058", "maps": [], @@ -603510,8 +568532,6 @@ }, "description": "01.5901.401, Treppenhaus A", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5901.01.401", "maps": [], @@ -603544,8 +568564,6 @@ }, "description": "01.5901.402, Treppenhaus B", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5901.01.402", "maps": [], @@ -603578,8 +568596,6 @@ }, "description": "01.5901.403, Treppenhaus C", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5901.01.403", "maps": [], @@ -603612,8 +568628,6 @@ }, "description": "01.5901.501, Lastenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5901.01.501", "maps": [], @@ -603646,8 +568660,6 @@ }, "description": "01.5901.502, Lastenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "5901.01.502", "maps": [], @@ -603680,8 +568692,6 @@ }, "description": "02.5901.003, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5901.02.003", "maps": [], @@ -603714,8 +568724,6 @@ }, "description": "02.5901.004, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5901.02.004", "maps": [], @@ -603748,8 +568756,6 @@ }, "description": "02.5901.005, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5901.02.005", "maps": [], @@ -603782,8 +568788,6 @@ }, "description": "02.5901.006, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5901.02.006", "maps": [], @@ -603816,8 +568820,6 @@ }, "description": "02.5901.007, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5901.02.007", "maps": [], @@ -603850,8 +568852,6 @@ }, "description": "02.5901.008, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5901.02.008", "maps": [], @@ -603884,8 +568884,6 @@ }, "description": "02.5901.009, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5901.02.009", "maps": [], @@ -603918,8 +568916,6 @@ }, "description": "02.5901.010, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5901.02.010", "maps": [], @@ -603952,8 +568948,6 @@ }, "description": "02.5901.011, LagerWC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5901.02.011", "maps": [], @@ -603986,8 +568980,6 @@ }, "description": "02.5901.012A, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5901.02.012A", "maps": [], @@ -604020,8 +569012,6 @@ }, "description": "02.5901.012B, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5901.02.012B", "maps": [], @@ -604054,8 +569044,6 @@ }, "description": "02.5901.013, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5901.02.013", "maps": [], @@ -604088,8 +569076,6 @@ }, "description": "02.5901.021, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5901.02.021", "maps": [], @@ -604122,8 +569108,6 @@ }, "description": "02.5901.022, AP mit Verpflegung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5901.02.022", "maps": [], @@ -604156,8 +569140,6 @@ }, "description": "02.5901.023A, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5901.02.023A", "maps": [], @@ -604190,8 +569172,6 @@ }, "description": "02.5901.023B, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5901.02.023B", "maps": [], @@ -604224,8 +569204,6 @@ }, "description": "02.5901.024, WC Behinderten", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5901.02.024", "maps": [], @@ -604258,8 +569236,6 @@ }, "description": "02.5901.025, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5901.02.025", "maps": [], @@ -604292,8 +569268,6 @@ }, "description": "02.5901.074, Dachfl\u00e4che", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5901.02.074", "maps": [], @@ -604326,8 +569300,6 @@ }, "description": "02.5901.401, Treppenhaus A", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5901.02.401", "maps": [], @@ -604360,8 +569332,6 @@ }, "description": "02.5901.402, Treppenhaus B", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5901.02.402", "maps": [], @@ -604394,8 +569364,6 @@ }, "description": "02.5901.403, Treppenhaus C", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5901.02.403", "maps": [], @@ -604428,8 +569396,6 @@ }, "description": "02.5901.501, Lastenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5901.02.501", "maps": [], @@ -604462,8 +569428,6 @@ }, "description": "02.5901.502, Personenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "5901.02.502", "maps": [], @@ -604496,8 +569460,6 @@ }, "description": "03.5901.003, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5901.03.003", "maps": [], @@ -604530,8 +569492,6 @@ }, "description": "03.5901.004, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5901.03.004", "maps": [], @@ -604564,8 +569524,6 @@ }, "description": "03.5901.005, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5901.03.005", "maps": [], @@ -604598,8 +569556,6 @@ }, "description": "03.5901.006, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5901.03.006", "maps": [], @@ -604632,8 +569588,6 @@ }, "description": "03.5901.007, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5901.03.007", "maps": [], @@ -604666,8 +569620,6 @@ }, "description": "03.5901.008, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5901.03.008", "maps": [], @@ -604700,8 +569652,6 @@ }, "description": "03.5901.009, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5901.03.009", "maps": [], @@ -604734,8 +569684,6 @@ }, "description": "03.5901.010, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5901.03.010", "maps": [], @@ -604768,8 +569716,6 @@ }, "description": "03.5901.011, Lager WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5901.03.011", "maps": [], @@ -604802,8 +569748,6 @@ }, "description": "03.5901.012A, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5901.03.012A", "maps": [], @@ -604836,8 +569780,6 @@ }, "description": "03.5901.012B, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5901.03.012B", "maps": [], @@ -604870,8 +569812,6 @@ }, "description": "03.5901.013, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5901.03.013", "maps": [], @@ -604904,8 +569844,6 @@ }, "description": "03.5901.021, AP mit Verpflegung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5901.03.021", "maps": [], @@ -604938,8 +569876,6 @@ }, "description": "03.5901.022, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5901.03.022", "maps": [], @@ -604972,8 +569908,6 @@ }, "description": "03.5901.023A, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5901.03.023A", "maps": [], @@ -605006,8 +569940,6 @@ }, "description": "03.5901.023B, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5901.03.023B", "maps": [], @@ -605040,8 +569972,6 @@ }, "description": "03.5901.024, WC Behinderten", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5901.03.024", "maps": [], @@ -605074,8 +570004,6 @@ }, "description": "03.5901.401, Treppenhaus A", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5901.03.401", "maps": [], @@ -605108,8 +570036,6 @@ }, "description": "03.5901.402, Treppenhaus B", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5901.03.402", "maps": [], @@ -605142,8 +570068,6 @@ }, "description": "03.5901.403, Treppenhaus C", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5901.03.403", "maps": [], @@ -605176,8 +570100,6 @@ }, "description": "03.5901.404, Lager/Treppenaufstieg Dach", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5901.03.404", "maps": [], @@ -605210,8 +570132,6 @@ }, "description": "03.5901.501, Lastenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5901.03.501", "maps": [], @@ -605244,8 +570164,6 @@ }, "description": "03.5901.005, Personenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "5901.03.502", "maps": [], @@ -605278,8 +570196,6 @@ }, "description": "05.5901.001, Dachfl\u00e4che", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "5901.05.001", "maps": [], @@ -605312,8 +570228,6 @@ }, "description": "04.5901.001, Aufzug Maschinenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5901.DG.001", "maps": [], @@ -605346,8 +570260,6 @@ }, "description": "04.5901.002, R\u00fcckk\u00fchler", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5901.DG.002", "maps": [], @@ -605380,8 +570292,6 @@ }, "description": "04.5901.003, Dachfl\u00e4che", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5901.DG.003", "maps": [], @@ -605414,8 +570324,6 @@ }, "description": "04.5901.004, PV-Anlage 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5901.DG.004", "maps": [], @@ -605448,8 +570356,6 @@ }, "description": "04.5901.005, PV-Anlage 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5901.DG.005", "maps": [], @@ -605482,8 +570388,6 @@ }, "description": "04.5901.006, Leitungen Fortluft", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5901.DG.006", "maps": [], @@ -605516,8 +570420,6 @@ }, "description": "04.5901.007, Glasdach", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5901.DG.007", "maps": [], @@ -605550,8 +570452,6 @@ }, "description": "04.5901.404, Treppenhaus D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5901.DG.404", "maps": [], @@ -605584,8 +570484,6 @@ }, "description": "04.5901.505, Leitungen Fortluft", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "5901.DG.505", "maps": [], @@ -605618,8 +570516,6 @@ }, "description": "00.5901.001, Foyer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5901.EG.001", "maps": [], @@ -605652,8 +570548,6 @@ }, "description": "00.5901.001C, Foyer - Windfang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5901.EG.001C", "maps": [], @@ -605686,8 +570580,6 @@ }, "description": "00.5901.001D, Foyer - Windfang", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5901.EG.001D", "maps": [], @@ -605720,8 +570612,6 @@ }, "description": "00.5901.002, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5901.EG.002", "maps": [], @@ -605754,8 +570644,6 @@ }, "description": "00.5901.003, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5901.EG.003", "maps": [], @@ -605788,8 +570676,6 @@ }, "description": "00.5901.004, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5901.EG.004", "maps": [], @@ -605822,8 +570708,6 @@ }, "description": "00.5901.005A, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5901.EG.005A", "maps": [], @@ -605856,8 +570740,6 @@ }, "description": "00.5901.005B, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5901.EG.005B", "maps": [], @@ -605890,8 +570772,6 @@ }, "description": "00.5901.005C, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5901.EG.005C", "maps": [], @@ -605924,8 +570804,6 @@ }, "description": "00.5901.006, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5901.EG.006", "maps": [], @@ -605958,8 +570836,6 @@ }, "description": "00.5901.007, Grauflur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5901.EG.007", "maps": [], @@ -605992,8 +570868,6 @@ }, "description": "00.5901.008, Grauflur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5901.EG.008", "maps": [], @@ -606026,8 +570900,6 @@ }, "description": "00.5901.014, Reinraumflur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5901.EG.014", "maps": [], @@ -606060,8 +570932,6 @@ }, "description": "00.5901.015, Studentische Lehrr\u00e4ume", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5901.EG.015", "maps": [], @@ -606094,8 +570964,6 @@ }, "description": "00.5901.016, Studentische Lehrr\u00e4ume", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5901.EG.016", "maps": [], @@ -606128,8 +570996,6 @@ }, "description": "00.5901.018, Studentische Lehrr\u00e4ume", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5901.EG.018", "maps": [], @@ -606162,8 +571028,6 @@ }, "description": "00.5901.019, Studentische Lehrr\u00e4ume", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5901.EG.019", "maps": [], @@ -606196,8 +571060,6 @@ }, "description": "00.5901.020, Automaten", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5901.EG.020", "maps": [], @@ -606230,8 +571092,6 @@ }, "description": "00.5901.025, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5901.EG.025", "maps": [], @@ -606264,8 +571124,6 @@ }, "description": "00.5901.032, WC-Barrierefrei / Wickeltisch", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5901.EG.032", "maps": [], @@ -606298,8 +571156,6 @@ }, "description": "00.5901.033A, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5901.EG.033A", "maps": [], @@ -606332,8 +571188,6 @@ }, "description": "00.5901.033B, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5901.EG.033B", "maps": [], @@ -606366,8 +571220,6 @@ }, "description": "00.5901.034A, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5901.EG.034A", "maps": [], @@ -606400,8 +571252,6 @@ }, "description": "00.5901.034B, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5901.EG.034B", "maps": [], @@ -606434,8 +571284,6 @@ }, "description": "00.5901.050, Hausverw./Geb\u00e4udebetrieb", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5901.EG.050", "maps": [], @@ -606468,8 +571316,6 @@ }, "description": "00.5901.051, H\u00f6rsaal", "eexam": null, - "events_end": "2023-12-18", - "events_start": "2023-10-02", "floor": "EG", "id": "5901.EG.051", "maps": [ @@ -606550,8 +571396,6 @@ }, "description": "00.5901.051A, Treppe H\u00f6rsaal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5901.EG.051A", "maps": [], @@ -606584,8 +571428,6 @@ }, "description": "00.5901.052, Charakt.-lab/FIB, SEM, TEM", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5901.EG.052", "maps": [], @@ -606618,8 +571460,6 @@ }, "description": "00.5901.053, Personalschleuse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5901.EG.053", "maps": [], @@ -606652,8 +571492,6 @@ }, "description": "00.5901.054, Installationsraum /R\u00fcck. 9", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5901.EG.054", "maps": [], @@ -606686,8 +571524,6 @@ }, "description": "00.5901.055, Materialschleuse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5901.EG.055", "maps": [], @@ -606720,8 +571556,6 @@ }, "description": "00.5901.056, Installationsraum /R\u00fcck. 7", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5901.EG.056", "maps": [], @@ -606754,8 +571588,6 @@ }, "description": "00.5901.057, Installationsraum /R\u00fcck. 10", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5901.EG.057", "maps": [], @@ -606788,8 +571620,6 @@ }, "description": "00.5901.060, Installationsraum /R\u00fcck. 6", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5901.EG.060", "maps": [], @@ -606822,8 +571652,6 @@ }, "description": "00.5901.062, Charakt.-lab/AFM, MFM", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5901.EG.062", "maps": [], @@ -606856,8 +571684,6 @@ }, "description": "00.5901.401, Treppenhaus A", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5901.EG.401", "maps": [], @@ -606890,8 +571716,6 @@ }, "description": "00.5901.402, Treppenhaus B", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5901.EG.402", "maps": [], @@ -606924,8 +571748,6 @@ }, "description": "00.5901.403, Treppenhaus C", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5901.EG.403", "maps": [], @@ -606958,8 +571780,6 @@ }, "description": "00.5901.501, Lastenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5901.EG.501", "maps": [], @@ -606992,8 +571812,6 @@ }, "description": "00.5901.502, Personenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5901.EG.502", "maps": [], @@ -607026,8 +571844,6 @@ }, "description": "-1.5901.001, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5901.U1.001", "maps": [], @@ -607060,8 +571876,6 @@ }, "description": "-1.5901.002, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5901.U1.002", "maps": [], @@ -607094,8 +571908,6 @@ }, "description": "-1.5901.003, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5901.U1.003", "maps": [], @@ -607128,8 +571940,6 @@ }, "description": "-1.5901.004, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5901.U1.004", "maps": [], @@ -607162,8 +571972,6 @@ }, "description": "-1.5901.005, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5901.U1.005", "maps": [], @@ -607196,8 +572004,6 @@ }, "description": "-1.5901.006, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5901.U1.006", "maps": [], @@ -607230,8 +572036,6 @@ }, "description": "-1.5901.007, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5901.U1.007", "maps": [], @@ -607264,8 +572068,6 @@ }, "description": "-1.5901.008, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5901.U1.008", "maps": [], @@ -607298,8 +572100,6 @@ }, "description": "-1.5901.009, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5901.U1.009", "maps": [], @@ -607332,8 +572132,6 @@ }, "description": "-1.5901.010, Brunnenwasser", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5901.U1.010", "maps": [], @@ -607366,8 +572164,6 @@ }, "description": "-1.5901.011, Druckluftzentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5901.U1.011", "maps": [], @@ -607400,8 +572196,6 @@ }, "description": "-1.5901.012, RLT-Zentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5901.U1.012", "maps": [], @@ -607434,8 +572228,6 @@ }, "description": "-1.5901.014, Lager Techn. Betrieb", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5901.U1.014", "maps": [], @@ -607468,8 +572260,6 @@ }, "description": "-1.5901.018, Wasseraufbereitung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5901.U1.018", "maps": [], @@ -607502,8 +572292,6 @@ }, "description": "-1.5901.027, BMA", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5901.U1.027", "maps": [], @@ -607536,8 +572324,6 @@ }, "description": "-1.5901.028, BOS", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5901.U1.028", "maps": [], @@ -607570,8 +572356,6 @@ }, "description": "-1.5901.029, LRZ LWL Knoten / FM", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5901.U1.029", "maps": [], @@ -607604,8 +572388,6 @@ }, "description": "-1.5901.034, Medienkanal 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5901.U1.034", "maps": [], @@ -607638,8 +572420,6 @@ }, "description": "-1.5901.035, Medienkanal 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5901.U1.035", "maps": [], @@ -607672,8 +572452,6 @@ }, "description": "-1.5901.045, HAR TW / BW, TVV-Zentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5901.U1.045", "maps": [], @@ -607706,8 +572484,6 @@ }, "description": "-1.5901.047, K\u00e4ltezentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5901.U1.047", "maps": [], @@ -607740,8 +572516,6 @@ }, "description": "-1.5901.048, Heizraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5901.U1.048", "maps": [], @@ -607774,8 +572548,6 @@ }, "description": "-1.5901.049, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5901.U1.049", "maps": [], @@ -607808,8 +572580,6 @@ }, "description": "-1.5901.050, RLT-Zentrale", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5901.U1.050", "maps": [], @@ -607842,8 +572612,6 @@ }, "description": "-1.5901.053, Medienkanal Labor", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5901.U1.053", "maps": [], @@ -607876,8 +572644,6 @@ }, "description": "-1.5901.401, Treppenhaus A", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5901.U1.401", "maps": [], @@ -607910,8 +572676,6 @@ }, "description": "-1.5901.402, Treppenhaus B", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5901.U1.402", "maps": [], @@ -607944,8 +572708,6 @@ }, "description": "-1.5901.403, Treppenhaus C", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5901.U1.403", "maps": [], @@ -607978,8 +572740,6 @@ }, "description": "-1.5901.501, Lastenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5901.U1.501", "maps": [], @@ -608012,8 +572772,6 @@ }, "description": "-1.5901.502, Personenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "5901.U1.502", "maps": [], @@ -608046,8 +572804,6 @@ }, "description": "0.001, Tentomax HS3 Garching EI", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5998.EG.001", "maps": [ @@ -608115,8 +572871,6 @@ }, "description": "0.002, Tentomax HS4 Garching EI", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5998.EG.002", "maps": [ @@ -608184,8 +572938,6 @@ }, "description": "0.003, Tentomax HS5 Garching EI", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5998.EG.003", "maps": [ @@ -608253,8 +573005,6 @@ }, "description": "0.004, Tentomax Technik Garching EI", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "5998.EG.004", "maps": [], @@ -608287,8 +573037,6 @@ }, "description": "1102, Flur/Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "6101.01.102", "maps": [], @@ -608321,8 +573069,6 @@ }, "description": "1103, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "6101.01.103", "maps": [], @@ -608355,8 +573101,6 @@ }, "description": "1104, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "6101.01.104", "maps": [], @@ -608389,8 +573133,6 @@ }, "description": "2101, Wasserversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "6101.02.201", "maps": [], @@ -608423,8 +573165,6 @@ }, "description": "2102, K\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "6101.02.202", "maps": [], @@ -608457,8 +573197,6 @@ }, "description": "2103, Be- und Entl\u00fcftung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "6101.02.203", "maps": [], @@ -608491,8 +573229,6 @@ }, "description": "2104, Flur/Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "6101.02.204", "maps": [], @@ -608525,8 +573261,6 @@ }, "description": "2105, Waschplatz mit WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "6101.02.205", "maps": [], @@ -608559,8 +573293,6 @@ }, "description": "2106, Leittechnik (Gro\u00dfraumb\u00fcro)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "6101.02.206", "maps": [], @@ -608593,8 +573325,6 @@ }, "description": "2107, Aufenthalt/Labor Umbau ??", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "6101.02.207", "maps": [], @@ -608627,8 +573357,6 @@ }, "description": "0101, W\u00e4rmeversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6101.EG.001", "maps": [], @@ -608661,8 +573389,6 @@ }, "description": "0102, Pumpenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6101.EG.002", "maps": [], @@ -608695,8 +573421,6 @@ }, "description": "0003, Flur/Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6101.EG.003", "maps": [], @@ -608729,8 +573453,6 @@ }, "description": "0104, Arbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6101.EG.004", "maps": [], @@ -608763,8 +573485,6 @@ }, "description": "0105, Grobmechanische Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6101.EG.005", "maps": [], @@ -608797,8 +573517,6 @@ }, "description": "0106, Waschplatz mit WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6101.EG.006", "maps": [], @@ -608831,8 +573549,6 @@ }, "description": "0107, Flur/Lager mit Waschplatz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6101.EG.007", "maps": [], @@ -608865,8 +573581,6 @@ }, "description": "0108, Batterieraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6101.EG.008", "maps": [], @@ -608899,8 +573613,6 @@ }, "description": "0109, Mittelspannung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6101.EG.009", "maps": [], @@ -608933,8 +573645,6 @@ }, "description": "-1101, Rohrkeller", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "6101.U1.001", "maps": [], @@ -608967,8 +573677,6 @@ }, "description": "-1102, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "6101.U1.002", "maps": [], @@ -609001,8 +573709,6 @@ }, "description": "-1103, Treppenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "6101.U1.003", "maps": [], @@ -609035,8 +573741,6 @@ }, "description": "0201, Kfz-Halle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6102.EG.201", "maps": [], @@ -609069,8 +573773,6 @@ }, "description": "0202, Ger\u00e4telager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6102.EG.202", "maps": [], @@ -609103,8 +573805,6 @@ }, "description": "0203, Kfz-Waschhalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6102.EG.203", "maps": [], @@ -609137,8 +573837,6 @@ }, "description": "0205, Aufenthalt Werkstattpersonal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6102.EG.205", "maps": [], @@ -609171,8 +573869,6 @@ }, "description": "0206, Dusche / Umkleide", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6102.EG.206", "maps": [], @@ -609205,8 +573901,6 @@ }, "description": "0207, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6102.EG.207", "maps": [], @@ -609239,8 +573933,6 @@ }, "description": "0210, Flur 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6102.EG.210", "maps": [], @@ -609273,8 +573965,6 @@ }, "description": "0211, Eingangshalle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6102.EG.211", "maps": [], @@ -609307,8 +573997,6 @@ }, "description": "0226, Wasserversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6102.EG.226", "maps": [], @@ -609341,8 +574029,6 @@ }, "description": "0227, Getr\u00e4nkelager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6102.EG.227", "maps": [], @@ -609375,8 +574061,6 @@ }, "description": "0228, Labor Wasseraufbereitung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6102.EG.228", "maps": [], @@ -609409,8 +574093,6 @@ }, "description": "0229, Beh.-WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6102.EG.229", "maps": [], @@ -609443,8 +574125,6 @@ }, "description": "0230, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6102.EG.230", "maps": [], @@ -609477,8 +574157,6 @@ }, "description": "0231, Waschplatz mit WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6102.EG.231", "maps": [], @@ -609511,8 +574189,6 @@ }, "description": "0232, Umkleidekabine", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6102.EG.232", "maps": [], @@ -609545,8 +574221,6 @@ }, "description": "0233, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6102.EG.233", "maps": [], @@ -609579,8 +574253,6 @@ }, "description": "0233A, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6102.EG.233A", "maps": [], @@ -609613,8 +574285,6 @@ }, "description": "0234, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6102.EG.234", "maps": [], @@ -609647,8 +574317,6 @@ }, "description": "0235, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6102.EG.235", "maps": [], @@ -609681,8 +574349,6 @@ }, "description": "0236, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6102.EG.236", "maps": [], @@ -609715,8 +574381,6 @@ }, "description": "0237, Drucker/Kopierraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6102.EG.237", "maps": [], @@ -609749,8 +574413,6 @@ }, "description": "0238, Flur 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6102.EG.238", "maps": [], @@ -609783,8 +574445,6 @@ }, "description": "0239, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6102.EG.239", "maps": [], @@ -609817,8 +574477,6 @@ }, "description": "0240, Gesundheitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6102.EG.240", "maps": [], @@ -609851,8 +574509,6 @@ }, "description": "0241, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6102.EG.241", "maps": [], @@ -609885,8 +574541,6 @@ }, "description": "0242, Elektrische Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6102.EG.242", "maps": [], @@ -609919,8 +574573,6 @@ }, "description": "0243, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6102.EG.243", "maps": [], @@ -609953,8 +574605,6 @@ }, "description": "0244, Meisterb\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6102.EG.244", "maps": [], @@ -609987,8 +574637,6 @@ }, "description": "0245, Grobmechanische Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6102.EG.245", "maps": [], @@ -610021,8 +574669,6 @@ }, "description": "0245A, GLT-Werkstatt Umbaufl.?", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6102.EG.245A", "maps": [], @@ -610055,8 +574701,6 @@ }, "description": "0246, Ger\u00e4telager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6102.EG.246", "maps": [], @@ -610089,8 +574733,6 @@ }, "description": "0247, Heizung Sanit\u00e4r Werkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6102.EG.247", "maps": [], @@ -610123,8 +574765,6 @@ }, "description": "0248, Holzwerkstatt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6102.EG.248", "maps": [], @@ -610157,8 +574797,6 @@ }, "description": "0249, Schlosserei", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6102.EG.249", "maps": [], @@ -610191,8 +574829,6 @@ }, "description": "0250, Lackelager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6102.EG.250", "maps": [], @@ -610225,8 +574861,6 @@ }, "description": "0251, Lackiererei", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6102.EG.251", "maps": [], @@ -610259,8 +574893,6 @@ }, "description": "0252, Spanabsauganlage", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6102.EG.252", "maps": [], @@ -610293,8 +574925,6 @@ }, "description": "0253, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6102.EG.253", "maps": [], @@ -610327,8 +574957,6 @@ }, "description": "0254, Elektrolager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6102.EG.254", "maps": [], @@ -610361,8 +574989,6 @@ }, "description": "0254B, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6102.EG.254B", "maps": [], @@ -610395,8 +575021,6 @@ }, "description": "0254C, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6102.EG.254C", "maps": [], @@ -610429,8 +575053,6 @@ }, "description": "0255, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6102.EG.255", "maps": [], @@ -610463,8 +575085,6 @@ }, "description": "0255B, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6102.EG.255B", "maps": [], @@ -610497,8 +575117,6 @@ }, "description": "0255C, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6102.EG.255C", "maps": [], @@ -610531,8 +575149,6 @@ }, "description": "0256, Schloss/Sanit\u00e4rlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6102.EG.256", "maps": [], @@ -610565,8 +575181,6 @@ }, "description": "0257, Holzlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6102.EG.257", "maps": [], @@ -610599,8 +575213,6 @@ }, "description": "0258, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6102.EG.258", "maps": [], @@ -610633,8 +575245,6 @@ }, "description": "0259, Ger\u00e4telager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6102.EG.259", "maps": [], @@ -610667,8 +575277,6 @@ }, "description": "0260, Sandstrahlraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6102.EG.260", "maps": [], @@ -610701,8 +575309,6 @@ }, "description": "0261, Ger\u00e4telager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6102.EG.261", "maps": [], @@ -610735,8 +575341,6 @@ }, "description": "0262, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6102.EG.262", "maps": [], @@ -610769,8 +575373,6 @@ }, "description": "1201A, Lastenaufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "6102.U1.201A", "maps": [], @@ -610803,8 +575405,6 @@ }, "description": "1202A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "6102.U1.202A", "maps": [], @@ -610837,8 +575437,6 @@ }, "description": "1203, Rohrkeller", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "6102.U1.203", "maps": [], @@ -610871,8 +575469,6 @@ }, "description": "1203A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "6102.U1.203A", "maps": [], @@ -610905,8 +575501,6 @@ }, "description": "1204, Wasserversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "6102.U1.204", "maps": [], @@ -610939,8 +575533,6 @@ }, "description": "1205, Wasseraufbereitung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "6102.U1.205", "maps": [], @@ -610973,8 +575565,6 @@ }, "description": "1206, Keller Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "6102.U1.206", "maps": [], @@ -611007,8 +575597,6 @@ }, "description": "1206A, Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "6102.U1.206A", "maps": [], @@ -611041,8 +575629,6 @@ }, "description": "1207, Gas Feuerl\u00f6scherlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "6102.U1.207", "maps": [], @@ -611075,8 +575661,6 @@ }, "description": "1207A, Ausgang zu Licht/Luftschacht", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "6102.U1.207A", "maps": [], @@ -611109,8 +575693,6 @@ }, "description": "1209, Kellerflur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "6102.U1.209", "maps": [], @@ -611143,8 +575725,6 @@ }, "description": "1210, Flur zu 211/212", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "6102.U1.210", "maps": [], @@ -611177,8 +575757,6 @@ }, "description": "1211, Aktenlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "6102.U1.211", "maps": [], @@ -611211,8 +575789,6 @@ }, "description": "1212, Aktenlager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "6102.U1.212", "maps": [], @@ -611245,8 +575821,6 @@ }, "description": "1213, Ger\u00e4telager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "6102.U1.213", "maps": [], @@ -611279,8 +575853,6 @@ }, "description": "1214, Kabellager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "6102.U1.214", "maps": [], @@ -611313,8 +575885,6 @@ }, "description": "1215, Ger\u00e4telager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "6102.U1.215", "maps": [], @@ -611347,8 +575917,6 @@ }, "description": "1216, Heiz./Sanit\u00e4r/Gummilager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "6102.U1.216", "maps": [], @@ -611381,8 +575949,6 @@ }, "description": "1217, Elektrolager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "6102.U1.217", "maps": [], @@ -611415,8 +575981,6 @@ }, "description": "1218, Install.Kanal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "6102.U1.218", "maps": [], @@ -611449,8 +576013,6 @@ }, "description": "0301, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6103.EG.001", "maps": [], @@ -611483,8 +576045,6 @@ }, "description": "0302, Stromversorgung Umbau??", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6103.EG.002", "maps": [], @@ -611517,8 +576077,6 @@ }, "description": "0302A, Stromversorgung Umbau??", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6103.EG.002A", "maps": [], @@ -611551,8 +576109,6 @@ }, "description": "0303, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6103.EG.003", "maps": [], @@ -611585,8 +576141,6 @@ }, "description": "0304, Flur/Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6103.EG.004", "maps": [], @@ -611619,8 +576173,6 @@ }, "description": "0305, Dieselraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6103.EG.005", "maps": [], @@ -611653,8 +576205,6 @@ }, "description": "0306, Flur Anbau ??", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6103.EG.006", "maps": [], @@ -611687,8 +576237,6 @@ }, "description": "0307, Stromversorgung Anbau ??", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6103.EG.007", "maps": [], @@ -611721,8 +576269,6 @@ }, "description": "0308, Stromversorgung Anbau ??", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6103.EG.008", "maps": [], @@ -611755,8 +576301,6 @@ }, "description": "0309, Dieselraum Anbau ??", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6103.EG.009", "maps": [], @@ -611789,8 +576333,6 @@ }, "description": "-1301, Kabelzuf\u00fchrung/Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "6103.U1.001", "maps": [], @@ -611823,8 +576365,6 @@ }, "description": "-1302, Kabelzuf\u00fchrung/Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "6103.U1.002", "maps": [], @@ -611857,8 +576397,6 @@ }, "description": "-1303, Flur/Treppe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "6103.U1.003", "maps": [], @@ -611891,8 +576429,6 @@ }, "description": "-1304, Dieselraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "6103.U1.004", "maps": [], @@ -611925,8 +576461,6 @@ }, "description": "-1306, Flur Anbau??", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "6103.U1.006", "maps": [], @@ -611959,8 +576493,6 @@ }, "description": "-1307, Stromversorgung Anbau ??", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "6103.U1.007", "maps": [], @@ -611993,8 +576525,6 @@ }, "description": "-1308, Stromversorgung Anbau ??", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "6103.U1.008", "maps": [], @@ -612027,8 +576557,6 @@ }, "description": "-1309, Dieselraum Anbau??", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "6103.U1.009", "maps": [], @@ -612061,8 +576589,6 @@ }, "description": "-1310, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "6103.U1.010", "maps": [], @@ -612095,8 +576621,6 @@ }, "description": "-1312, Stromversorgung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "6103.U1.012", "maps": [], @@ -612129,8 +576653,6 @@ }, "description": "0001, Ger\u00e4te TBG", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6107.EG.001", "maps": [], @@ -612163,8 +576685,6 @@ }, "description": "0002, Anbauger\u00e4te", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6107.EG.002", "maps": [], @@ -612197,8 +576717,6 @@ }, "description": "0003, Winterdienst", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6107.EG.003", "maps": [], @@ -612231,8 +576749,6 @@ }, "description": "0004, Splitt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6107.EG.004", "maps": [], @@ -612265,8 +576781,6 @@ }, "description": "0005, Salz", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6107.EG.005", "maps": [], @@ -612299,8 +576813,6 @@ }, "description": "0006, Schmierstoffe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "6107.EG.006", "maps": [], @@ -612333,8 +576845,6 @@ }, "description": "01.7894.101, Lobby Galerie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.101", "maps": [], @@ -612367,8 +576877,6 @@ }, "description": "01.7894.103, Auditorium", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.103", "maps": [], @@ -612401,8 +576909,6 @@ }, "description": "01.7894.104, AV-Raum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.104", "maps": [], @@ -612435,8 +576941,6 @@ }, "description": "01.7894.107, AV-Raum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.104A", "maps": [], @@ -612469,8 +576973,6 @@ }, "description": "01.7894.106, Catering", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.106", "maps": [], @@ -612503,8 +577005,6 @@ }, "description": "01.7894.107, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.107", "maps": [], @@ -612537,8 +577037,6 @@ }, "description": "01.7894.181, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.181", "maps": [], @@ -612571,8 +577069,6 @@ }, "description": "01.7894.181A, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.181A", "maps": [], @@ -612605,8 +577101,6 @@ }, "description": "01.7894.182, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.182", "maps": [], @@ -612639,8 +577133,6 @@ }, "description": "01.7894.183, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.183", "maps": [], @@ -612673,8 +577165,6 @@ }, "description": "01.7894.184, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.184", "maps": [], @@ -612707,8 +577197,6 @@ }, "description": "01.7894.201, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.201", "maps": [], @@ -612741,8 +577229,6 @@ }, "description": "01.7894.202, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.202", "maps": [], @@ -612775,8 +577261,6 @@ }, "description": "01.7894.203A, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.203A", "maps": [], @@ -612809,8 +577293,6 @@ }, "description": "01.7894.203B, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.203B", "maps": [], @@ -612843,8 +577325,6 @@ }, "description": "01.7894.204, IT Copy", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.204", "maps": [], @@ -612877,8 +577357,6 @@ }, "description": "01.7894.205, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.205", "maps": [], @@ -612911,8 +577389,6 @@ }, "description": "01.7894.206, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.206", "maps": [], @@ -612945,8 +577421,6 @@ }, "description": "01.7894.208, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.208", "maps": [], @@ -612979,8 +577453,6 @@ }, "description": "01.7894.210, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.210", "maps": [], @@ -613013,8 +577485,6 @@ }, "description": "01.7894.211, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.211", "maps": [], @@ -613047,8 +577517,6 @@ }, "description": "01.7894.212A, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.212A", "maps": [], @@ -613081,8 +577549,6 @@ }, "description": "01.7894.212B, WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.212B", "maps": [], @@ -613115,8 +577581,6 @@ }, "description": "01.7894.213A, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.213A", "maps": [], @@ -613149,8 +577613,6 @@ }, "description": "01.7894.213B, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.213B", "maps": [], @@ -613183,8 +577645,6 @@ }, "description": "01.7894.217, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.217", "maps": [], @@ -613217,8 +577677,6 @@ }, "description": "01.7894.218, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.218", "maps": [], @@ -613251,8 +577709,6 @@ }, "description": "01.7894.220, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.220", "maps": [], @@ -613285,8 +577741,6 @@ }, "description": "01.7894.221, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.221", "maps": [], @@ -613319,8 +577773,6 @@ }, "description": "01.7894.222, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.222", "maps": [], @@ -613353,8 +577805,6 @@ }, "description": "01.7894.224, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.224", "maps": [], @@ -613387,8 +577837,6 @@ }, "description": "01.7894.225, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.225", "maps": [], @@ -613421,8 +577869,6 @@ }, "description": "01.7894.226, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.226", "maps": [], @@ -613455,8 +577901,6 @@ }, "description": "01.7894.227, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.227", "maps": [], @@ -613489,8 +577933,6 @@ }, "description": "01.7894.228, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.228", "maps": [], @@ -613523,8 +577965,6 @@ }, "description": "01.7894.270, TGA", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.270", "maps": [], @@ -613557,8 +577997,6 @@ }, "description": "01.7894.272, TGA", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.272", "maps": [], @@ -613591,8 +578029,6 @@ }, "description": "01.7894.280, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.280", "maps": [], @@ -613625,8 +578061,6 @@ }, "description": "01.7894.281, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.281", "maps": [], @@ -613659,8 +578093,6 @@ }, "description": "01.7894.282, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.282", "maps": [], @@ -613693,8 +578125,6 @@ }, "description": "01.7894.283, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.283", "maps": [], @@ -613727,8 +578157,6 @@ }, "description": "01.7894.301A, WC-Damen Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.301", "maps": [], @@ -613761,8 +578189,6 @@ }, "description": "01.7894.301A, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.301A", "maps": [], @@ -613795,8 +578221,6 @@ }, "description": "01.7894.302, Aufenthaltsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.302", "maps": [], @@ -613829,8 +578253,6 @@ }, "description": "01.7894.303, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.303", "maps": [], @@ -613863,8 +578285,6 @@ }, "description": "01.7894.304, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.304", "maps": [], @@ -613897,8 +578317,6 @@ }, "description": "01.7894.305, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.305", "maps": [], @@ -613931,8 +578349,6 @@ }, "description": "01.7894.306, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.306", "maps": [], @@ -613965,8 +578381,6 @@ }, "description": "01.7894.307, Chemical Lab", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.307", "maps": [], @@ -613999,8 +578413,6 @@ }, "description": "01.7894.308, Chemical Lab", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.308", "maps": [], @@ -614033,8 +578445,6 @@ }, "description": "01.7894.309, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.309", "maps": [], @@ -614067,8 +578477,6 @@ }, "description": "01.7894.310, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.310", "maps": [], @@ -614101,8 +578509,6 @@ }, "description": "01.7894.311, WC-Herren Vorraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.311", "maps": [], @@ -614135,8 +578541,6 @@ }, "description": "01.7894.311A, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.311A", "maps": [], @@ -614169,8 +578573,6 @@ }, "description": "01.7894.311B, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.311B", "maps": [], @@ -614203,8 +578605,6 @@ }, "description": "01.7894.313, Microscopie Lab", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.313", "maps": [], @@ -614237,8 +578637,6 @@ }, "description": "01.7894.314, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.314", "maps": [], @@ -614271,8 +578669,6 @@ }, "description": "01.7894.315, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.315", "maps": [], @@ -614305,8 +578701,6 @@ }, "description": "01.7894.317, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.317", "maps": [], @@ -614339,8 +578733,6 @@ }, "description": "01.7894.319, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.319", "maps": [], @@ -614373,8 +578765,6 @@ }, "description": "01.7894.321, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.321", "maps": [], @@ -614407,8 +578797,6 @@ }, "description": "01.7894.322, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.322", "maps": [], @@ -614441,8 +578829,6 @@ }, "description": "01.7894.323, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.323", "maps": [], @@ -614475,8 +578861,6 @@ }, "description": "01.7894.324, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.324", "maps": [], @@ -614509,8 +578893,6 @@ }, "description": "01.7894.325, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.325", "maps": [], @@ -614543,8 +578925,6 @@ }, "description": "01.7894.326, IT-Room", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.326", "maps": [], @@ -614577,8 +578957,6 @@ }, "description": "01.7894.327, Copy", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.327", "maps": [], @@ -614611,8 +578989,6 @@ }, "description": "01.7894.328, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.328", "maps": [], @@ -614645,8 +579021,6 @@ }, "description": "01.7894.370, TGA", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.370", "maps": [], @@ -614679,8 +579053,6 @@ }, "description": "01.7894.373, TGA", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.373", "maps": [], @@ -614713,8 +579085,6 @@ }, "description": "01.7894.375, TGA", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.375", "maps": [], @@ -614747,8 +579117,6 @@ }, "description": "01.7894.376, TGA", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.376", "maps": [], @@ -614781,8 +579149,6 @@ }, "description": "01.7894.380, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.380", "maps": [], @@ -614815,8 +579181,6 @@ }, "description": "01.7894.381, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.381", "maps": [], @@ -614849,8 +579213,6 @@ }, "description": "01.7894.382, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.382", "maps": [], @@ -614883,8 +579245,6 @@ }, "description": "01.7894.383, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.383", "maps": [], @@ -614917,8 +579277,6 @@ }, "description": "01.7894.401, Lager", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.401", "maps": [], @@ -614951,8 +579309,6 @@ }, "description": "01.7894.480, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.480", "maps": [], @@ -614985,8 +579341,6 @@ }, "description": "01.7894.481, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.481", "maps": [], @@ -615019,8 +579373,6 @@ }, "description": "01.7894.482, Br\u00fccke", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.482", "maps": [], @@ -615053,8 +579405,6 @@ }, "description": "01.7894.222, Cafeteria/Buffet", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.501", "maps": [], @@ -615087,8 +579437,6 @@ }, "description": "01.7894.502, Cafeteria-K\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.502", "maps": [], @@ -615121,8 +579469,6 @@ }, "description": "01.7894.504, WC-Herren Vorraum/Cafeteria", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.504", "maps": [], @@ -615155,8 +579501,6 @@ }, "description": "01.7894.504A, WC-Herren/Cafeteria", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.504A", "maps": [], @@ -615189,8 +579533,6 @@ }, "description": "01.7894.505, WC-Damen Vorraum/Cafeteria", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.505", "maps": [], @@ -615223,8 +579565,6 @@ }, "description": "01.7894.505A, WC-Damen/Cafeteria", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.505A", "maps": [], @@ -615257,8 +579597,6 @@ }, "description": "01.7894.512, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.512", "maps": [], @@ -615291,8 +579629,6 @@ }, "description": "01.7894.513, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.513", "maps": [], @@ -615325,8 +579661,6 @@ }, "description": "01.7894.515, Umkleide", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.515", "maps": [], @@ -615359,8 +579693,6 @@ }, "description": "01.7894.516, Umkleide/Dusche-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.516", "maps": [], @@ -615393,8 +579725,6 @@ }, "description": "01.7894.517, Umkleide", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.517", "maps": [], @@ -615427,8 +579757,6 @@ }, "description": "01.7894.518, Dusche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.518", "maps": [], @@ -615461,8 +579789,6 @@ }, "description": "01.7894.519, Heizung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.519", "maps": [], @@ -615495,8 +579821,6 @@ }, "description": "01.7894.580, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.580", "maps": [], @@ -615529,8 +579853,6 @@ }, "description": "01.7894.580A, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.580A", "maps": [], @@ -615563,8 +579885,6 @@ }, "description": "01.7894.581, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.581", "maps": [], @@ -615597,8 +579917,6 @@ }, "description": "01.7894.582, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.582", "maps": [], @@ -615631,8 +579949,6 @@ }, "description": "01.7894.583, Treppenhaus", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.583", "maps": [], @@ -615665,8 +579981,6 @@ }, "description": "01.7894.880, Br\u00fccke", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.880", "maps": [], @@ -615699,8 +580013,6 @@ }, "description": "01.7894.881, Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.881", "maps": [], @@ -615733,8 +580045,6 @@ }, "description": "01.7894.882, Br\u00fccke", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.882", "maps": [], @@ -615767,8 +580077,6 @@ }, "description": "01.7894.883, Br\u00fccke", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.883", "maps": [], @@ -615801,8 +580109,6 @@ }, "description": "01.7894.884, Br\u00fccke", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "7894.01.884", "maps": [], @@ -615835,8 +580141,6 @@ }, "description": "0001, Messkabine & Messtationen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "7910.EG.001", "maps": [], @@ -615869,8 +580173,6 @@ }, "description": "BC1 2.01.10, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "8101.02.110", "maps": [], @@ -615903,8 +580205,6 @@ }, "description": "BC1 2.01.11, Studentenarbeitsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "8101.02.111", "maps": [], @@ -615937,8 +580237,6 @@ }, "description": "2.01.28A, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "8101.02.128A", "maps": [], @@ -615971,8 +580269,6 @@ }, "description": "2.01.28B, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "8101.02.128B", "maps": [], @@ -616005,8 +580301,6 @@ }, "description": "2.01.28C, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "8101.02.128C", "maps": [], @@ -616039,8 +580333,6 @@ }, "description": "2.01.28D, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "8101.02.128D", "maps": [], @@ -616073,8 +580365,6 @@ }, "description": "2.01.39A, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "8101.02.139A", "maps": [], @@ -616107,8 +580397,6 @@ }, "description": "2.01.39B, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "8101.02.139B", "maps": [], @@ -616141,8 +580429,6 @@ }, "description": "2.01.39C, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "8101.02.139C", "maps": [], @@ -616175,8 +580461,6 @@ }, "description": "2.01.39D, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "8101.02.139D", "maps": [], @@ -616209,8 +580493,6 @@ }, "description": "2.01.40, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "8101.02.140", "maps": [], @@ -616243,8 +580525,6 @@ }, "description": "2.01.42, Flur 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "8101.02.142", "maps": [], @@ -616277,8 +580557,6 @@ }, "description": "2.01.43, Flur 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "8101.02.143", "maps": [], @@ -616311,8 +580589,6 @@ }, "description": "2.01.42, Flur 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "8101.02.145", "maps": [], @@ -616345,8 +580621,6 @@ }, "description": "2.01.47, Flur 5", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "8101.02.147", "maps": [], @@ -616379,8 +580653,6 @@ }, "description": "BC1 2.02.01, Seminarraum", "eexam": null, - "events_end": "2023-12-18", - "events_start": "2023-10-02", "floor": "02", "id": "8101.02.201", "maps": [], @@ -616413,8 +580685,6 @@ }, "description": "2.02.02, Hochbr\u00fcck-Kommunikation/Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "8101.02.202", "maps": [], @@ -616447,8 +580717,6 @@ }, "description": "BC1 2.02.03, Handelsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "8101.02.203", "maps": [], @@ -616481,8 +580749,6 @@ }, "description": "BC1 2.02.11, Seminarraum", "eexam": null, - "events_end": "2023-12-18", - "events_start": "2023-10-02", "floor": "02", "id": "8101.02.211", "maps": [], @@ -616515,8 +580781,6 @@ }, "description": "2.02.29, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "8101.02.229", "maps": [], @@ -616549,8 +580813,6 @@ }, "description": "2.02.35, Hochbr\u00fcck-Kommunikationsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "8101.02.235", "maps": [], @@ -616583,8 +580845,6 @@ }, "description": "2.02.36, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "8101.02.236", "maps": [], @@ -616617,8 +580877,6 @@ }, "description": "2.02.37, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "8101.02.237", "maps": [], @@ -616651,8 +580909,6 @@ }, "description": "2.02.38, Dusche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "8101.02.238", "maps": [], @@ -616685,8 +580941,6 @@ }, "description": "2.02.39, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "8101.02.239", "maps": [], @@ -616719,8 +580973,6 @@ }, "description": "2.02.40, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "8101.02.240", "maps": [], @@ -616753,8 +581005,6 @@ }, "description": "2.02.41, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "8101.02.241", "maps": [], @@ -616787,8 +581037,6 @@ }, "description": "2.02.42, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "8101.02.242", "maps": [], @@ -616821,8 +581069,6 @@ }, "description": "2.02.43, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "8101.02.243", "maps": [], @@ -616855,8 +581101,6 @@ }, "description": "2.02.44, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "8101.02.244", "maps": [], @@ -616889,8 +581133,6 @@ }, "description": "2.02.45, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "8101.02.245", "maps": [], @@ -616923,8 +581165,6 @@ }, "description": "2.02.47, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "8101.02.247", "maps": [], @@ -616957,8 +581197,6 @@ }, "description": "2.02.48, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "8101.02.248", "maps": [], @@ -616991,8 +581229,6 @@ }, "description": "2.02.48A, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "8101.02.248A", "maps": [], @@ -617025,8 +581261,6 @@ }, "description": "2.02.49, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "8101.02.249", "maps": [], @@ -617059,8 +581293,6 @@ }, "description": "3.04.01, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "8101.03.401", "maps": [], @@ -617093,8 +581325,6 @@ }, "description": "3.04.02, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "8101.03.402", "maps": [], @@ -617127,8 +581357,6 @@ }, "description": "3.04.03, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "8101.03.403", "maps": [], @@ -617161,8 +581389,6 @@ }, "description": "3.04.04, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "8101.03.404", "maps": [], @@ -617195,8 +581421,6 @@ }, "description": "3.04.05, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "8101.03.405", "maps": [], @@ -617229,8 +581453,6 @@ }, "description": "3.04.06, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "8101.03.406", "maps": [], @@ -617263,8 +581485,6 @@ }, "description": "3.04.07, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "8101.03.407", "maps": [], @@ -617297,8 +581517,6 @@ }, "description": "3.04.08, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "8101.03.408", "maps": [], @@ -617331,8 +581549,6 @@ }, "description": "3.04.08A, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "8101.03.408A", "maps": [], @@ -617365,8 +581581,6 @@ }, "description": "3.04.09, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "8101.03.409", "maps": [], @@ -617399,8 +581613,6 @@ }, "description": "3.04.09A, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "8101.03.409A", "maps": [], @@ -617433,8 +581645,6 @@ }, "description": "1.04.01, Foyer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8102.01.401", "maps": [], @@ -617467,8 +581677,6 @@ }, "description": "1.04.02, Sozialbereich", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8102.01.402", "maps": [], @@ -617501,8 +581709,6 @@ }, "description": "1.04.03, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8102.01.403", "maps": [], @@ -617535,8 +581741,6 @@ }, "description": "1.04.04, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8102.01.404", "maps": [], @@ -617569,8 +581773,6 @@ }, "description": "1.04.04A, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8102.01.404A", "maps": [], @@ -617603,8 +581805,6 @@ }, "description": "1.04.05, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8102.01.405", "maps": [], @@ -617637,8 +581837,6 @@ }, "description": "1.04.05A, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8102.01.405A", "maps": [], @@ -617671,8 +581869,6 @@ }, "description": "1.04.06, Serverraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8102.01.406", "maps": [], @@ -617705,8 +581901,6 @@ }, "description": "1.04.07, Garderobe/Kopierer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8102.01.407", "maps": [], @@ -617739,8 +581933,6 @@ }, "description": "1.04.08, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8102.01.408", "maps": [], @@ -617773,8 +581965,6 @@ }, "description": "1.04.09, Archiv", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8102.01.409", "maps": [], @@ -617807,8 +581997,6 @@ }, "description": "1.04.10, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8102.01.410", "maps": [], @@ -617841,8 +582029,6 @@ }, "description": "1.04.11, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8102.01.411", "maps": [], @@ -617875,8 +582061,6 @@ }, "description": "1.04.12, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8102.01.412", "maps": [], @@ -617909,8 +582093,6 @@ }, "description": "1.04.13, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8102.01.413", "maps": [], @@ -617943,8 +582125,6 @@ }, "description": "1.04.14, Gro\u00dfraumb\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8102.01.414", "maps": [], @@ -617977,8 +582157,6 @@ }, "description": "2.06.10, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "8102.02.610", "maps": [], @@ -618011,8 +582189,6 @@ }, "description": "2.06.11, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "8102.02.611", "maps": [], @@ -618045,8 +582221,6 @@ }, "description": "2.06.12, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "8102.02.612", "maps": [], @@ -618079,8 +582253,6 @@ }, "description": "2.06.13, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "8102.02.613", "maps": [], @@ -618113,8 +582285,6 @@ }, "description": "2.06.14, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "8102.02.614", "maps": [], @@ -618147,8 +582317,6 @@ }, "description": "BC2 3.1.08, H\u00f6rsaal", "eexam": null, - "events_end": "2023-12-18", - "events_start": "2023-10-02", "floor": "03", "id": "8102.03.108", "maps": [ @@ -618210,8 +582378,6 @@ }, "description": "BC2 3.2.29, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "8102.03.229", "maps": [], @@ -618244,8 +582410,6 @@ }, "description": "3.4.29/30, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "8102.03.429", "maps": [], @@ -618278,8 +582442,6 @@ }, "description": "BC2 3.5.06, H\u00f6rsaal", "eexam": null, - "events_end": "2023-12-18", - "events_start": "2023-10-02", "floor": "03", "id": "8102.03.506", "maps": [ @@ -618341,8 +582503,6 @@ }, "description": "0.01.01, quantum Foyer/Aufenthalt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "8102.EG.101", "maps": [], @@ -618375,8 +582535,6 @@ }, "description": "0.01.02, B\u00fcro 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "8102.EG.102", "maps": [], @@ -618409,8 +582567,6 @@ }, "description": "0.01.03, B\u00fcro 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "8102.EG.103", "maps": [], @@ -618446,8 +582602,6 @@ "de": "f\u00fcr e-Pr\u00fcfungen geeignet", "en": "suitable for e-exams" }, - "events_end": "2023-12-18", - "events_start": "2023-10-02", "floor": "EG", "id": "8102.EG.104", "maps": [ @@ -618518,8 +582672,6 @@ "de": "f\u00fcr e-Pr\u00fcfungen geeignet", "en": "suitable for e-exams" }, - "events_end": "2023-12-18", - "events_start": "2023-10-02", "floor": "EG", "id": "8102.EG.105", "maps": [ @@ -618587,8 +582739,6 @@ }, "description": "0.01.06, Datenraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "8102.EG.106", "maps": [], @@ -618621,8 +582771,6 @@ }, "description": "0.01.07, Technik/Regie", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "8102.EG.107", "maps": [], @@ -618655,8 +582803,6 @@ }, "description": "0.01.08, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "8102.EG.108", "maps": [], @@ -618689,8 +582835,6 @@ }, "description": "0.01.09, Beh.-WC", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "8102.EG.109", "maps": [], @@ -618723,8 +582867,6 @@ }, "description": "0.01.10, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "8102.EG.110", "maps": [], @@ -618757,8 +582899,6 @@ }, "description": "0.01.11, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "8102.EG.111", "maps": [], @@ -618791,8 +582931,6 @@ }, "description": "0.01.12, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "8102.EG.112", "maps": [], @@ -618825,8 +582963,6 @@ }, "description": "0.01.13, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "8102.EG.113", "maps": [], @@ -618859,8 +582995,6 @@ }, "description": "0.01.14, Flur 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "8102.EG.114", "maps": [], @@ -618893,8 +583027,6 @@ }, "description": "0.01.15, Flur 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "8102.EG.115", "maps": [], @@ -618930,8 +583062,6 @@ "de": "f\u00fcr e-Pr\u00fcfungen geeignet", "en": "suitable for e-exams" }, - "events_end": "2023-12-18", - "events_start": "2023-10-02", "floor": "EG", "id": "8102.EG.116", "maps": [ @@ -619010,8 +583140,6 @@ "de": "f\u00fcr e-Pr\u00fcfungen geeignet", "en": "suitable for e-exams" }, - "events_end": "2023-12-18", - "events_start": "2023-10-02", "floor": "EG", "id": "8102.EG.117", "maps": [ @@ -619095,8 +583223,6 @@ }, "description": "BC2 0.01.18, Seminarraum", "eexam": null, - "events_end": "2023-12-18", - "events_start": "2023-10-02", "floor": "EG", "id": "8102.EG.118", "maps": [], @@ -619129,8 +583255,6 @@ }, "description": "0.01.19, Gruppenarbeit 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "8102.EG.119", "maps": [], @@ -619163,8 +583287,6 @@ }, "description": "0.01.20, Gruppenarbeit 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "8102.EG.120", "maps": [], @@ -619197,8 +583319,6 @@ }, "description": "0.01.21, Gruppenarbeit 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "8102.EG.121", "maps": [], @@ -619231,8 +583351,6 @@ }, "description": "0.01.22, Gruppenarbeit 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "8102.EG.122", "maps": [], @@ -619265,8 +583383,6 @@ }, "description": "0.01.23, Gruppenarbeit 5", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "8102.EG.123", "maps": [], @@ -619299,8 +583415,6 @@ }, "description": "0.01.24, Gruppenarbeit 6", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "8102.EG.124", "maps": [], @@ -619333,8 +583447,6 @@ }, "description": "0.01.25, Gruppenarbeit 7", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "8102.EG.125", "maps": [], @@ -619367,8 +583479,6 @@ }, "description": "0.01.26, Gruppenarbeit 8", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "8102.EG.126", "maps": [], @@ -619401,8 +583511,6 @@ }, "description": "0.01.27, Dusche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "8102.EG.127", "maps": [], @@ -619435,8 +583543,6 @@ }, "description": "0.01.28, Flur 3/Kommunikation", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "8102.EG.128", "maps": [], @@ -619469,8 +583575,6 @@ }, "description": "0.01.29, Nebenraum/Foyer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "8102.EG.129", "maps": [], @@ -619503,8 +583607,6 @@ }, "description": "0.01.30, L\u00fcftung/HS 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "8102.EG.130", "maps": [], @@ -619537,8 +583639,6 @@ }, "description": "Audimax im Galileo nur Mo-Di 7-19 Uhr", "eexam": null, - "events_end": "2023-12-18", - "events_start": "2023-10-02", "floor": "01", "id": "8120.01.101", "maps": [ @@ -619619,8 +583719,6 @@ }, "description": "Foyer 1.OG im Kongresszentrum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8120.01.170", "maps": [], @@ -619653,8 +583751,6 @@ }, "description": "Seminarraum Orion 1 im Kongresszentrum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "8120.02.201", "maps": [], @@ -619687,8 +583783,6 @@ }, "description": "Seminarraum Orion 2 im Kongresszentrum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "8120.02.202", "maps": [], @@ -619721,8 +583815,6 @@ }, "description": "Seminarraum Orion 1+2 im Kongresszentrum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "8120.02.203", "maps": [], @@ -619755,8 +583847,6 @@ }, "description": "Foyer 2.OG im Galileo nur Mo-Di 7-19 Uhr", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "8120.02.270", "maps": [], @@ -619789,8 +583879,6 @@ }, "description": "Seminarraum Venus 1 im Kongresszentrum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "8120.03.301", "maps": [], @@ -619823,8 +583911,6 @@ }, "description": "Seminarraum Venus 2 im Kongresszentrum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "8120.03.302", "maps": [], @@ -619857,8 +583943,6 @@ }, "description": "Seminarraum Venus 1+2 im Kongresszentrum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "8120.03.303", "maps": [], @@ -619891,8 +583975,6 @@ }, "description": "Seminarraum Pluto im Kongresszentrum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "8120.03.304", "maps": [], @@ -619925,8 +584007,6 @@ }, "description": "Seminarraum Mars 1 im Kongresszentrum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "8120.03.305", "maps": [], @@ -619959,8 +584039,6 @@ }, "description": "Seminarraum Mars 2 im Kongresszentrum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "8120.03.306", "maps": [], @@ -619993,8 +584071,6 @@ }, "description": "Seminarraum Mars 1+2 im Kongresszentrum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "03", "id": "8120.03.307", "maps": [], @@ -620027,8 +584103,6 @@ }, "description": "4.8120.001, Flur/Vorr. Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "8120.04.001", "maps": [], @@ -620061,8 +584135,6 @@ }, "description": "4.8120.002, Vorraum/SAP/Putzwagen (SAP)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "8120.04.002", "maps": [], @@ -620095,8 +584167,6 @@ }, "description": "4.8120.003, IT Raum SAP (SAP)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "8120.04.003", "maps": [], @@ -620129,8 +584199,6 @@ }, "description": "4.8120.004, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "8120.04.004", "maps": [], @@ -620163,8 +584231,6 @@ }, "description": "4.8120.005, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "8120.04.005", "maps": [], @@ -620197,8 +584263,6 @@ }, "description": "4.8120.006, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "8120.04.006", "maps": [], @@ -620231,8 +584295,6 @@ }, "description": "4.8120.007, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "8120.04.007", "maps": [], @@ -620265,8 +584327,6 @@ }, "description": "4.8120.008, Tea kitchen (SAP)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "8120.04.008", "maps": [], @@ -620299,8 +584359,6 @@ }, "description": "4.8120.009, Locker Wardrobe (SAP)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "8120.04.009", "maps": [], @@ -620333,8 +584391,6 @@ }, "description": "4.8120.010, Break (SAP)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "8120.04.010", "maps": [], @@ -620367,8 +584423,6 @@ }, "description": "4.8120.011, Team office 1 (SAP)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "8120.04.011", "maps": [], @@ -620401,8 +584455,6 @@ }, "description": "4.8120.012, Team office 2 (SAP)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "8120.04.012", "maps": [], @@ -620435,8 +584487,6 @@ }, "description": "4.8120.013, Gro\u00dfraumb\u00fcro (SAP)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "8120.04.013", "maps": [], @@ -620469,8 +584519,6 @@ }, "description": "4.8120.014, Meetingroom (SAP)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "8120.04.014", "maps": [], @@ -620503,8 +584551,6 @@ }, "description": "4.8120.015, Gro\u00dfraumb\u00fcro (SAP)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "8120.04.015", "maps": [], @@ -620537,8 +584583,6 @@ }, "description": "4.8120.016, Think tank (SAP)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "8120.04.016", "maps": [], @@ -620571,8 +584615,6 @@ }, "description": "4.8120.017, Gro\u00dfraumb\u00fcro (SAP)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "8120.04.017", "maps": [], @@ -620605,8 +584647,6 @@ }, "description": "4.8120.018, Think tank (SAP)", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "8120.04.018", "maps": [], @@ -620639,8 +584679,6 @@ }, "description": "4.8120.027, Teilk\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "8120.04.027", "maps": [], @@ -620673,8 +584711,6 @@ }, "description": "4.8120.029, Flur/Garderobe", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "8120.04.029", "maps": [], @@ -620707,8 +584743,6 @@ }, "description": "4.8120.030, Gro\u00dfraumb\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "8120.04.030", "maps": [], @@ -620741,8 +584775,6 @@ }, "description": "4.8120.031, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "8120.04.031", "maps": [], @@ -620775,8 +584807,6 @@ }, "description": "4.8120.034, Pause/Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "8120.04.034", "maps": [], @@ -620809,8 +584839,6 @@ }, "description": "4.8120.035, Kopierraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "8120.04.035", "maps": [], @@ -620843,8 +584871,6 @@ }, "description": "4.8120.036, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "8120.04.036", "maps": [], @@ -620877,8 +584903,6 @@ }, "description": "5.5120.001, Flur/Vorr. Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8120.05.001", "maps": [], @@ -620911,8 +584935,6 @@ }, "description": "5.5120.002, Teek\u00fcche zentr.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8120.05.002", "maps": [], @@ -620945,8 +584967,6 @@ }, "description": "5.5120.003, Vorraum WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8120.05.003", "maps": [], @@ -620979,8 +584999,6 @@ }, "description": "5.5120.004, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8120.05.004", "maps": [], @@ -621013,8 +585031,6 @@ }, "description": "5.5120.005, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8120.05.005", "maps": [], @@ -621047,8 +585063,6 @@ }, "description": "5.5120.006, Vorraum WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8120.05.006", "maps": [], @@ -621081,8 +585095,6 @@ }, "description": "5.5120.007, Sekretariat", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8120.05.007", "maps": [], @@ -621115,8 +585127,6 @@ }, "description": "5.5120.009, Server", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8120.05.009", "maps": [], @@ -621149,8 +585159,6 @@ }, "description": "5.5120.010, Kopierer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8120.05.010", "maps": [], @@ -621183,8 +585191,6 @@ }, "description": "5.5120.011, Workbox", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8120.05.011", "maps": [], @@ -621217,8 +585223,6 @@ }, "description": "5.5120.012, Gro\u00dfraumb\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8120.05.012", "maps": [], @@ -621251,8 +585255,6 @@ }, "description": "5.5120.012A, Sozialbereich", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8120.05.012A", "maps": [], @@ -621285,8 +585287,6 @@ }, "description": "5.5120.012B, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8120.05.012B", "maps": [], @@ -621319,8 +585319,6 @@ }, "description": "5.5120.012C, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8120.05.012C", "maps": [], @@ -621353,8 +585351,6 @@ }, "description": "5.5120.013, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8120.05.013", "maps": [], @@ -621387,8 +585383,6 @@ }, "description": "5.5120.014, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8120.05.014", "maps": [], @@ -621421,8 +585415,6 @@ }, "description": "5.5120.016, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8120.05.016", "maps": [], @@ -621455,8 +585447,6 @@ }, "description": "5.5120.017, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8120.05.017", "maps": [], @@ -621489,8 +585479,6 @@ }, "description": "5.5120.030, Workbox", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8120.05.030", "maps": [], @@ -621523,8 +585511,6 @@ }, "description": "5.5120.031, Besprechungsraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8120.05.031", "maps": [], @@ -621557,8 +585543,6 @@ }, "description": "5.5120.032, Gro\u00dfraumb\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8120.05.032", "maps": [], @@ -621591,8 +585575,6 @@ }, "description": "5.5120.034, Pause-Meeting", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8120.05.034", "maps": [], @@ -621625,8 +585607,6 @@ }, "description": "5.5120.035, Kopierer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8120.05.035", "maps": [], @@ -621659,8 +585639,6 @@ }, "description": "5.5120.036, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8120.05.036", "maps": [], @@ -621693,8 +585671,6 @@ }, "description": "H\u00f6rsaal im Galileo nur Mo-Do 7-19 Uhr", "eexam": null, - "events_end": "2023-12-18", - "events_start": "2023-10-02", "floor": "EG", "id": "8120.EG.001", "maps": [ @@ -621775,8 +585751,6 @@ }, "description": "Seminarraum Taurus 1 im Galileo Mo-Fr 7-19 Uhr", "eexam": null, - "events_end": "2023-12-18", - "events_start": "2023-10-02", "floor": "EG", "id": "8120.EG.002", "maps": [ @@ -621849,8 +585823,6 @@ }, "description": "Seminarraum Taurus 2 im Galileo Mo-Fr 7-19 Uhr", "eexam": null, - "events_end": "2023-11-06", - "events_start": "2023-08-21", "floor": "EG", "id": "8120.EG.003", "maps": [ @@ -621923,8 +585895,6 @@ }, "description": "Seminarraum Terra im Kongresszentrum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "8120.EG.005", "maps": [], @@ -621957,8 +585927,6 @@ }, "description": "Seminarraum Jupiter im Kongresszentrum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "8120.EG.006", "maps": [], @@ -621991,8 +585959,6 @@ }, "description": "Seminarraum Saturn im Kongresszentrum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "8120.EG.007", "maps": [], @@ -622025,8 +585991,6 @@ }, "description": "Foyer EG, Foyer im EG im Kongresszentrum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "8120.EG.070", "maps": [], @@ -622059,8 +586023,6 @@ }, "description": "Seminarraum Phoenix im Hotel Courtyard", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8121.01.101", "maps": [], @@ -622093,8 +586055,6 @@ }, "description": "01.8122.001, Cip-Pool", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8122.01.001", "maps": [], @@ -622127,8 +586087,6 @@ }, "description": "01.8122.002, Cip-Pool", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8122.01.002", "maps": [], @@ -622161,8 +586119,6 @@ }, "description": "01.8122.003, Cip-Pool", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8122.01.003", "maps": [], @@ -622195,8 +586151,6 @@ }, "description": "01.8122.004, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8122.01.004", "maps": [], @@ -622229,8 +586183,6 @@ }, "description": "01.8122.005, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8122.01.005", "maps": [], @@ -622263,8 +586215,6 @@ }, "description": "01.8122.005S, Technik", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8122.01.005A", "maps": [], @@ -622297,8 +586247,6 @@ }, "description": "01.8122.006, Flurbereich Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8122.01.006", "maps": [], @@ -622331,8 +586279,6 @@ }, "description": "01.8122.007, Putzkammer", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8122.01.007", "maps": [], @@ -622365,8 +586311,6 @@ }, "description": "01.8122.008, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8122.01.008", "maps": [], @@ -622399,8 +586343,6 @@ }, "description": "01.8122.009, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8122.01.009", "maps": [], @@ -622433,8 +586375,6 @@ }, "description": "01.8122.010, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8122.01.010", "maps": [], @@ -622467,8 +586407,6 @@ }, "description": "01.8122.011, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8122.01.011", "maps": [], @@ -622501,8 +586439,6 @@ }, "description": "01.8122.012, Gro\u00dfraumb\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8122.01.012", "maps": [], @@ -622535,8 +586471,6 @@ }, "description": "01.8122.013, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8122.01.013", "maps": [], @@ -622569,8 +586503,6 @@ }, "description": "01.8122.014, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8122.01.014", "maps": [], @@ -622603,8 +586535,6 @@ }, "description": "01.8122.015, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8122.01.015", "maps": [], @@ -622637,8 +586567,6 @@ }, "description": "01.8122.016, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8122.01.016", "maps": [], @@ -622671,8 +586599,6 @@ }, "description": "01.8122.017, K\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8122.01.017", "maps": [], @@ -622705,8 +586631,6 @@ }, "description": "01.8122.018, Sozailbereich", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8122.01.018", "maps": [], @@ -622739,8 +586663,6 @@ }, "description": "01.8122.020, Flurbereich Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8122.01.020", "maps": [], @@ -622773,8 +586695,6 @@ }, "description": "01.8122.021, WC-Vorraum Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8122.01.021", "maps": [], @@ -622807,8 +586727,6 @@ }, "description": "01.8122.022, WC-Vorraum Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8122.01.022", "maps": [], @@ -622841,8 +586759,6 @@ }, "description": "01.8122.023, WC-Damen", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8122.01.023", "maps": [], @@ -622875,8 +586791,6 @@ }, "description": "01.8122.024, WC-Herren", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8122.01.024", "maps": [], @@ -622909,8 +586823,6 @@ }, "description": "01.8122.025, Gro\u00dfraumb\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8122.01.025", "maps": [], @@ -622943,8 +586855,6 @@ }, "description": "01.8122.026, Besprechung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8122.01.026", "maps": [], @@ -622977,8 +586887,6 @@ }, "description": "01.8122.027, Besprechung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8122.01.027", "maps": [], @@ -623011,8 +586919,6 @@ }, "description": "01.8122.028, Server", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8122.01.028", "maps": [], @@ -623045,8 +586951,6 @@ }, "description": "01.8122.029, Besprechung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8122.01.029", "maps": [], @@ -623079,8 +586983,6 @@ }, "description": "01.8122.030, Besprechung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8122.01.030", "maps": [], @@ -623113,8 +587015,6 @@ }, "description": "01.8122.031, Gro\u00dfraumb\u00fcro 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8122.01.031", "maps": [], @@ -623147,8 +587047,6 @@ }, "description": "01.8122.032, Gro\u00dfraumb\u00fcro 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8122.01.032", "maps": [], @@ -623181,8 +587079,6 @@ }, "description": "01.8122.033, Besprechung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8122.01.033", "maps": [], @@ -623215,8 +587111,6 @@ }, "description": "01.8122.034, Besprechung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8122.01.034", "maps": [], @@ -623249,8 +587143,6 @@ }, "description": "01.8122.035, Besprechung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8122.01.035", "maps": [], @@ -623283,8 +587175,6 @@ }, "description": "01.8122.036, Sozailbereich", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8122.01.036", "maps": [], @@ -623317,8 +587207,6 @@ }, "description": "01.8122.037, Carrel", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8122.01.037", "maps": [], @@ -623351,8 +587239,6 @@ }, "description": "01.8122.038, Carrel", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8122.01.038", "maps": [], @@ -623385,8 +587271,6 @@ }, "description": "01.8122.039, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8122.01.039", "maps": [], @@ -623419,8 +587303,6 @@ }, "description": "01.8122.040, Besprechung", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "8122.01.040", "maps": [], @@ -623453,8 +587335,6 @@ }, "description": "5.8122.001, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8122.05.001", "maps": [], @@ -623487,8 +587367,6 @@ }, "description": "5.8122.002, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8122.05.002", "maps": [], @@ -623521,8 +587399,6 @@ }, "description": "5.8122.003, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8122.05.003", "maps": [], @@ -623555,8 +587431,6 @@ }, "description": "5.8122.004, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8122.05.004", "maps": [], @@ -623589,8 +587463,6 @@ }, "description": "5.8122.005, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8122.05.005", "maps": [], @@ -623623,8 +587495,6 @@ }, "description": "5.8122.006, Vorraum WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8122.05.006", "maps": [], @@ -623657,8 +587527,6 @@ }, "description": "5.8122.007, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8122.05.007", "maps": [], @@ -623691,8 +587559,6 @@ }, "description": "5.8122.008, Vorraum WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8122.05.008", "maps": [], @@ -623725,8 +587591,6 @@ }, "description": "5.8122.009, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8122.05.009", "maps": [], @@ -623759,8 +587623,6 @@ }, "description": "5.8122.010, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8122.05.010", "maps": [], @@ -623793,8 +587655,6 @@ }, "description": "5.8122.011, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8122.05.011", "maps": [], @@ -623827,8 +587687,6 @@ }, "description": "5.8122.012, Besprechung 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8122.05.012", "maps": [], @@ -623861,8 +587719,6 @@ }, "description": "5.8122.013, Besprechung 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8122.05.013", "maps": [], @@ -623895,8 +587751,6 @@ }, "description": "5.8122.014, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8122.05.014", "maps": [], @@ -623929,8 +587783,6 @@ }, "description": "5.8122.015, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8122.05.015", "maps": [], @@ -623963,8 +587815,6 @@ }, "description": "5.8122.015A, Empfang/Aufenthalt/Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8122.05.015A", "maps": [], @@ -623997,8 +587847,6 @@ }, "description": "5.8122.016, Vorraum WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8122.05.016", "maps": [], @@ -624031,8 +587879,6 @@ }, "description": "5.8122.017, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8122.05.017", "maps": [], @@ -624065,8 +587911,6 @@ }, "description": "5.8122.008, Vorraum WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8122.05.018", "maps": [], @@ -624099,8 +587943,6 @@ }, "description": "5.8122.019, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8122.05.019", "maps": [], @@ -624133,8 +587975,6 @@ }, "description": "5.8122.020, Flurbereich Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8122.05.020", "maps": [], @@ -624167,8 +588007,6 @@ }, "description": "5.8122.021, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8122.05.021", "maps": [], @@ -624201,8 +588039,6 @@ }, "description": "5.8122.022, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8122.05.022", "maps": [], @@ -624235,8 +588071,6 @@ }, "description": "5.8122.023, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8122.05.023", "maps": [], @@ -624269,8 +588103,6 @@ }, "description": "5.8122.024, Server", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8122.05.024", "maps": [], @@ -624303,8 +588135,6 @@ }, "description": "5.8122.025, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8122.05.025", "maps": [], @@ -624337,8 +588167,6 @@ }, "description": "5.8122.026, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8122.05.026", "maps": [], @@ -624371,8 +588199,6 @@ }, "description": "5.8122.027, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8122.05.027", "maps": [], @@ -624405,8 +588231,6 @@ }, "description": "5.8122.028, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8122.05.028", "maps": [], @@ -624439,8 +588263,6 @@ }, "description": "5.8122.029, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8122.05.029", "maps": [], @@ -624473,8 +588295,6 @@ }, "description": "5.8122.030, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8122.05.030", "maps": [], @@ -624507,8 +588327,6 @@ }, "description": "5.8122.031, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8122.05.031", "maps": [], @@ -624541,8 +588359,6 @@ }, "description": "5.8122.032, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8122.05.032", "maps": [], @@ -624575,8 +588391,6 @@ }, "description": "5.8122.033, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8122.05.033", "maps": [], @@ -624609,8 +588423,6 @@ }, "description": "5.8122.034, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8122.05.034", "maps": [], @@ -624643,8 +588455,6 @@ }, "description": "5.8122.035, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8122.05.035", "maps": [], @@ -624677,8 +588487,6 @@ }, "description": "4.8123.001, Aufenthalt u. Catering", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "8123.04.001", "maps": [], @@ -624711,8 +588519,6 @@ }, "description": "4.8123.002, Server", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "8123.04.002", "maps": [], @@ -624745,8 +588551,6 @@ }, "description": "4.8123.003, B\u00fcro Gruppe 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "8123.04.003", "maps": [], @@ -624779,8 +588583,6 @@ }, "description": "4.8123.004, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "8123.04.004", "maps": [], @@ -624813,8 +588615,6 @@ }, "description": "4.8123.005, B\u00fcro Gruppe 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "8123.04.005", "maps": [], @@ -624847,8 +588647,6 @@ }, "description": "4.8123.006, B\u00fcro Gruppe 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "8123.04.006", "maps": [], @@ -624881,8 +588679,6 @@ }, "description": "4.8123.007, Vorraum WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "8123.04.007", "maps": [], @@ -624915,8 +588711,6 @@ }, "description": "4.8123.008, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "8123.04.008", "maps": [], @@ -624949,8 +588743,6 @@ }, "description": "4.8123.009, Vorraum WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "8123.04.009", "maps": [], @@ -624983,8 +588775,6 @@ }, "description": "4.8123.010, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "8123.04.010", "maps": [], @@ -625017,8 +588807,6 @@ }, "description": "4.8123.011, Flurbereich Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "8123.04.011", "maps": [], @@ -625051,8 +588839,6 @@ }, "description": "4.8123.012, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "8123.04.012", "maps": [], @@ -625085,8 +588871,6 @@ }, "description": "4.8123.013, B\u00fcro Gruppe 5", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "8123.04.013", "maps": [], @@ -625119,8 +588903,6 @@ }, "description": "4.8123.014, B\u00fcro Gruppe 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "8123.04.014", "maps": [], @@ -625153,8 +588935,6 @@ }, "description": "4.8123.015, Aufenthalt", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "8123.04.015", "maps": [], @@ -625187,8 +588967,6 @@ }, "description": "4.8123.016, Besprechung/Medien", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "8123.04.016", "maps": [], @@ -625221,8 +588999,6 @@ }, "description": "4.8123.017, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "8123.04.017", "maps": [], @@ -625255,8 +589031,6 @@ }, "description": "4.8123.018, Flurbereich Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "8123.04.018", "maps": [], @@ -625289,8 +589063,6 @@ }, "description": "4.8123.019, Vorraum WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "8123.04.019", "maps": [], @@ -625323,8 +589095,6 @@ }, "description": "4.8123.020, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "8123.04.020", "maps": [], @@ -625357,8 +589127,6 @@ }, "description": "4.8123.021, Vorraum WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "8123.04.021", "maps": [], @@ -625391,8 +589159,6 @@ }, "description": "4.8123.022, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "8123.04.022", "maps": [], @@ -625425,8 +589191,6 @@ }, "description": "4.8123.023, Gro\u00dfraumb\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "8123.04.023", "maps": [], @@ -625459,8 +589223,6 @@ }, "description": "4.8123.024, Zugang zur Terrasse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "8123.04.024", "maps": [], @@ -625493,8 +589255,6 @@ }, "description": "4.8123.025, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "8123.04.025", "maps": [], @@ -625527,8 +589287,6 @@ }, "description": "4.8123.026, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "04", "id": "8123.04.026", "maps": [], @@ -625561,8 +589319,6 @@ }, "description": "5.8123.001, Gro\u00dfraumb\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8123.05.001", "maps": [], @@ -625595,8 +589351,6 @@ }, "description": "5.8123.002, Server", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8123.05.002", "maps": [], @@ -625629,8 +589383,6 @@ }, "description": "5.8123.003, Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8123.05.003", "maps": [], @@ -625663,8 +589415,6 @@ }, "description": "5.8123.004, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8123.05.004", "maps": [], @@ -625697,8 +589447,6 @@ }, "description": "5.8123.005, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8123.05.005", "maps": [], @@ -625731,8 +589479,6 @@ }, "description": "5.8123.006, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8123.05.006", "maps": [], @@ -625765,8 +589511,6 @@ }, "description": "5.8123.007, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8123.05.007", "maps": [], @@ -625799,8 +589543,6 @@ }, "description": "5.8123.008, Besprechungsraum 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8123.05.008", "maps": [], @@ -625833,8 +589575,6 @@ }, "description": "5.8123.009, Besprechungsraum 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8123.05.009", "maps": [], @@ -625867,8 +589607,6 @@ }, "description": "5.8123.010, Vorraum WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8123.05.010", "maps": [], @@ -625901,8 +589639,6 @@ }, "description": "5.8123.011, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8123.05.011", "maps": [], @@ -625935,8 +589671,6 @@ }, "description": "5.8123.012, Vorraum WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8123.05.012", "maps": [], @@ -625969,8 +589703,6 @@ }, "description": "5.8123.013, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8123.05.013", "maps": [], @@ -626003,8 +589735,6 @@ }, "description": "5.8123.014, Flurbereich Aufzug", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8123.05.014", "maps": [], @@ -626037,8 +589767,6 @@ }, "description": "5.8123.015, Empfang/Aufenthalt/Teek\u00fcche", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8123.05.015", "maps": [], @@ -626071,8 +589799,6 @@ }, "description": "5.8123.016, Besprechungsraum 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8123.05.016", "maps": [], @@ -626105,8 +589831,6 @@ }, "description": "5.8123.017, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8123.05.017", "maps": [], @@ -626139,8 +589863,6 @@ }, "description": "5.8123.018, Besprechungsraum 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8123.05.018", "maps": [], @@ -626173,8 +589895,6 @@ }, "description": "5.8123.019, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8123.05.019", "maps": [], @@ -626207,8 +589927,6 @@ }, "description": "5.8123.020, Vorraum WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8123.05.020", "maps": [], @@ -626241,8 +589959,6 @@ }, "description": "5.8123.021, WC-H", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8123.05.021", "maps": [], @@ -626275,8 +589991,6 @@ }, "description": "5.8123.022, Vorraum WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8123.05.022", "maps": [], @@ -626309,8 +590023,6 @@ }, "description": "5.8123.023, WC-D", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8123.05.023", "maps": [], @@ -626343,8 +590055,6 @@ }, "description": "5.8123.024, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8123.05.024", "maps": [], @@ -626377,8 +590087,6 @@ }, "description": "5.8123.025, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8123.05.025", "maps": [], @@ -626411,8 +590119,6 @@ }, "description": "5.8123.026, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8123.05.026", "maps": [], @@ -626445,8 +590151,6 @@ }, "description": "5.8123.027, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8123.05.027", "maps": [], @@ -626479,8 +590183,6 @@ }, "description": "5.8123.028, B\u00fcro", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8123.05.028", "maps": [], @@ -626513,8 +590215,6 @@ }, "description": "5.8123.029, Flur", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8123.05.029", "maps": [], @@ -626547,8 +590247,6 @@ }, "description": "5.8123.030, Putzraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "05", "id": "8123.05.030", "maps": [], @@ -626581,8 +590279,6 @@ }, "description": "01.901, Terrasse", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "9101.01.901", "maps": [], @@ -626615,8 +590311,6 @@ }, "description": "02.901, Balkon 1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "9101.DG.901", "maps": [], @@ -626649,8 +590343,6 @@ }, "description": "02.902, Balkon 2", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "9101.DG.902", "maps": [], @@ -626683,8 +590375,6 @@ }, "description": "02.903, Balkon 3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "9101.DG.903", "maps": [], @@ -626717,8 +590407,6 @@ }, "description": "02.904, Balkon 4", "eexam": null, - "events_end": null, - "events_start": null, "floor": "DG", "id": "9101.DG.904", "maps": [], @@ -626751,8 +590439,6 @@ }, "description": "00.012, Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "9377.EG.012", "maps": [], @@ -626785,8 +590471,6 @@ }, "description": "00.030, LRG H\u00f6rsaal", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "9377.EG.030", "maps": [], @@ -626819,8 +590503,6 @@ }, "description": "IPP-Seminarraum D3", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "XIPP.EG.003D", "maps": [], @@ -626853,8 +590535,6 @@ }, "description": "IPP-Seminarraum L5", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "XIPP.EG.005L", "maps": [], @@ -626887,8 +590567,6 @@ }, "description": "MPA-Seminarraum 005", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "XMPA.EG.005", "maps": [], @@ -626921,8 +590599,6 @@ }, "description": "MPA: gro\u00dfer Seminarraum E.0.11", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "XMPA.EG.011", "maps": [], @@ -626955,8 +590631,6 @@ }, "description": "MPA: alter Seminarraum 401", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "XMPA.EG.401", "maps": [], @@ -626989,8 +590663,6 @@ }, "description": "MPBC-Seminarraum H208", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "XMPB.02.208H", "maps": [], @@ -627023,8 +590695,6 @@ }, "description": "MPBC-Seminarraum M230", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "XMPB.02.230M", "maps": [], @@ -627057,8 +590727,6 @@ }, "description": "MPE Raum X2 209", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "XMPE.01.209", "maps": [], @@ -627091,8 +590759,6 @@ }, "description": "MPE-Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "XMPE.U1.118B", "maps": [], @@ -627125,8 +590791,6 @@ }, "description": "MPP-Seminarraum", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "XMPP.EG.104", "maps": [], @@ -627159,8 +590823,6 @@ }, "description": "MPP-Raum 30C", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "XMPP.EG.30C", "maps": [], @@ -627193,8 +590855,6 @@ }, "description": "MPP-Raum 31C", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "XMPP.EG.31C", "maps": [], @@ -627227,8 +590887,6 @@ }, "description": "MPQ: Theorie-Seminarraum B2.46", "eexam": null, - "events_end": null, - "events_start": null, "floor": "02", "id": "XMPQ.02.046B", "maps": [], @@ -627261,8 +590919,6 @@ }, "description": "MPQ: kleiner H\u00f6rsaal G0.1", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "XMPQ.EG.001", "maps": [], @@ -627295,8 +590951,6 @@ }, "description": "MPQ: Raum B0.40", "eexam": null, - "events_end": null, - "events_start": null, "floor": "EG", "id": "XMPQ.EG.040B", "maps": [], @@ -627329,8 +590983,6 @@ }, "description": "ORIGINS-Seminarraum 101, 1. OG", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "XUCL.01.101", "maps": [], @@ -627363,8 +591015,6 @@ }, "description": "ORIGINS-Raum 102, 1. OG", "eexam": null, - "events_end": null, - "events_start": null, "floor": "01", "id": "XUCL.01.102", "maps": [], @@ -627397,8 +591047,6 @@ }, "description": "ORIGINS-Seminarraum 13, UG", "eexam": null, - "events_end": null, - "events_start": null, "floor": "U1", "id": "XUCL.U1.UG", "maps": [], @@ -627431,8 +591079,6 @@ }, "description": "Online: Moodle", "eexam": null, - "events_end": null, - "events_start": null, "floor": "XX", "id": "XXXX.XX.MOODLE", "maps": [], @@ -627465,8 +591111,6 @@ }, "description": "Online: Videokonferenz / Zoom etc.", "eexam": null, - "events_end": null, - "events_start": null, "floor": "XX", "id": "XXXX.XX.ONLINE", "maps": [], From 7f8690dfb8167348a4e2705960821602ad992df1 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 21 Dec 2023 03:14:08 +0100 Subject: [PATCH 06/16] Update dependency @intlify/unplugin-vue-i18n to v2 (#909) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- webclient/package.json | 2 +- webclient/pnpm-lock.yaml | 71 +++++++--------------------------------- 2 files changed, 13 insertions(+), 60 deletions(-) diff --git a/webclient/package.json b/webclient/package.json index 6bcd95fcf..714d88f3f 100644 --- a/webclient/package.json +++ b/webclient/package.json @@ -31,7 +31,7 @@ "vue-router": "4.2.5" }, "devDependencies": { - "@intlify/unplugin-vue-i18n": "1.5.0", + "@intlify/unplugin-vue-i18n": "2.0.0", "@rushstack/eslint-patch": "1.6.1", "@types/swagger-ui-dist": "3.30.4", "@vitejs/plugin-vue": "4.5.0", diff --git a/webclient/pnpm-lock.yaml b/webclient/pnpm-lock.yaml index 6f805e04c..3cfc7620e 100644 --- a/webclient/pnpm-lock.yaml +++ b/webclient/pnpm-lock.yaml @@ -38,8 +38,8 @@ dependencies: devDependencies: '@intlify/unplugin-vue-i18n': - specifier: 1.5.0 - version: 1.5.0(vue-i18n@9.7.0) + specifier: 2.0.0 + version: 2.0.0(vue-i18n@9.7.0) '@rushstack/eslint-patch': specifier: 1.6.1 version: 1.6.1 @@ -478,8 +478,8 @@ packages: vue-i18n: optional: true dependencies: - '@intlify/message-compiler': 9.6.2 - '@intlify/shared': 9.6.2 + '@intlify/message-compiler': 9.7.0 + '@intlify/shared': 9.7.0 acorn: 8.11.2 escodegen: 2.1.0 estree-walker: 2.0.2 @@ -499,14 +499,6 @@ packages: '@intlify/shared': 9.7.0 dev: true - /@intlify/message-compiler@9.6.2: - resolution: {integrity: sha512-kgZQL9zeJDeEB5vvD93Y++HvFUELnT48PjnpfCcF3EJaLLVs9he8IzODiNK42Z40lWbFyja0SXJZjsalybQygA==} - engines: {node: '>= 16'} - dependencies: - '@intlify/shared': 9.6.2 - source-map-js: 1.0.2 - dev: true - /@intlify/message-compiler@9.7.0: resolution: {integrity: sha512-/YdZCio2L2tCM5bZ2eMHbSEIQNPh1QqvZIOLI/yCVKXLscis7O0SsR2nmuU/DfCJ3iSeI8juw82C2wLvfsAeww==} engines: {node: '>= 16'} @@ -515,18 +507,13 @@ packages: source-map-js: 1.0.2 dev: true - /@intlify/shared@9.6.2: - resolution: {integrity: sha512-9KBcXmJNxElp7QMnU8V0/tScTOitDqyFi4HceEZqJyyDkMi8K5DBPMTIuXIAMmtMlXpe/nj5pke7tRw97VeQRA==} - engines: {node: '>= 16'} - dev: true - /@intlify/shared@9.7.0: resolution: {integrity: sha512-PUkEuk//YKu4CHS5ah3mNa3XL/+TZj6rAY/6yYN+GCNFd2u+uWUkeuwE4Q6t8dydRWlErOePHHS0KyNoof/oBw==} engines: {node: '>= 16'} dev: true - /@intlify/unplugin-vue-i18n@1.5.0(vue-i18n@9.7.0): - resolution: {integrity: sha512-jW0MCCdwxybxcwjEfCunAcKjVoxyO3i+cnLL6v+MNGRLUHqrpELF6zQAJUhgAK2afhY7mCliy8RxTFWKdXm26w==} + /@intlify/unplugin-vue-i18n@2.0.0(vue-i18n@9.7.0): + resolution: {integrity: sha512-1oKvm92L9l2od2H9wKx2ZvR4tzn7gUtd7bPLI7AWUmm7U9H1iEypndt5d985ypxGsEs0gToDaKTrytbBIJwwSg==} engines: {node: '>= 14.16'} peerDependencies: petite-vue-i18n: '*' @@ -541,11 +528,11 @@ packages: optional: true dependencies: '@intlify/bundle-utils': 7.4.0(vue-i18n@9.7.0) - '@intlify/shared': 9.6.2 + '@intlify/shared': 9.7.0 '@rollup/pluginutils': 5.0.5 - '@vue/compiler-sfc': 3.3.7 + '@vue/compiler-sfc': 3.3.8 debug: 4.3.4(supports-color@8.1.1) - fast-glob: 3.3.1 + fast-glob: 3.3.2 js-yaml: 4.1.0 json5: 2.2.3 pathe: 1.1.1 @@ -681,7 +668,7 @@ packages: engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} dependencies: cross-spawn: 7.0.3 - fast-glob: 3.3.1 + fast-glob: 3.3.2 is-glob: 4.0.3 open: 9.1.0 picocolors: 1.0.0 @@ -990,21 +977,6 @@ packages: '@vue/compiler-core': 3.3.8 '@vue/shared': 3.3.8 - /@vue/compiler-sfc@3.3.7: - resolution: {integrity: sha512-7pfldWy/J75U/ZyYIXRVqvLRw3vmfxDo2YLMwVtWVNew8Sm8d6wodM+OYFq4ll/UxfqVr0XKiVwti32PCrruAw==} - dependencies: - '@babel/parser': 7.23.0 - '@vue/compiler-core': 3.3.7 - '@vue/compiler-dom': 3.3.7 - '@vue/compiler-ssr': 3.3.7 - '@vue/reactivity-transform': 3.3.7 - '@vue/shared': 3.3.7 - estree-walker: 2.0.2 - magic-string: 0.30.5 - postcss: 8.4.31 - source-map-js: 1.0.2 - dev: true - /@vue/compiler-sfc@3.3.8: resolution: {integrity: sha512-WMzbUrlTjfYF8joyT84HfwwXo+8WPALuPxhy+BZ6R4Aafls+jDBnSz8PDz60uFhuqFbl3HxRfxvDzrUf3THwpA==} dependencies: @@ -1016,16 +988,9 @@ packages: '@vue/shared': 3.3.8 estree-walker: 2.0.2 magic-string: 0.30.5 - postcss: 8.4.31 + postcss: 8.4.32 source-map-js: 1.0.2 - /@vue/compiler-ssr@3.3.7: - resolution: {integrity: sha512-TxOfNVVeH3zgBc82kcUv+emNHo+vKnlRrkv8YvQU5+Y5LJGJwSNzcmLUoxD/dNzv0bhQ/F0s+InlgV0NrApJZg==} - dependencies: - '@vue/compiler-dom': 3.3.7 - '@vue/shared': 3.3.7 - dev: true - /@vue/compiler-ssr@3.3.8: resolution: {integrity: sha512-hXCqQL/15kMVDBuoBYpUnSYT8doDNwsjvm3jTefnXr+ytn294ySnT8NlsFHmTgKNjwpuFy7XVV8yTeLtNl/P6w==} dependencies: @@ -1089,16 +1054,6 @@ packages: vue-template-compiler: 2.7.15 dev: true - /@vue/reactivity-transform@3.3.7: - resolution: {integrity: sha512-APhRmLVbgE1VPGtoLQoWBJEaQk4V8JUsqrQihImVqKT+8U6Qi3t5ATcg4Y9wGAPb3kIhetpufyZ1RhwbZCIdDA==} - dependencies: - '@babel/parser': 7.23.0 - '@vue/compiler-core': 3.3.7 - '@vue/shared': 3.3.7 - estree-walker: 2.0.2 - magic-string: 0.30.5 - dev: true - /@vue/reactivity-transform@3.3.8: resolution: {integrity: sha512-49CvBzmZNtcHua0XJ7GdGifM8GOXoUMOX4dD40Y5DxI3R8OUhMlvf2nvgUAcPxaXiV5MQQ1Nwy09ADpnLQUqRw==} dependencies: @@ -2570,7 +2525,7 @@ packages: dependencies: array-union: 2.1.0 dir-glob: 3.0.1 - fast-glob: 3.3.1 + fast-glob: 3.3.2 ignore: 5.3.0 merge2: 1.4.1 slash: 3.0.0 @@ -3380,7 +3335,6 @@ packages: resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} hasBin: true - dev: true /natural-compare@1.4.0: resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} @@ -3793,7 +3747,6 @@ packages: nanoid: 3.3.7 picocolors: 1.0.0 source-map-js: 1.0.2 - dev: true /potpack@2.0.0: resolution: {integrity: sha512-Q+/tYsFU9r7xoOJ+y/ZTtdVQwTWfzjbiXBDMM/JKUux3+QPP02iUuIoeBQ+Ot6oEDlC+/PGjB/5A3K7KKb7hcw==} From 037038c8aa267defced04b34de31853523e22aee Mon Sep 17 00:00:00 2001 From: Frank Elsinga Date: Thu, 21 Dec 2023 04:10:49 +0100 Subject: [PATCH 07/16] improved the transaction handling on startup (#912) * improved the transaction handling on startup * increased the start_period for the main api --- docker-compose.yml | 2 +- server/main-api/src/setup/database/alias.rs | 9 ++++--- server/main-api/src/setup/database/data.rs | 9 ++++--- server/main-api/src/setup/database/mod.rs | 26 ++++++++++++++------- 4 files changed, 27 insertions(+), 19 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index f64f4a746..6ccc1f664 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -92,7 +92,7 @@ services: test: wget -q --spider http://localhost:3003/api/status retries: 5 interval: 10s - start_period: 30s + start_period: 60s meilisearch: image: getmeili/meilisearch:v1.4.2 restart: always diff --git a/server/main-api/src/setup/database/alias.rs b/server/main-api/src/setup/database/alias.rs index a1628df58..f67bbf185 100644 --- a/server/main-api/src/setup/database/alias.rs +++ b/server/main-api/src/setup/database/alias.rs @@ -1,6 +1,5 @@ use log::info; use serde::Deserialize; -use sqlx::PgPool; use std::time::Instant; #[derive(Debug)] @@ -103,7 +102,9 @@ impl Alias { } } -pub(crate) async fn load_all_to_db(pool: &PgPool) -> Result<(), Box> { +pub(crate) async fn load_all_to_db( + tx: &mut sqlx::Transaction<'_, sqlx::Postgres>, +) -> Result<(), Box> { let cdn_url = std::env::var("CDN_URL").unwrap_or_else(|_| "https://nav.tum.de/cdn".to_string()); let raw_aliase = reqwest::get(format!("{cdn_url}/api_data.json")) .await? @@ -114,11 +115,9 @@ pub(crate) async fn load_all_to_db(pool: &PgPool) -> Result<(), Box Result<(), Box> { +pub(crate) async fn load_all_to_db( + tx: &mut sqlx::Transaction<'_, sqlx::Postgres>, +) -> Result<(), Box> { let start = Instant::now(); let cdn_url = std::env::var("CDN_URL").unwrap_or_else(|_| "https://nav.tum.de/cdn".to_string()); let tasks = reqwest::get(format!("{cdn_url}/api_data.json")) @@ -159,11 +160,9 @@ pub(crate) async fn load_all_to_db(pool: &PgPool) -> Result<(), Box Result<(), Box> { +pub(crate) async fn setup_database(pool: &sqlx::PgPool) -> Result<(), Box> { sqlx::migrate!("./migrations").run(pool).await?; + info!("migrations complete"); - info!("database setup complete, deleting old data"); - sqlx::query!("DELETE FROM aliases").execute(pool).await?; - sqlx::query!("DELETE FROM en").execute(pool).await?; - sqlx::query!("DELETE FROM de").execute(pool).await?; + let mut tx = pool.begin().await?; + load_data(&mut tx).await?; + tx.commit().await?; + Ok(()) +} +async fn load_data( + tx: &mut sqlx::Transaction<'_, sqlx::Postgres>, +) -> Result<(), Box> { + info!("deleting old data"); + sqlx::query!("DELETE FROM aliases") + .execute(&mut **tx) + .await?; + sqlx::query!("DELETE FROM en").execute(&mut **tx).await?; + sqlx::query!("DELETE FROM de").execute(&mut **tx).await?; info!("loading new data"); - data::load_all_to_db(pool).await?; + data::load_all_to_db(tx).await?; info!("loading new aliases"); - alias::load_all_to_db(pool).await?; + alias::load_all_to_db(tx).await?; Ok(()) } From ddcb5d774936240a03d6ae1aea4977292af72dee Mon Sep 17 00:00:00 2001 From: Frank Elsinga Date: Thu, 21 Dec 2023 16:26:40 +0100 Subject: [PATCH 08/16] =?UTF-8?q?fixed=20the=20entrance=20of=20Caroline-He?= =?UTF-8?q?rschel-Stra=C3=9Fe=20100=20as=20by=20mail-feedback?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- data/sources/01_areas-extended.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/sources/01_areas-extended.yaml b/data/sources/01_areas-extended.yaml index ae910925c..92f9585ae 100644 --- a/data/sources/01_areas-extended.yaml +++ b/data/sources/01_areas-extended.yaml @@ -1156,7 +1156,7 @@ taufkirchen-ottobrunn: coords: { lat: 48.05453, lon: 11.65308 } 9378: - coords: { lat: 48.05226, lon: 11.65557 } + coords: { lat: 48.052371403229415, lon: 11.655004197508624 } osm: ["way/30081572"] 9379: From f3f39b516193121596e7ef24740e310fa01b52ff Mon Sep 17 00:00:00 2001 From: Frank Elsinga Date: Thu, 21 Dec 2023 16:47:19 +0100 Subject: [PATCH 09/16] =?UTF-8?q?slightly=20modified=20the=20entrance=20of?= =?UTF-8?q?=20Caroline-Herschel-Stra=C3=9Fe=20100=20as=20by=20mail-feedbac?= =?UTF-8?q?k?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- data/sources/01_areas-extended.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/sources/01_areas-extended.yaml b/data/sources/01_areas-extended.yaml index 92f9585ae..cb69cf87e 100644 --- a/data/sources/01_areas-extended.yaml +++ b/data/sources/01_areas-extended.yaml @@ -1156,7 +1156,7 @@ taufkirchen-ottobrunn: coords: { lat: 48.05453, lon: 11.65308 } 9378: - coords: { lat: 48.052371403229415, lon: 11.655004197508624 } + coords: { lat: 48.05236862253642, lon: 11.654884006956397 } osm: ["way/30081572"] 9379: From e2a1cae5ad857ec6842c85291721c1b458eeaf02 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 21 Dec 2023 17:19:59 +0100 Subject: [PATCH 10/16] Update dependency sourcery to ~=1.15.0 (#913) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- requirements-dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements-dev.txt b/requirements-dev.txt index 57c226894..78c99f05f 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,7 +1,7 @@ mypy~=1.7.0 pre-commit~=3.6.0 pylint~=3.0.0 -sourcery~=1.14.0 +sourcery~=1.15.0 types-Pillow~=10.1.0.0 types-PyYAML~=6.0.12.10 types-requests~=2.31.0.1 From ed9e2a5930f144955c5cc4f57676b16d0cf953f1 Mon Sep 17 00:00:00 2001 From: Frank Elsinga Date: Thu, 21 Dec 2023 17:36:13 +0100 Subject: [PATCH 11/16] Chore/server bump (#914) * pulled the server dependency updates from the main update pr * added something I forgot * bumped meilisearch --- .github/workflows/server-cicd.yml | 4 +- deployment/k3s/values.yaml | 2 +- docker-compose.yml | 2 +- server/Cargo.lock | 986 ++++++++++++++++-------------- server/Dockerfile | 2 +- server/calendar/Cargo.toml | 6 +- server/feedback/Cargo.toml | 2 +- server/main-api/Cargo.toml | 6 +- 8 files changed, 538 insertions(+), 472 deletions(-) diff --git a/.github/workflows/server-cicd.yml b/.github/workflows/server-cicd.yml index 719084ceb..d2758c419 100644 --- a/.github/workflows/server-cicd.yml +++ b/.github/workflows/server-cicd.yml @@ -15,7 +15,7 @@ jobs: - name: Setup | Checkout uses: actions/checkout@v4 - name: Setup | Rust - uses: actions-rust-lang/setup-rust-toolchain@v1.5.0 + uses: actions-rust-lang/setup-rust-toolchain@v1.6.0 with: toolchain: stable components: clippy @@ -37,7 +37,7 @@ jobs: - name: Setup | Checkout uses: actions/checkout@v4 - name: Setup | Rust - uses: actions-rust-lang/setup-rust-toolchain@v1.5.0 + uses: actions-rust-lang/setup-rust-toolchain@v1.6.0 with: toolchain: stable cache: false diff --git a/deployment/k3s/values.yaml b/deployment/k3s/values.yaml index 0647d22cd..78117cbfb 100644 --- a/deployment/k3s/values.yaml +++ b/deployment/k3s/values.yaml @@ -8,7 +8,7 @@ server: mielisearch: image: repository: 'getmeili/meilisearch' - tag: v1.4.2 + tag: v1.5.1 calendar: scrape_tasks: - name: refresh-calendar-slow # takes ~6m to complete diff --git a/docker-compose.yml b/docker-compose.yml index 6ccc1f664..372c5e406 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -94,7 +94,7 @@ services: interval: 10s start_period: 60s meilisearch: - image: getmeili/meilisearch:v1.4.2 + image: getmeili/meilisearch:v1.5.1 restart: always healthcheck: test: wget -q --spider http://localhost:7700/health diff --git a/server/Cargo.lock b/server/Cargo.lock index 77d84c21c..173d54f89 100644 --- a/server/Cargo.lock +++ b/server/Cargo.lock @@ -27,9 +27,9 @@ dependencies = [ [[package]] name = "actix-cors" -version = "0.6.4" +version = "0.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b340e9cfa5b08690aae90fb61beb44e9b06f44fe3d0f93781aaa58cfba86245e" +checksum = "0346d8c1f762b41b458ed3145eea914966bb9ad20b9be0d6d463b20d45586370" dependencies = [ "actix-utils", "actix-web", @@ -65,7 +65,7 @@ dependencies = [ "actix-utils", "ahash", "base64", - "bitflags 2.4.0", + "bitflags 2.4.1", "bytes", "bytestring", "derive_more", @@ -97,7 +97,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e01ed3140b2f8d422c68afa1ed2e85d996ea619c988ac834d255db32138655cb" dependencies = [ "quote", - "syn 2.0.31", + "syn 2.0.42", ] [[package]] @@ -210,7 +210,7 @@ dependencies = [ "actix-router", "proc-macro2", "quote", - "syn 2.0.31", + "syn 2.0.42", ] [[package]] @@ -243,21 +243,22 @@ checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" [[package]] name = "ahash" -version = "0.8.3" +version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f" +checksum = "91429305e9f0a25f6205c5b8e0d2db09e0708a7a6df0f42212bb56c32c8ac97a" dependencies = [ "cfg-if", - "getrandom 0.2.10", + "getrandom 0.2.11", "once_cell", "version_check", + "zerocopy", ] [[package]] name = "aho-corasick" -version = "1.0.5" +version = "1.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c378d78423fdad8089616f827526ee33c19f2fddbd5de1629152c9593ba4783" +checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0" dependencies = [ "memchr", ] @@ -311,9 +312,9 @@ dependencies = [ [[package]] name = "async-compression" -version = "0.4.2" +version = "0.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d495b6dc0184693324491a5ac05f559acc97bf937ab31d7a1c33dd0016be6d2b" +checksum = "bc2d0cfb2a7388d34f590e76686704c494ed7aaceed62ee1ba35cbf363abc2a5" dependencies = [ "flate2", "futures-core", @@ -324,13 +325,13 @@ dependencies = [ [[package]] name = "async-trait" -version = "0.1.73" +version = "0.1.75" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc00ceb34980c03614e35a3a4e218276a0a824e911d07651cd0d858a51e8c0f0" +checksum = "fdf6721fb0140e4f897002dd086c06f6c27775df19cfe1fccb21181a48fd2c98" dependencies = [ "proc-macro2", "quote", - "syn 2.0.31", + "syn 2.0.42", ] [[package]] @@ -342,6 +343,16 @@ dependencies = [ "num-traits", ] +[[package]] +name = "atomic-write-file" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "edcdbedc2236483ab103a53415653d6b4442ea6141baf1ffa85df29635e88436" +dependencies = [ + "nix", + "rand 0.8.5", +] + [[package]] name = "autocfg" version = "1.1.0" @@ -395,9 +406,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" [[package]] name = "bitflags" -version = "2.4.0" +version = "2.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635" +checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07" dependencies = [ "serde", ] @@ -413,9 +424,9 @@ dependencies = [ [[package]] name = "bumpalo" -version = "3.13.0" +version = "3.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1" +checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec" [[package]] name = "bytemuck" @@ -425,9 +436,9 @@ checksum = "374d28ec25809ee0e23827c2ab573d729e293f281dfe393500e7ad618baa61c6" [[package]] name = "byteorder" -version = "1.4.3" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" +checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" [[package]] name = "bytes" @@ -437,9 +448,9 @@ checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223" [[package]] name = "bytestring" -version = "1.3.0" +version = "1.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "238e4886760d98c4f899360c834fa93e62cf7f721ac3c2da375cbdf4b8679aae" +checksum = "74d80203ea6b29df88012294f62733de21cfeab47f17b41af3a38bc30a03ee72" dependencies = [ "bytes", ] @@ -455,7 +466,7 @@ dependencies = [ "cached_proc_macro", "cached_proc_macro_types", "futures", - "hashbrown 0.14.0", + "hashbrown", "instant", "once_cell", "thiserror", @@ -512,7 +523,7 @@ dependencies = [ "iana-time-zone", "num-traits", "serde", - "windows-targets", + "windows-targets 0.48.5", ] [[package]] @@ -523,18 +534,18 @@ checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b" [[package]] name = "concurrent-queue" -version = "2.2.0" +version = "2.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "62ec6771ecfa0762d24683ee5a32ad78487a3d3afdc0fb8cae19d2c5deb50b7c" +checksum = "d16048cd947b08fa32c24458a22f5dc5e835264f689f4f5653210c69fd107363" dependencies = [ "crossbeam-utils", ] [[package]] name = "const-oid" -version = "0.9.5" +version = "0.9.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28c122c3980598d243d63d9a704629a2d748d101f278052ff068be5a4423ab6f" +checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" [[package]] name = "conv" @@ -573,9 +584,9 @@ dependencies = [ [[package]] name = "core-foundation" -version = "0.9.3" +version = "0.9.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" +checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" dependencies = [ "core-foundation-sys", "libc", @@ -583,15 +594,15 @@ dependencies = [ [[package]] name = "core-foundation-sys" -version = "0.8.4" +version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" +checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" [[package]] name = "cpufeatures" -version = "0.2.9" +version = "0.2.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1" +checksum = "ce420fe07aecd3e67c5f910618fe65e94158f6dcc0adf44e00d69ce2bdfe0fd0" dependencies = [ "libc", ] @@ -607,9 +618,9 @@ dependencies = [ [[package]] name = "crc-catalog" -version = "2.2.0" +version = "2.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9cace84e55f07e7301bae1c519df89cdad8cc3cd868413d3fdbdeca9ff3db484" +checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5" [[package]] name = "crc32fast" @@ -620,21 +631,11 @@ dependencies = [ "cfg-if", ] -[[package]] -name = "crossbeam-channel" -version = "0.5.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200" -dependencies = [ - "cfg-if", - "crossbeam-utils", -] - [[package]] name = "crossbeam-deque" -version = "0.8.3" +version = "0.8.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef" +checksum = "fca89a0e215bab21874660c67903c5f143333cab1da83d041c7ded6053774751" dependencies = [ "cfg-if", "crossbeam-epoch", @@ -643,22 +644,21 @@ dependencies = [ [[package]] name = "crossbeam-epoch" -version = "0.9.15" +version = "0.9.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7" +checksum = "2d2fe95351b870527a5d09bf563ed3c97c0cffb87cf1c78a591bf48bb218d9aa" dependencies = [ "autocfg", "cfg-if", "crossbeam-utils", "memoffset", - "scopeguard", ] [[package]] name = "crossbeam-queue" -version = "0.3.8" +version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d1cfb3ea8a53f37c40dea2c7bedcbd88bdfae54f5e2175d6ecaff1c988353add" +checksum = "b9bcf5bdbfdd6030fb4a1c497b5d5fc5921aa2f60d359a17e249c0e6df3de153" dependencies = [ "cfg-if", "crossbeam-utils", @@ -666,9 +666,9 @@ dependencies = [ [[package]] name = "crossbeam-utils" -version = "0.8.16" +version = "0.8.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294" +checksum = "c06d96137f14f244c37f989d9fff8f95e6c18b918e71f36638f8c49112e4c78f" dependencies = [ "cfg-if", ] @@ -700,15 +700,15 @@ dependencies = [ "openssl-probe", "openssl-sys", "schannel", - "socket2 0.4.9", + "socket2 0.4.10", "winapi", ] [[package]] name = "curl-sys" -version = "0.4.65+curl-8.2.1" +version = "0.4.70+curl-8.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "961ba061c9ef2fe34bbd12b807152d96f0badd2bebe7b90ce6c8c8b7572a0986" +checksum = "3c0333d8849afe78a4c8102a429a446bfdd055832af071945520e835ae2d841e" dependencies = [ "cc", "libc", @@ -717,7 +717,7 @@ dependencies = [ "openssl-sys", "pkg-config", "vcpkg", - "winapi", + "windows-sys 0.48.0", ] [[package]] @@ -768,7 +768,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856" dependencies = [ "cfg-if", - "hashbrown 0.14.0", + "hashbrown", "lock_api", "once_cell", "parking_lot_core", @@ -787,10 +787,11 @@ dependencies = [ [[package]] name = "deranged" -version = "0.3.8" +version = "0.3.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f2696e8a945f658fd14dc3b87242e6b80cd0f36ff04ea560fa39082368847946" +checksum = "8eb30d70a07a3b04884d2677f06bec33509dc67ca60d92949e5535352d3191dc" dependencies = [ + "powerfmt", "serde", ] @@ -872,23 +873,12 @@ dependencies = [ [[package]] name = "errno" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "136526188508e25c6fef639d7927dfb3e0e3084488bf202267829cf7fc23dbdd" -dependencies = [ - "errno-dragonfly", - "libc", - "windows-sys", -] - -[[package]] -name = "errno-dragonfly" -version = "0.1.2" +version = "0.3.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" +checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245" dependencies = [ - "cc", "libc", + "windows-sys 0.52.0", ] [[package]] @@ -899,7 +889,7 @@ checksum = "136d1b5283a1ab77bd9257427ffd09d8667ced0570b6f938942bc7568ed5b943" dependencies = [ "cfg-if", "home", - "windows-sys", + "windows-sys 0.48.0", ] [[package]] @@ -910,12 +900,12 @@ checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" [[package]] name = "exr" -version = "1.7.0" +version = "1.71.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d1e481eb11a482815d3e9d618db8c42a93207134662873809335a92327440c18" +checksum = "832a761f35ab3e6664babfbdc6cef35a4860e816ec3916dcfd0882954e98a8a8" dependencies = [ "bit_field", - "flume 0.10.14", + "flume", "half", "lebe", "miniz_oxide", @@ -935,40 +925,33 @@ dependencies = [ [[package]] name = "fastrand" -version = "2.0.0" +version = "2.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6999dc1837253364c2ebb0704ba97994bd874e8f195d665c50b7548f6ea92764" +checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5" [[package]] name = "fdeflate" -version = "0.3.0" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d329bdeac514ee06249dabc27877490f17f5d371ec693360768b838e19f3ae10" +checksum = "64d6dafc854908ff5da46ff3f8f473c6984119a2876a383a860246dd7841a868" dependencies = [ "simd-adler32", ] [[package]] -name = "flate2" -version = "1.0.27" +name = "finl_unicode" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c6c98ee8095e9d1dcbf2fcc6d95acccb90d1c81db1e44725c6a984b1dbdfb010" -dependencies = [ - "crc32fast", - "miniz_oxide", -] +checksum = "8fcfdc7a0362c9f4444381a9e697c79d435fe65b52a37466fc2c1184cee9edc6" [[package]] -name = "flume" -version = "0.10.14" +name = "flate2" +version = "1.0.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1657b4441c3403d9f7b3409e47575237dac27b1b5726df654a6ecbf92f0f7577" +checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e" dependencies = [ - "futures-core", - "futures-sink", - "nanorand", - "pin-project", - "spin 0.9.8", + "crc32fast", + "miniz_oxide", ] [[package]] @@ -1005,9 +988,9 @@ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" [[package]] name = "form_urlencoded" -version = "1.2.0" +version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652" +checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" dependencies = [ "percent-encoding", ] @@ -1094,7 +1077,7 @@ checksum = "53b153fd91e4b0147f4aced87be237c98248656bb01050b96bf3ee89220a8ddb" dependencies = [ "proc-macro2", "quote", - "syn 2.0.31", + "syn 2.0.42", ] [[package]] @@ -1156,9 +1139,9 @@ dependencies = [ [[package]] name = "getrandom" -version = "0.2.10" +version = "0.2.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" +checksum = "fe9006bed769170c11f845cf00c7c1e9092aeb3f268e007c3e760ac68008070f" dependencies = [ "cfg-if", "js-sys", @@ -1179,9 +1162,9 @@ dependencies = [ [[package]] name = "gimli" -version = "0.28.0" +version = "0.28.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0" +checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253" [[package]] name = "glob" @@ -1209,9 +1192,9 @@ dependencies = [ [[package]] name = "h2" -version = "0.3.21" +version = "0.3.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "91fc23aa11be92976ef4729127f1a74adf36d8436f7816b185d18df956790833" +checksum = "4d6250322ef6e60f93f9a2162799302cd6f68f79f6e5d85c8c16f14d1d958178" dependencies = [ "bytes", "fnv", @@ -1219,7 +1202,7 @@ dependencies = [ "futures-sink", "futures-util", "http", - "indexmap 1.9.3", + "indexmap", "slab", "tokio", "tokio-util", @@ -1237,15 +1220,9 @@ dependencies = [ [[package]] name = "hashbrown" -version = "0.12.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" - -[[package]] -name = "hashbrown" -version = "0.14.0" +version = "0.14.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a" +checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604" dependencies = [ "ahash", "allocator-api2", @@ -1257,7 +1234,7 @@ version = "0.8.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e8094feaf31ff591f651a2664fb9cfd92bba7a60ce3197265e9482ebe753c8f7" dependencies = [ - "hashbrown 0.14.0", + "hashbrown", ] [[package]] @@ -1271,9 +1248,9 @@ dependencies = [ [[package]] name = "hermit-abi" -version = "0.3.2" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b" +checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7" [[package]] name = "hex" @@ -1283,9 +1260,9 @@ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" [[package]] name = "hkdf" -version = "0.12.3" +version = "0.12.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "791a029f6b9fc27657f6f188ec6e5e43f6911f6f878e0dc5501396e09809d437" +checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7" dependencies = [ "hmac", ] @@ -1301,18 +1278,18 @@ dependencies = [ [[package]] name = "home" -version = "0.5.5" +version = "0.5.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb" +checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5" dependencies = [ - "windows-sys", + "windows-sys 0.52.0", ] [[package]] name = "http" -version = "0.2.9" +version = "0.2.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482" +checksum = "8947b1a6fad4393052c7ba1f4cd97bed3e953a95c79c92ad9b051a04611d9fbb" dependencies = [ "bytes", "fnv", @@ -1321,9 +1298,9 @@ dependencies = [ [[package]] name = "http-body" -version = "0.4.5" +version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" +checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" dependencies = [ "bytes", "http", @@ -1350,9 +1327,9 @@ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" [[package]] name = "hyper" -version = "0.14.27" +version = "0.14.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468" +checksum = "bf96e135eb83a2a8ddf766e426a841d8ddd7449d5f00d34ea02b41d2f19eef80" dependencies = [ "bytes", "futures-channel", @@ -1365,7 +1342,7 @@ dependencies = [ "httpdate", "itoa", "pin-project-lite", - "socket2 0.4.9", + "socket2 0.5.5", "tokio", "tower-service", "tracing", @@ -1374,19 +1351,19 @@ dependencies = [ [[package]] name = "hyper-rustls" -version = "0.24.1" +version = "0.24.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8d78e1e73ec14cf7375674f74d7dde185c8206fd9dea6fb6295e8a98098aaa97" +checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590" dependencies = [ "futures-util", "http", "hyper", "log", - "rustls", + "rustls 0.21.10", "rustls-native-certs", "tokio", "tokio-rustls", - "webpki-roots 0.23.1", + "webpki-roots", ] [[package]] @@ -1404,16 +1381,16 @@ dependencies = [ [[package]] name = "iana-time-zone" -version = "0.1.57" +version = "0.1.58" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2fad5b825842d2b38bd206f3e81d6957625fd7f0a361e345c30e01a0ae2dd613" +checksum = "8326b86b6cff230b97d0d312a6c40a60726df3332e721f72a1b035f451663b20" dependencies = [ "android_system_properties", "core-foundation-sys", "iana-time-zone-haiku", "js-sys", "wasm-bindgen", - "windows", + "windows-core", ] [[package]] @@ -1433,9 +1410,9 @@ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" [[package]] name = "idna" -version = "0.4.0" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c" +checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6" dependencies = [ "unicode-bidi", "unicode-normalization", @@ -1470,7 +1447,7 @@ dependencies = [ "approx", "conv", "image", - "itertools", + "itertools 0.10.5", "nalgebra", "num", "rand 0.7.3", @@ -1481,22 +1458,12 @@ dependencies = [ [[package]] name = "indexmap" -version = "1.9.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" -dependencies = [ - "autocfg", - "hashbrown 0.12.3", -] - -[[package]] -name = "indexmap" -version = "2.0.0" +version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d5477fe2230a79769d8dc68e0eabf5437907c0457a5614a9e8dddb67f65eb65d" +checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f" dependencies = [ "equivalent", - "hashbrown 0.14.0", + "hashbrown", ] [[package]] @@ -1510,9 +1477,9 @@ dependencies = [ [[package]] name = "ipnet" -version = "2.8.0" +version = "2.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28b29a3cd74f0f4598934efe3aeba42bae0eb4680554128851ebbecb02af14e6" +checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3" [[package]] name = "isahc" @@ -1559,17 +1526,26 @@ dependencies = [ "either", ] +[[package]] +name = "itertools" +version = "0.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "25db6b064527c5d482d0423354fcd07a89a2dfe07b67892e62411946db7f07b0" +dependencies = [ + "either", +] + [[package]] name = "itoa" -version = "1.0.9" +version = "1.0.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" +checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c" [[package]] name = "jobserver" -version = "0.1.26" +version = "0.1.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2" +checksum = "8c37f63953c4c63420ed5fd3d6d398c719489b9f872b9fa683262f8edd363c7d" dependencies = [ "libc", ] @@ -1585,9 +1561,9 @@ dependencies = [ [[package]] name = "js-sys" -version = "0.3.64" +version = "0.3.66" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a" +checksum = "cee9c64da59eae3b50095c18d3e74f8b73c0b86d2792824ff01bbce68ba229ca" dependencies = [ "wasm-bindgen", ] @@ -1606,13 +1582,14 @@ dependencies = [ [[package]] name = "jsonwebtoken" -version = "9.1.0" +version = "9.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "155c4d7e39ad04c172c5e3a99c434ea3b4a7ba7960b38ecd562b270b097cce09" +checksum = "5c7ea04a7c5c055c175f189b6dc6ba036fd62306b58c66c9f6389036c503a3f4" dependencies = [ "base64", + "js-sys", "pem", - "ring 0.17.4", + "ring 0.17.7", "serde", "serde_json", "simple_asn1", @@ -1641,15 +1618,15 @@ checksum = "03087c2bad5e1034e8cace5926dec053fb3790248370865f5117a7d0213354c8" [[package]] name = "libc" -version = "0.2.149" +version = "0.2.151" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a08173bc88b7955d1b3145aa561539096c421ac8debde8cbc3612ec635fee29b" +checksum = "302d7ab3130588088d277783b1e2d2e10c9e9e4a16dd9050e6ec93fb3e7048f4" [[package]] name = "libm" -version = "0.2.7" +version = "0.2.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f7012b1bbb0719e1097c47611d3898568c546d597c2e74d66f6087edd5233ff4" +checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" [[package]] name = "libnghttp2-sys" @@ -1663,9 +1640,9 @@ dependencies = [ [[package]] name = "libsqlite3-sys" -version = "0.26.0" +version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "afc22eff61b133b115c6e8c74e818c628d6d5e7a502afea6f64dee076dd94326" +checksum = "cf4e226dcd58b4be396f7bd3c20da8fdee2911400705297ba7d2d7cc2c30f716" dependencies = [ "cc", "pkg-config", @@ -1696,33 +1673,32 @@ dependencies = [ [[package]] name = "linux-raw-sys" -version = "0.4.10" +version = "0.4.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da2479e8c062e40bf0066ffa0bc823de0a9368974af99c9f6df941d2c231e03f" +checksum = "c4cd1a83af159aa67994778be9070f0ae1bd732942279cabb14f86f986a21456" [[package]] name = "local-channel" -version = "0.1.3" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f303ec0e94c6c54447f84f3b0ef7af769858a9c4ef56ef2a986d3dcd4c3fc9c" +checksum = "b6cbc85e69b8df4b8bb8b89ec634e7189099cea8927a276b7384ce5488e53ec8" dependencies = [ "futures-core", "futures-sink", - "futures-util", "local-waker", ] [[package]] name = "local-waker" -version = "0.1.3" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e34f76eb3611940e0e7d53a9aaa4e6a3151f69541a282fd0dad5571420c53ff1" +checksum = "4d873d7c67ce09b42110d801813efbc9364414e356be9935700d368351657487" [[package]] name = "lock_api" -version = "0.4.10" +version = "0.4.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16" +checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45" dependencies = [ "autocfg", "scopeguard", @@ -1758,7 +1734,7 @@ dependencies = [ "proc-macro2", "quote", "regex-syntax 0.6.29", - "syn 2.0.31", + "syn 2.0.42", ] [[package]] @@ -1772,18 +1748,18 @@ dependencies = [ [[package]] name = "mach2" -version = "0.4.1" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6d0d1830bcd151a6fc4aea1369af235b36c1528fe976b8ff678683c9995eade8" +checksum = "19b955cdeb2a02b9117f121ce63aa52d08ade45de53e48fe6a38b39c10f6f709" dependencies = [ "libc", ] [[package]] name = "matrixmultiply" -version = "0.3.7" +version = "0.3.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "090126dc04f95dc0d1c1c91f61bdd474b3930ca064c1edc8a849da2c6cbe1e77" +checksum = "7574c1cf36da4798ab73da5b215bbf444f50718207754cb522201d78d1cd0ff2" dependencies = [ "autocfg", "rawpointer", @@ -1791,10 +1767,11 @@ dependencies = [ [[package]] name = "md-5" -version = "0.10.5" +version = "0.10.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6365506850d44bff6e2fbcb5176cf63650e48bd45ef2fe2665ae1570e0f4b9ca" +checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf" dependencies = [ + "cfg-if", "digest", ] @@ -1839,9 +1816,9 @@ dependencies = [ [[package]] name = "memchr" -version = "2.6.3" +version = "2.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f232d6ef707e1956a43342693d2a31e72989554d58299d7a88738cc95b0d35c" +checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167" [[package]] name = "memoffset" @@ -1885,14 +1862,14 @@ dependencies = [ [[package]] name = "mio" -version = "0.8.9" +version = "0.8.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3dce281c5e46beae905d4de1870d8b1509a9142b62eedf18b443b011ca8343d0" +checksum = "8f3d0b296e374a4e6f3c7b0a1f5a51d748a0d34c85e7dc48fc3fa9a87657fe09" dependencies = [ "libc", "log", "wasi 0.11.0+wasi-snapshot-preview1", - "windows-sys", + "windows-sys 0.48.0", ] [[package]] @@ -1910,15 +1887,6 @@ dependencies = [ "typenum", ] -[[package]] -name = "nanorand" -version = "0.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6a51313c5820b0b02bd422f4b44776fbf47961755c74ce64afc73bfad10226c3" -dependencies = [ - "getrandom 0.2.10", -] - [[package]] name = "native-tls" version = "0.2.11" @@ -1954,7 +1922,7 @@ dependencies = [ "rand 0.8.5", "regex", "reqwest", - "rustls", + "rustls 0.22.1", "serde", "serde_json", "sqlx", @@ -1973,7 +1941,7 @@ dependencies = [ "base64", "chrono", "image", - "jsonwebtoken 9.1.0", + "jsonwebtoken 9.2.0", "log", "octocrab", "pretty_assertions", @@ -2005,7 +1973,7 @@ dependencies = [ "pretty_assertions", "regex", "reqwest", - "rustls", + "rustls 0.22.1", "rusttype", "serde", "serde_json", @@ -2016,6 +1984,17 @@ dependencies = [ "unicode-truncate", ] +[[package]] +name = "nix" +version = "0.27.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053" +dependencies = [ + "bitflags 2.4.1", + "cfg-if", + "libc", +] + [[package]] name = "no-std-compat" version = "0.4.1" @@ -2124,9 +2103,9 @@ dependencies = [ [[package]] name = "num-traits" -version = "0.2.16" +version = "0.2.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2" +checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c" dependencies = [ "autocfg", "libm", @@ -2170,7 +2149,7 @@ dependencies = [ "http-body", "hyper", "hyper-rustls", - "jsonwebtoken 9.1.0", + "jsonwebtoken 9.2.0", "once_cell", "percent-encoding", "pin-project", @@ -2188,17 +2167,17 @@ dependencies = [ [[package]] name = "once_cell" -version = "1.18.0" +version = "1.19.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" +checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" [[package]] name = "openssl" -version = "0.10.60" +version = "0.10.61" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "79a4c6c3a2b158f7f8f2a2fc5a969fa3a068df6fc9dbb4a43845436e3af7c800" +checksum = "6b8419dc8cc6d866deb801274bba2e6f8f6108c1bb7fcc10ee5ab864931dbb45" dependencies = [ - "bitflags 2.4.0", + "bitflags 2.4.1", "cfg-if", "foreign-types", "libc", @@ -2215,7 +2194,7 @@ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.31", + "syn 2.0.42", ] [[package]] @@ -2226,9 +2205,9 @@ checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" [[package]] name = "openssl-sys" -version = "0.9.96" +version = "0.9.97" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3812c071ba60da8b5677cc12bcb1d42989a65553772897a7e0355545a819838f" +checksum = "c3eaad34cdd97d81de97964fc7f29e2d104f483840d906ef56daa1912338460b" dependencies = [ "cc", "libc", @@ -2247,9 +2226,9 @@ dependencies = [ [[package]] name = "parking" -version = "2.1.0" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "14f2252c834a40ed9bb5422029649578e63aa341ac401f74e719dd1afda8394e" +checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae" [[package]] name = "parking_lot" @@ -2263,15 +2242,15 @@ dependencies = [ [[package]] name = "parking_lot_core" -version = "0.9.8" +version = "0.9.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447" +checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e" dependencies = [ "cfg-if", "libc", - "redox_syscall 0.3.5", + "redox_syscall", "smallvec", - "windows-targets", + "windows-targets 0.48.5", ] [[package]] @@ -2282,9 +2261,9 @@ checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c" [[package]] name = "pem" -version = "3.0.2" +version = "3.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3163d2912b7c3b52d651a055f2c7eec9ba5cd22d26ef75b8dd3a59980b185923" +checksum = "1b8fcc794035347fb64beda2d3b462595dd2753e3f268d89c5aae77e8cf2c310" dependencies = [ "base64", "serde", @@ -2301,9 +2280,9 @@ dependencies = [ [[package]] name = "percent-encoding" -version = "2.3.0" +version = "2.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94" +checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" [[package]] name = "pin-project" @@ -2322,7 +2301,7 @@ checksum = "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405" dependencies = [ "proc-macro2", "quote", - "syn 2.0.31", + "syn 2.0.42", ] [[package]] @@ -2360,9 +2339,9 @@ dependencies = [ [[package]] name = "pkg-config" -version = "0.3.27" +version = "0.3.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" +checksum = "69d3587f8a9e599cc7ec2c00e331f71c4e69a5f9a4b8a6efd5b07466b9736f9a" [[package]] name = "png" @@ -2390,9 +2369,15 @@ dependencies = [ "libc", "log", "pin-project-lite", - "windows-sys", + "windows-sys 0.48.0", ] +[[package]] +name = "powerfmt" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" + [[package]] name = "ppv-lite86" version = "0.2.17" @@ -2411,9 +2396,9 @@ dependencies = [ [[package]] name = "proc-macro2" -version = "1.0.66" +version = "1.0.70" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9" +checksum = "39278fbbf5fb4f646ce651690877f89d1c5811a3d4acb27700c1cb3cdb78fd3b" dependencies = [ "unicode-ident", ] @@ -2534,7 +2519,7 @@ version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" dependencies = [ - "getrandom 0.2.10", + "getrandom 0.2.11", ] [[package]] @@ -2572,9 +2557,9 @@ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3" [[package]] name = "rayon" -version = "1.7.0" +version = "1.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b" +checksum = "9c27db03db7734835b3f53954b534c91069375ce6ccaa2e065441e07d9b6cdb1" dependencies = [ "either", "rayon-core", @@ -2582,23 +2567,12 @@ dependencies = [ [[package]] name = "rayon-core" -version = "1.11.0" +version = "1.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d" +checksum = "5ce3fb6ad83f861aac485e76e1985cd109d9a3713802152be56c3b1f0e0658ed" dependencies = [ - "crossbeam-channel", "crossbeam-deque", "crossbeam-utils", - "num_cpus", -] - -[[package]] -name = "redox_syscall" -version = "0.3.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" -dependencies = [ - "bitflags 1.3.2", ] [[package]] @@ -2647,9 +2621,9 @@ checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" [[package]] name = "reqwest" -version = "0.11.22" +version = "0.11.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "046cd98826c46c2ac8ddecae268eb5c2e58628688a5fc7a2643704a73faba95b" +checksum = "37b1ae8d9ac08420c66222fb9096fc5de435c3c48542bc5336c51892cffafb41" dependencies = [ "async-compression", "base64", @@ -2661,7 +2635,6 @@ dependencies = [ "http", "http-body", "hyper", - "hyper-rustls", "hyper-tls", "ipnet", "js-sys", @@ -2671,8 +2644,6 @@ dependencies = [ "once_cell", "percent-encoding", "pin-project-lite", - "rustls", - "rustls-pemfile", "serde", "serde_json", "serde_urlencoded", @@ -2686,7 +2657,6 @@ dependencies = [ "wasm-bindgen", "wasm-bindgen-futures", "web-sys", - "webpki-roots 0.25.2", "winreg", ] @@ -2707,30 +2677,28 @@ dependencies = [ [[package]] name = "ring" -version = "0.17.4" +version = "0.17.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fce3045ffa7c981a6ee93f640b538952e155f1ae3a1a02b84547fc7a56b7059a" +checksum = "688c63d65483050968b2a8937f7995f443e27041a0f7700aa59b0822aedebb74" dependencies = [ "cc", - "getrandom 0.2.10", + "getrandom 0.2.11", "libc", "spin 0.9.8", "untrusted 0.9.0", - "windows-sys", + "windows-sys 0.48.0", ] [[package]] name = "rsa" -version = "0.9.2" +version = "0.9.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ab43bb47d23c1a631b4b680199a45255dce26fa9ab2fa902581f624ff13e6a8" +checksum = "5d0e5124fcb30e76a7e79bfee683a2746db83784b86289f6251b54b7950a0dfc" dependencies = [ - "byteorder", "const-oid", "digest", "num-bigint-dig", "num-integer", - "num-iter", "num-traits", "pkcs1", "pkcs8", @@ -2758,29 +2726,43 @@ dependencies = [ [[package]] name = "rustix" -version = "0.38.21" +version = "0.38.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2b426b0506e5d50a7d8dafcf2e81471400deb602392c7dd110815afb4eaf02a3" +checksum = "72e572a5e8ca657d7366229cdde4bd14c4eb5499a9573d4d366fe1b599daa316" dependencies = [ - "bitflags 2.4.0", + "bitflags 2.4.1", "errno", "libc", "linux-raw-sys", - "windows-sys", + "windows-sys 0.52.0", ] [[package]] name = "rustls" -version = "0.21.9" +version = "0.21.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "629648aced5775d558af50b2b4c7b02983a04b312126d45eeead26e7caa498b9" +checksum = "f9d5a6813c0759e4609cd494e8e725babae6a2ca7b62a5536a13daaec6fcb7ba" dependencies = [ "log", - "ring 0.17.4", + "ring 0.17.7", "rustls-webpki 0.101.7", "sct", ] +[[package]] +name = "rustls" +version = "0.22.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fe6b63262c9fcac8659abfaa96cac103d28166d3ff3eaf8f412e19f3ae9e5a48" +dependencies = [ + "log", + "ring 0.17.7", + "rustls-pki-types", + "rustls-webpki 0.102.0", + "subtle", + "zeroize", +] + [[package]] name = "rustls-native-certs" version = "0.6.3" @@ -2795,30 +2777,37 @@ dependencies = [ [[package]] name = "rustls-pemfile" -version = "1.0.3" +version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d3987094b1d07b653b7dfdc3f70ce9a1da9c51ac18c1b06b662e4f9a0e9f4b2" +checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" dependencies = [ "base64", ] +[[package]] +name = "rustls-pki-types" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e7673e0aa20ee4937c6aacfc12bb8341cfbf054cdd21df6bec5fd0629fe9339b" + [[package]] name = "rustls-webpki" -version = "0.100.3" +version = "0.101.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f6a5fc258f1c1276dfe3016516945546e2d5383911efc0fc4f1cdc5df3a4ae3" +checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765" dependencies = [ - "ring 0.16.20", - "untrusted 0.7.1", + "ring 0.17.7", + "untrusted 0.9.0", ] [[package]] name = "rustls-webpki" -version = "0.101.7" +version = "0.102.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765" +checksum = "de2635c8bc2b88d367767c5de8ea1d8db9af3f6219eba28442242d9ab81d1b89" dependencies = [ - "ring 0.17.4", + "ring 0.17.7", + "rustls-pki-types", "untrusted 0.9.0", ] @@ -2851,9 +2840,9 @@ checksum = "22a197350ece202f19a166d1ad6d9d6de145e1d2a8ef47db299abe164dbd7530" [[package]] name = "ryu" -version = "1.0.15" +version = "1.0.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" +checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c" [[package]] name = "safe_arch" @@ -2870,7 +2859,7 @@ version = "0.1.22" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88" dependencies = [ - "windows-sys", + "windows-sys 0.48.0", ] [[package]] @@ -2881,12 +2870,12 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" [[package]] name = "sct" -version = "0.7.0" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4" +checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414" dependencies = [ - "ring 0.16.20", - "untrusted 0.7.1", + "ring 0.17.7", + "untrusted 0.9.0", ] [[package]] @@ -2923,28 +2912,28 @@ dependencies = [ [[package]] name = "semver" -version = "1.0.18" +version = "1.0.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b0293b4b29daaf487284529cc2f5675b8e57c61f70167ba415a463651fd6a918" +checksum = "836fa6a3e1e547f9a2c4040802ec865b5d85f4014efe00555d7090a3dcaa1090" [[package]] name = "serde" -version = "1.0.188" +version = "1.0.193" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf9e0fcba69a370eed61bcf2b728575f726b50b55cba78064753d708ddc7549e" +checksum = "25dd9975e68d0cb5aa1120c288333fc98731bd1dd12f561e468ea4728c042b89" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.188" +version = "1.0.193" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4eca7ac642d82aa35b60049a6eccb4be6be75e599bd2e9adb5f875a737654af2" +checksum = "43576ca501357b9b071ac53cdc7da8ef0cbd9493d8df094cd821777ea6e894d3" dependencies = [ "proc-macro2", "quote", - "syn 2.0.31", + "syn 2.0.42", ] [[package]] @@ -2958,9 +2947,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.105" +version = "1.0.108" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "693151e1ac27563d6dbcec9dee9fbd5da8539b20fa14ad3752b2e6d363ace360" +checksum = "3d1c7e3eac408d115102c4c24ad393e0821bb3a5df4d506a80f85f7a742a526b" dependencies = [ "itoa", "ryu", @@ -2991,11 +2980,11 @@ dependencies = [ [[package]] name = "serde_yaml" -version = "0.9.25" +version = "0.9.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1a49e178e4452f45cb61d0cd8cebc1b0fafd3e41929e996cef79aa3aca91f574" +checksum = "9269cfafc7e0257ee4a42f3f68a307f458c63d9e7c8ba4b58c5d15f1b7d7e8d3" dependencies = [ - "indexmap 2.0.0", + "indexmap", "itoa", "ryu", "serde", @@ -3004,9 +2993,9 @@ dependencies = [ [[package]] name = "sha1" -version = "0.10.5" +version = "0.10.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3" +checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" dependencies = [ "cfg-if", "cpufeatures", @@ -3015,9 +3004,9 @@ dependencies = [ [[package]] name = "sha2" -version = "0.10.7" +version = "0.10.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "479fb9d862239e610720565ca91403019f2f00410f1864c5aa7479b950a76ed8" +checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8" dependencies = [ "cfg-if", "cpufeatures", @@ -3035,9 +3024,9 @@ dependencies = [ [[package]] name = "signature" -version = "2.1.0" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5e1788eed21689f9cf370582dfc467ef36ed9c707f073528ddafa8d83e3b8500" +checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de" dependencies = [ "digest", "rand_core 0.6.4", @@ -3096,9 +3085,9 @@ dependencies = [ [[package]] name = "smallvec" -version = "1.11.0" +version = "1.11.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "62bb4feee49fdd9f707ef802e22365a35de4b7b299de4763d44bfea899442ff9" +checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970" [[package]] name = "smartstring" @@ -3136,9 +3125,9 @@ dependencies = [ [[package]] name = "socket2" -version = "0.4.9" +version = "0.4.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" +checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d" dependencies = [ "libc", "winapi", @@ -3151,7 +3140,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9" dependencies = [ "libc", - "windows-sys", + "windows-sys 0.48.0", ] [[package]] @@ -3171,9 +3160,9 @@ dependencies = [ [[package]] name = "spki" -version = "0.7.2" +version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d1e996ef02c474957d681f1b05213dfb0abab947b446a62d37770b23500184a" +checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d" dependencies = [ "base64ct", "der", @@ -3181,20 +3170,20 @@ dependencies = [ [[package]] name = "sqlformat" -version = "0.2.1" +version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c12bc9199d1db8234678b7051747c07f517cdcf019262d1847b94ec8b1aee3e" +checksum = "ce81b7bd7c4493975347ef60d8c7e8b742d4694f4c49f93e0a12ea263938176c" dependencies = [ - "itertools", + "itertools 0.12.0", "nom", "unicode_categories", ] [[package]] name = "sqlx" -version = "0.7.2" +version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e50c216e3624ec8e7ecd14c6a6a6370aad6ee5d8cfc3ab30b5162eeeef2ed33" +checksum = "dba03c279da73694ef99763320dea58b51095dfe87d001b1d4b5fe78ba8763cf" dependencies = [ "sqlx-core", "sqlx-macros", @@ -3205,9 +3194,9 @@ dependencies = [ [[package]] name = "sqlx-core" -version = "0.7.2" +version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8d6753e460c998bbd4cd8c6f0ed9a64346fcca0723d6e75e52fdc351c5d2169d" +checksum = "d84b0a3c3739e220d94b3239fd69fb1f74bc36e16643423bd99de3b43c21bfbd" dependencies = [ "ahash", "atoi", @@ -3226,13 +3215,13 @@ dependencies = [ "futures-util", "hashlink", "hex", - "indexmap 2.0.0", + "indexmap", "log", "memchr", "once_cell", "paste", "percent-encoding", - "rustls", + "rustls 0.21.10", "rustls-pemfile", "serde", "serde_json", @@ -3244,14 +3233,14 @@ dependencies = [ "tokio-stream", "tracing", "url", - "webpki-roots 0.24.0", + "webpki-roots", ] [[package]] name = "sqlx-macros" -version = "0.7.2" +version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9a793bb3ba331ec8359c1853bd39eed32cdd7baaf22c35ccf5c92a7e8d1189ec" +checksum = "89961c00dc4d7dffb7aee214964b065072bff69e36ddb9e2c107541f75e4f2a5" dependencies = [ "proc-macro2", "quote", @@ -3262,10 +3251,11 @@ dependencies = [ [[package]] name = "sqlx-macros-core" -version = "0.7.2" +version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0a4ee1e104e00dedb6aa5ffdd1343107b0a4702e862a84320ee7cc74782d96fc" +checksum = "d0bd4519486723648186a08785143599760f7cc81c52334a55d6a83ea1e20841" dependencies = [ + "atomic-write-file", "dotenvy", "either", "heck", @@ -3288,13 +3278,13 @@ dependencies = [ [[package]] name = "sqlx-mysql" -version = "0.7.2" +version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "864b869fdf56263f4c95c45483191ea0af340f9f3e3e7b4d57a61c7c87a970db" +checksum = "e37195395df71fd068f6e2082247891bc11e3289624bbc776a0cdfa1ca7f1ea4" dependencies = [ "atoi", "base64", - "bitflags 2.4.0", + "bitflags 2.4.1", "byteorder", "bytes", "chrono", @@ -3331,13 +3321,13 @@ dependencies = [ [[package]] name = "sqlx-postgres" -version = "0.7.2" +version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eb7ae0e6a97fb3ba33b23ac2671a5ce6e3cabe003f451abd5a56e7951d975624" +checksum = "d6ac0ac3b7ccd10cc96c7ab29791a7dd236bd94021f31eec7ba3d46a74aa1c24" dependencies = [ "atoi", "base64", - "bitflags 2.4.0", + "bitflags 2.4.1", "byteorder", "chrono", "crc", @@ -3371,13 +3361,13 @@ dependencies = [ [[package]] name = "sqlx-sqlite" -version = "0.7.2" +version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d59dc83cf45d89c555a577694534fcd1b55c545a816c816ce51f20bbe56a4f3f" +checksum = "210976b7d948c7ba9fced8ca835b11cbb2d677c59c79de41ac0d397e14547490" dependencies = [ "atoi", "chrono", - "flume 0.11.0", + "flume", "futures-channel", "futures-core", "futures-executor", @@ -3390,6 +3380,7 @@ dependencies = [ "sqlx-core", "tracing", "url", + "urlencoding", ] [[package]] @@ -3400,10 +3391,11 @@ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" [[package]] name = "stringprep" -version = "0.1.3" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "db3737bde7edce97102e0e2b15365bf7a20bfdb5f60f4f9e8d7004258a51a8da" +checksum = "bb41d74e231a107a1b4ee36bd1214b11285b77768d2e3824aedafa988fd36ee6" dependencies = [ + "finl_unicode", "unicode-bidi", "unicode-normalization", ] @@ -3435,15 +3427,15 @@ checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc" [[package]] name = "sval" -version = "2.6.1" +version = "2.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b031320a434d3e9477ccf9b5756d57d4272937b8d22cb88af80b7633a1b78b1" +checksum = "b15df12a8db7c216a04b4b438f90d50d5335cd38f161b56389c9f5c9d96d0873" [[package]] name = "sval_buffer" -version = "2.6.1" +version = "2.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6bf7e9412af26b342f3f2cc5cc4122b0105e9d16eb76046cd14ed10106cf6028" +checksum = "57e80556bc8acea0446e574ce542ad6114a76a0237f28a842bc01ca3ea98f479" dependencies = [ "sval", "sval_ref", @@ -3451,18 +3443,18 @@ dependencies = [ [[package]] name = "sval_dynamic" -version = "2.6.1" +version = "2.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a0ef628e8a77a46ed3338db8d1b08af77495123cc229453084e47cd716d403cf" +checksum = "9d93d2259edb1d7b4316179f0a98c62e3ffc726f47ab200e07cfe382771f57b8" dependencies = [ "sval", ] [[package]] name = "sval_fmt" -version = "2.6.1" +version = "2.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7dc09e9364c2045ab5fa38f7b04d077b3359d30c4c2b3ec4bae67a358bd64326" +checksum = "532f7f882226f7a5a4656f5151224aaebf8217e0d539cb1595b831bace921343" dependencies = [ "itoa", "ryu", @@ -3471,9 +3463,9 @@ dependencies = [ [[package]] name = "sval_json" -version = "2.6.1" +version = "2.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ada6f627e38cbb8860283649509d87bc4a5771141daa41c78fd31f2b9485888d" +checksum = "76e03bd8aa0ae6ee018f7ae95c9714577687a4415bd1a5f19b26e34695f7e072" dependencies = [ "itoa", "ryu", @@ -3482,18 +3474,18 @@ dependencies = [ [[package]] name = "sval_ref" -version = "2.6.1" +version = "2.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "703ca1942a984bd0d9b5a4c0a65ab8b4b794038d080af4eb303c71bc6bf22d7c" +checksum = "75ed054f2fb8c2a0ab5d36c1ec57b412919700099fc5e32ad8e7a38b23e1a9e1" dependencies = [ "sval", ] [[package]] name = "sval_serde" -version = "2.6.1" +version = "2.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "830926cd0581f7c3e5d51efae4d35c6b6fc4db583842652891ba2f1bed8db046" +checksum = "7ff191c4ff05b67e3844c161021427646cde5d6624597958be158357d9200586" dependencies = [ "serde", "sval", @@ -3514,9 +3506,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.31" +version = "2.0.42" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "718fa2415bcb8d8bd775917a1bf12a7931b6dfa890753378538118181e0cb398" +checksum = "5b7d0a2c048d661a1a59fcd7355baa232f7ed34e0ee4df2eef3c1c1c0d3852d8" dependencies = [ "proc-macro2", "quote", @@ -3551,30 +3543,30 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7ef1adac450ad7f4b3c28589471ade84f25f731a7a0fe30d71dfa9f60fd808e5" dependencies = [ "cfg-if", - "fastrand 2.0.0", - "redox_syscall 0.4.1", + "fastrand 2.0.1", + "redox_syscall", "rustix", - "windows-sys", + "windows-sys 0.48.0", ] [[package]] name = "thiserror" -version = "1.0.48" +version = "1.0.51" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d6d7a740b8a666a7e828dd00da9c0dc290dff53154ea77ac109281de90589b7" +checksum = "f11c217e1416d6f036b870f14e0413d480dbf28edbee1f877abaf0206af43bb7" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.48" +version = "1.0.51" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49922ecae66cc8a249b77e68d1d0623c1b2c514f0060c27cdc68bd62a1219d35" +checksum = "01742297787513b79cf8e29d1056ede1313e2420b7b3b15d0a768b4921f549df" dependencies = [ "proc-macro2", "quote", - "syn 2.0.31", + "syn 2.0.42", ] [[package]] @@ -3590,12 +3582,13 @@ dependencies = [ [[package]] name = "time" -version = "0.3.28" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "17f6bb557fd245c28e6411aa56b6403c689ad95061f50e4be16c274e70a17e48" +checksum = "f657ba42c3f86e7680e53c8cd3af8abbe56b5491790b46e22e19c0d57463583e" dependencies = [ "deranged", "itoa", + "powerfmt", "serde", "time-core", "time-macros", @@ -3603,15 +3596,15 @@ dependencies = [ [[package]] name = "time-core" -version = "0.1.1" +version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb" +checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" [[package]] name = "time-macros" -version = "0.2.14" +version = "0.2.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1a942f44339478ef67935ab2bbaec2fb0322496cf3cbe84b261e06ac3814c572" +checksum = "26197e33420244aeb70c3e8c78376ca46571bc4e701e4791c2cd9f57dcb3a43f" dependencies = [ "time-core", ] @@ -3633,9 +3626,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.34.0" +version = "1.35.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d0c014766411e834f7af5b8f4cf46257aab4036ca95e9d2c144a10f59ad6f5b9" +checksum = "c89b4efa943be685f629b149f53829423f8f5531ea21249408e8e2f8671ec104" dependencies = [ "backtrace", "bytes", @@ -3647,7 +3640,7 @@ dependencies = [ "signal-hook-registry", "socket2 0.5.5", "tokio-macros", - "windows-sys", + "windows-sys 0.48.0", ] [[package]] @@ -3658,7 +3651,7 @@ checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b" dependencies = [ "proc-macro2", "quote", - "syn 2.0.31", + "syn 2.0.42", ] [[package]] @@ -3677,7 +3670,7 @@ version = "0.24.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081" dependencies = [ - "rustls", + "rustls 0.21.10", "tokio", ] @@ -3694,9 +3687,9 @@ dependencies = [ [[package]] name = "tokio-util" -version = "0.7.8" +version = "0.7.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d" +checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15" dependencies = [ "bytes", "futures-core", @@ -3729,7 +3722,7 @@ version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "61c5bb1d698276a2443e5ecfabc1008bf15a36c12e6a7176e7bf089ea9131140" dependencies = [ - "bitflags 2.4.0", + "bitflags 2.4.1", "bytes", "futures-core", "futures-util", @@ -3756,11 +3749,10 @@ checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" [[package]] name = "tracing" -version = "0.1.37" +version = "0.1.40" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" +checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" dependencies = [ - "cfg-if", "log", "pin-project-lite", "tracing-attributes", @@ -3769,20 +3761,20 @@ dependencies = [ [[package]] name = "tracing-attributes" -version = "0.1.26" +version = "0.1.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f4f31f56159e98206da9efd823404b79b6ef3143b4a7ab76e67b1751b25a4ab" +checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.31", + "syn 2.0.42", ] [[package]] name = "tracing-core" -version = "0.1.31" +version = "0.1.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a" +checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" dependencies = [ "once_cell", ] @@ -3799,9 +3791,9 @@ dependencies = [ [[package]] name = "try-lock" -version = "0.2.4" +version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" +checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" [[package]] name = "ttf-parser" @@ -3811,21 +3803,21 @@ checksum = "7b3e06c9b9d80ed6b745c7159c40b311ad2916abb34a49e9be2653b90db0d8dd" [[package]] name = "typenum" -version = "1.16.0" +version = "1.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba" +checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" [[package]] name = "unicode-bidi" -version = "0.3.13" +version = "0.3.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" +checksum = "6f2528f27a9eb2b21e69c95319b30bd0efd85d09c379741b0f78ea1d86be2416" [[package]] name = "unicode-ident" -version = "1.0.11" +version = "1.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c" +checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" [[package]] name = "unicode-normalization" @@ -3853,9 +3845,9 @@ dependencies = [ [[package]] name = "unicode-width" -version = "0.1.10" +version = "0.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" +checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85" [[package]] name = "unicode_categories" @@ -3865,9 +3857,9 @@ checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e" [[package]] name = "unsafe-libyaml" -version = "0.2.9" +version = "0.2.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f28467d3e1d3c6586d8f25fa243f544f5800fec42d97032474e17222c2b75cfa" +checksum = "ab4c90930b95a82d00dc9e9ac071b4991924390d46cbd0dfe566148667605e4b" [[package]] name = "untrusted" @@ -3883,9 +3875,9 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" [[package]] name = "url" -version = "2.4.1" +version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "143b538f18257fac9cad154828a57c6bf5157e1aa604d4816b5995bf6de87ae5" +checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633" dependencies = [ "form_urlencoded", "idna", @@ -3893,20 +3885,26 @@ dependencies = [ "serde", ] +[[package]] +name = "urlencoding" +version = "2.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da" + [[package]] name = "uuid" -version = "1.4.1" +version = "1.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "79daa5ed5740825c40b389c5e50312b9c86df53fccd33f281df655642b43869d" +checksum = "5e395fcf16a7a3d8127ec99782007af141946b4795001f876d54fb0d55978560" dependencies = [ - "getrandom 0.2.10", + "getrandom 0.2.11", ] [[package]] name = "value-bag" -version = "1.4.1" +version = "1.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d92ccd67fb88503048c01b59152a04effd0782d035a83a6d256ce6085f08f4a3" +checksum = "4a72e1902dde2bd6441347de2b70b7f5d59bf157c6c62f0c44572607a1d55bbe" dependencies = [ "value-bag-serde1", "value-bag-sval2", @@ -3914,9 +3912,9 @@ dependencies = [ [[package]] name = "value-bag-serde1" -version = "1.4.1" +version = "1.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b0b9f3feef403a50d4d67e9741a6d8fc688bcbb4e4f31bd4aab72cc690284394" +checksum = "07ba39dc791ecb35baad371a3fc04c6eab688c04937d2e0ac6c22b612c0357bf" dependencies = [ "erased-serde", "serde", @@ -3925,9 +3923,9 @@ dependencies = [ [[package]] name = "value-bag-sval2" -version = "1.4.1" +version = "1.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "30b24f4146b6f3361e91cbf527d1fb35e9376c3c0cef72ca5ec5af6d640fad7d" +checksum = "c3e06c10810a57bbf45778d023d432a50a1daa7d185991ae06bcfb6c654d0945" dependencies = [ "sval", "sval_buffer", @@ -3952,9 +3950,9 @@ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" [[package]] name = "waker-fn" -version = "1.1.0" +version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca" +checksum = "f3c4517f54858c779bbcbf228f4fca63d121bf85fbecb2dc578cdf4a39395690" [[package]] name = "want" @@ -3979,9 +3977,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" [[package]] name = "wasm-bindgen" -version = "0.2.87" +version = "0.2.89" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342" +checksum = "0ed0d4f68a3015cc185aff4db9506a015f4b96f95303897bfa23f846db54064e" dependencies = [ "cfg-if", "wasm-bindgen-macro", @@ -3989,24 +3987,24 @@ dependencies = [ [[package]] name = "wasm-bindgen-backend" -version = "0.2.87" +version = "0.2.89" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd" +checksum = "1b56f625e64f3a1084ded111c4d5f477df9f8c92df113852fa5a374dbda78826" dependencies = [ "bumpalo", "log", "once_cell", "proc-macro2", "quote", - "syn 2.0.31", + "syn 2.0.42", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-futures" -version = "0.4.37" +version = "0.4.39" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03" +checksum = "ac36a15a220124ac510204aec1c3e5db8a22ab06fd6706d881dc6149f8ed9a12" dependencies = [ "cfg-if", "js-sys", @@ -4016,9 +4014,9 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro" -version = "0.2.87" +version = "0.2.89" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d" +checksum = "0162dbf37223cd2afce98f3d0785506dcb8d266223983e4b5b525859e6e182b2" dependencies = [ "quote", "wasm-bindgen-macro-support", @@ -4026,28 +4024,28 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro-support" -version = "0.2.87" +version = "0.2.89" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b" +checksum = "f0eb82fcb7930ae6219a7ecfd55b217f5f0893484b7a13022ebb2b2bf20b5283" dependencies = [ "proc-macro2", "quote", - "syn 2.0.31", + "syn 2.0.42", "wasm-bindgen-backend", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-shared" -version = "0.2.87" +version = "0.2.89" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1" +checksum = "7ab9b36309365056cd639da3134bf87fa8f3d86008abf99e612384a6eecd459f" [[package]] name = "web-sys" -version = "0.3.64" +version = "0.3.66" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b" +checksum = "50c24a44ec86bb68fbecd1b3efed7e85ea5621b39b35ef2766b66cd984f8010f" dependencies = [ "js-sys", "wasm-bindgen", @@ -4064,27 +4062,9 @@ dependencies = [ [[package]] name = "webpki-roots" -version = "0.23.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b03058f88386e5ff5310d9111d53f48b17d732b401aeb83a8d5190f2ac459338" -dependencies = [ - "rustls-webpki 0.100.3", -] - -[[package]] -name = "webpki-roots" -version = "0.24.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b291546d5d9d1eab74f069c77749f2cb8504a12caa20f0f2de93ddbf6f411888" -dependencies = [ - "rustls-webpki 0.101.7", -] - -[[package]] -name = "webpki-roots" -version = "0.25.2" +version = "0.25.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "14247bb57be4f377dfb94c72830b8ce8fc6beac03cf4bf7b9732eadd414123fc" +checksum = "1778a42e8b3b90bff8d0f5032bf22250792889a5cdc752aa0020c84abe3aaf10" [[package]] name = "weezl" @@ -4100,9 +4080,9 @@ checksum = "22fc3756b8a9133049b26c7f61ab35416c130e8c09b660f5b3958b446f52cc50" [[package]] name = "wide" -version = "0.7.11" +version = "0.7.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aa469ffa65ef7e0ba0f164183697b89b854253fd31aeb92358b7b6155177d62f" +checksum = "c68938b57b33da363195412cfc5fc37c9ed49aa9cfe2156fde64b8d2c9498242" dependencies = [ "bytemuck", "safe_arch", @@ -4131,12 +4111,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] -name = "windows" -version = "0.48.0" +name = "windows-core" +version = "0.51.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f" +checksum = "f1f8cf84f35d2db49a46868f947758c7a1138116f7fac3bc844f43ade1292e64" dependencies = [ - "windows-targets", + "windows-targets 0.48.5", ] [[package]] @@ -4145,7 +4125,16 @@ version = "0.48.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" dependencies = [ - "windows-targets", + "windows-targets 0.48.5", +] + +[[package]] +name = "windows-sys" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" +dependencies = [ + "windows-targets 0.52.0", ] [[package]] @@ -4154,13 +4143,28 @@ version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" dependencies = [ - "windows_aarch64_gnullvm", - "windows_aarch64_msvc", - "windows_i686_gnu", - "windows_i686_msvc", - "windows_x86_64_gnu", - "windows_x86_64_gnullvm", - "windows_x86_64_msvc", + "windows_aarch64_gnullvm 0.48.5", + "windows_aarch64_msvc 0.48.5", + "windows_i686_gnu 0.48.5", + "windows_i686_msvc 0.48.5", + "windows_x86_64_gnu 0.48.5", + "windows_x86_64_gnullvm 0.48.5", + "windows_x86_64_msvc 0.48.5", +] + +[[package]] +name = "windows-targets" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd" +dependencies = [ + "windows_aarch64_gnullvm 0.52.0", + "windows_aarch64_msvc 0.52.0", + "windows_i686_gnu 0.52.0", + "windows_i686_msvc 0.52.0", + "windows_x86_64_gnu 0.52.0", + "windows_x86_64_gnullvm 0.52.0", + "windows_x86_64_msvc 0.52.0", ] [[package]] @@ -4169,42 +4173,84 @@ version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea" + [[package]] name = "windows_aarch64_msvc" version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" +[[package]] +name = "windows_aarch64_msvc" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef" + [[package]] name = "windows_i686_gnu" version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" +[[package]] +name = "windows_i686_gnu" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313" + [[package]] name = "windows_i686_msvc" version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" +[[package]] +name = "windows_i686_msvc" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a" + [[package]] name = "windows_x86_64_gnu" version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" +[[package]] +name = "windows_x86_64_gnu" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd" + [[package]] name = "windows_x86_64_gnullvm" version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e" + [[package]] name = "windows_x86_64_msvc" version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" +[[package]] +name = "windows_x86_64_msvc" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04" + [[package]] name = "winreg" version = "0.50.0" @@ -4212,7 +4258,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" dependencies = [ "cfg-if", - "windows-sys", + "windows-sys 0.48.0", ] [[package]] @@ -4231,11 +4277,31 @@ dependencies = [ "url", ] +[[package]] +name = "zerocopy" +version = "0.7.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "74d4d3961e53fa4c9a25a8637fc2bfaf2595b3d3ae34875568a5cf64787716be" +dependencies = [ + "zerocopy-derive", +] + +[[package]] +name = "zerocopy-derive" +version = "0.7.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.42", +] + [[package]] name = "zeroize" -version = "1.6.0" +version = "1.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2a0956f1ba7c7909bfb66c2e9e4124ab6f6482560f6628b5aaeba39207c9aad9" +checksum = "525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d" [[package]] name = "zune-inflate" diff --git a/server/Dockerfile b/server/Dockerfile index 9bbd21679..ff546b75a 100644 --- a/server/Dockerfile +++ b/server/Dockerfile @@ -38,7 +38,7 @@ RUN cargo build --release --workspace # RUN -FROM alpine:3.18 +FROM alpine:3.19 ARG GIT_COMMIT_SHA ENV GIT_COMMIT_SHA=${GIT_COMMIT_SHA} diff --git a/server/calendar/Cargo.toml b/server/calendar/Cargo.toml index 46b244c16..444e6c1e6 100644 --- a/server/calendar/Cargo.toml +++ b/server/calendar/Cargo.toml @@ -31,7 +31,7 @@ serde_json.workspace = true chrono = { version = "0.4.31", default-features = false, features = ["serde"] } # database -sqlx = { version = "0.7.2", features = ["postgres", "runtime-tokio-rustls", "migrate", "macros","chrono"] } +sqlx = { version = "0.7.3", features = ["postgres", "runtime-tokio-rustls", "migrate", "macros", "chrono"] } # metrics lazy_static = "1.4.0" @@ -40,8 +40,8 @@ prometheus = { version = "0.13.3", features = ["default", "push"] } # scraper rand = "0.8.5" futures = "0.3.29" -rustls = "0.21.9" -reqwest = { version = "0.11.22", default-features = false, features = ["rustls", "json"] } +rustls = "0.22.1" +reqwest = { version= "0.11.23", default-features = false, features = ["tokio-rustls", "json", "gzip"] } minidom = "0.15.2" regex = "1.10.2" diff --git a/server/feedback/Cargo.toml b/server/feedback/Cargo.toml index eed3531dc..bed5c54b8 100644 --- a/server/feedback/Cargo.toml +++ b/server/feedback/Cargo.toml @@ -29,7 +29,7 @@ regex = "1.10.2" octocrab = { version = "0.32.0", default-features = false, features=["rustls","rustls-webpki-tokio","retry","tokio"] } # web -jsonwebtoken = "9.1.0" +jsonwebtoken = "9.2.0" chrono= { version = "0.4.31", default-features = false } actix-governor = { version = "0.5.0", features = ["logger"] } diff --git a/server/main-api/Cargo.toml b/server/main-api/Cargo.toml index 92f52bb30..8d71b7aa1 100644 --- a/server/main-api/Cargo.toml +++ b/server/main-api/Cargo.toml @@ -33,7 +33,7 @@ unicode-truncate = "0.2.0" serde_yaml = "0.9" # database -sqlx = { version = "0.7.2", features = ["postgres", "runtime-tokio-rustls", "migrate", "macros"] } +sqlx = { version = "0.7.3", features = ["postgres", "runtime-tokio-rustls", "migrate", "macros", "chrono"] } # search meilisearch-sdk = "0.24.3" @@ -41,8 +41,8 @@ logos="0.13.0" regex = "1.10.2" # maps -rustls = "0.21.9" -reqwest = { version= "0.11.22", default-features = false, features = ["rustls-tls", "json", "gzip"] } +rustls = "0.22.1" +reqwest = { version= "0.11.23", default-features = false, features = ["tokio-rustls", "json", "gzip"] } image = "0.24.7" imageproc = "0.23.0" rusttype = "0.9.3" From c1029d8e711ea7579b1e61b5bffabde10f9a10d7 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 21 Dec 2023 21:22:56 +0100 Subject: [PATCH 12/16] Update dependency mypy to ~=1.8.0 (#915) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- requirements-dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements-dev.txt b/requirements-dev.txt index 78c99f05f..32a6a8208 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,4 +1,4 @@ -mypy~=1.7.0 +mypy~=1.8.0 pre-commit~=3.6.0 pylint~=3.0.0 sourcery~=1.15.0 From aa021bdec4cf4f42bd568fcdb18c00d08583d047 Mon Sep 17 00:00:00 2001 From: Frank Elsinga Date: Fri, 22 Dec 2023 02:25:43 +0100 Subject: [PATCH 13/16] Split a few dependencys from #894 for better testing --- server/Cargo.lock | 8 ++-- server/Cargo.toml | 4 +- webclient/package.json | 8 ++-- webclient/pnpm-lock.yaml | 95 +++++++++++++++++++++++----------------- 4 files changed, 64 insertions(+), 51 deletions(-) diff --git a/server/Cargo.lock b/server/Cargo.lock index 173d54f89..1a4cf645c 100644 --- a/server/Cargo.lock +++ b/server/Cargo.lock @@ -2396,9 +2396,9 @@ dependencies = [ [[package]] name = "proc-macro2" -version = "1.0.70" +version = "1.0.71" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "39278fbbf5fb4f646ce651690877f89d1c5811a3d4acb27700c1cb3cdb78fd3b" +checksum = "75cb1540fadbd5b8fbccc4dddad2734eba435053f725621c070711a14bb5f4b8" dependencies = [ "unicode-ident", ] @@ -2980,9 +2980,9 @@ dependencies = [ [[package]] name = "serde_yaml" -version = "0.9.28" +version = "0.9.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9269cfafc7e0257ee4a42f3f68a307f458c63d9e7c8ba4b58c5d15f1b7d7e8d3" +checksum = "a15e0ef66bf939a7c890a0bf6d5a733c70202225f9888a89ed5c62298b019129" dependencies = [ "indexmap", "itoa", diff --git a/server/Cargo.toml b/server/Cargo.toml index 87a4ae789..759f43617 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -13,9 +13,9 @@ structured-logger = "1.0.3" actix-web-prom = { version = "0.7.0", default-features = false, features = [] } # runtime + webserver -tokio = { version = "1.34", features = ["full"] } +tokio = { version = "1.35", features = ["full"] } actix-web = { version = "4.4.0", default-features = false, features = ["macros","compress-gzip","cookies","http2"] } -actix-cors = "0.6.4" +actix-cors = "0.6.5" #serialisation serde = { version = "1.0", features = ["derive"] } diff --git a/webclient/package.json b/webclient/package.json index 714d88f3f..624dad21e 100644 --- a/webclient/package.json +++ b/webclient/package.json @@ -19,12 +19,12 @@ "format": "prettier --write ." }, "dependencies": { - "@vueuse/core": "10.6.1", - "maplibre-gl": "3.6.1", + "@vueuse/core": "10.7.0", + "maplibre-gl": "3.6.2", "markdown-it-prism": "^2.3.0", "pinia": "2.1.7", "spectre.css": "github:Valexr/spectre#dfe3bc2c59d23cd4bfd43c690aae3655576ff708", - "swagger-ui-dist": "5.10.0", + "swagger-ui-dist": "5.10.5", "swaggerdark": "github:octycs/SwaggerDark#f02d394c8ff698cdd93e09c2188b058d2d686ca3", "unplugin-vue-markdown": "^0.25.2", "vue": "3.3.8", @@ -52,7 +52,7 @@ "typescript": "5.2.2", "vite": "4.5.1", "vite-plugin-rewrite-all": "1.0.2", - "vue-i18n": "9.7.0", + "vue-i18n": "9.8.0", "vue-tsc": "1.8.22" }, "type": "module" diff --git a/webclient/pnpm-lock.yaml b/webclient/pnpm-lock.yaml index 3cfc7620e..9218b814a 100644 --- a/webclient/pnpm-lock.yaml +++ b/webclient/pnpm-lock.yaml @@ -6,11 +6,11 @@ settings: dependencies: '@vueuse/core': - specifier: 10.6.1 - version: 10.6.1(vue@3.3.8) + specifier: 10.7.0 + version: 10.7.0(vue@3.3.8) maplibre-gl: - specifier: 3.6.1 - version: 3.6.1 + specifier: 3.6.2 + version: 3.6.2 markdown-it-prism: specifier: ^2.3.0 version: 2.3.0 @@ -21,8 +21,8 @@ dependencies: specifier: github:Valexr/spectre#dfe3bc2c59d23cd4bfd43c690aae3655576ff708 version: github.com/Valexr/spectre/dfe3bc2c59d23cd4bfd43c690aae3655576ff708 swagger-ui-dist: - specifier: 5.10.0 - version: 5.10.0 + specifier: 5.10.5 + version: 5.10.5 swaggerdark: specifier: github:octycs/SwaggerDark#f02d394c8ff698cdd93e09c2188b058d2d686ca3 version: github.com/octycs/SwaggerDark/f02d394c8ff698cdd93e09c2188b058d2d686ca3 @@ -39,7 +39,7 @@ dependencies: devDependencies: '@intlify/unplugin-vue-i18n': specifier: 2.0.0 - version: 2.0.0(vue-i18n@9.7.0) + version: 2.0.0(vue-i18n@9.8.0) '@rushstack/eslint-patch': specifier: 1.6.1 version: 1.6.1 @@ -101,8 +101,8 @@ devDependencies: specifier: 1.0.2 version: 1.0.2(vite@4.5.1) vue-i18n: - specifier: 9.7.0 - version: 9.7.0(vue@3.3.8) + specifier: 9.8.0 + version: 9.8.0(vue@3.3.8) vue-tsc: specifier: 1.8.22 version: 1.8.22(typescript@5.2.2) @@ -466,7 +466,7 @@ packages: resolution: {integrity: sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==} dev: true - /@intlify/bundle-utils@7.4.0(vue-i18n@9.7.0): + /@intlify/bundle-utils@7.4.0(vue-i18n@9.8.0): resolution: {integrity: sha512-AQfjBe2HUxzyN8ignIk3WhhSuVcSuirgzOzkd17nb337rCbI4Gv/t1R60UUyIqFoFdviLb/wLcDUzTD/xXjv9w==} engines: {node: '>= 14.16'} peerDependencies: @@ -487,16 +487,16 @@ packages: magic-string: 0.30.5 mlly: 1.4.2 source-map-js: 1.0.2 - vue-i18n: 9.7.0(vue@3.3.8) + vue-i18n: 9.8.0(vue@3.3.8) yaml-eslint-parser: 1.2.2 dev: true - /@intlify/core-base@9.7.0: - resolution: {integrity: sha512-1tBnfnCI23jXqGW15cagCjn2GgD487VST1dMG8P5LRzrSfx+kUzqFyTrjMNIwgq1tVaF4HnDpFMUuyrzTLKphw==} + /@intlify/core-base@9.8.0: + resolution: {integrity: sha512-UxaSZVZ1DwqC/CltUZrWZNaWNhfmKtfyV4BJSt/Zt4Or/fZs1iFj0B+OekYk1+MRHfIOe3+x00uXGQI4PbO/9g==} engines: {node: '>= 16'} dependencies: - '@intlify/message-compiler': 9.7.0 - '@intlify/shared': 9.7.0 + '@intlify/message-compiler': 9.8.0 + '@intlify/shared': 9.8.0 dev: true /@intlify/message-compiler@9.7.0: @@ -507,12 +507,25 @@ packages: source-map-js: 1.0.2 dev: true + /@intlify/message-compiler@9.8.0: + resolution: {integrity: sha512-McnYWhcoYmDJvssVu6QGR0shqlkJuL1HHdi5lK7fNqvQqRYaQ4lSLjYmZxwc8tRNMdIe9/KUKfyPxU9M6yCtNQ==} + engines: {node: '>= 16'} + dependencies: + '@intlify/shared': 9.8.0 + source-map-js: 1.0.2 + dev: true + /@intlify/shared@9.7.0: resolution: {integrity: sha512-PUkEuk//YKu4CHS5ah3mNa3XL/+TZj6rAY/6yYN+GCNFd2u+uWUkeuwE4Q6t8dydRWlErOePHHS0KyNoof/oBw==} engines: {node: '>= 16'} dev: true - /@intlify/unplugin-vue-i18n@2.0.0(vue-i18n@9.7.0): + /@intlify/shared@9.8.0: + resolution: {integrity: sha512-TmgR0RCLjzrSo+W3wT0ALf9851iFMlVI9EYNGeWvZFUQTAJx0bvfsMlPdgVtV1tDNRiAfhkFsMKu6jtUY1ZLKQ==} + engines: {node: '>= 16'} + dev: true + + /@intlify/unplugin-vue-i18n@2.0.0(vue-i18n@9.8.0): resolution: {integrity: sha512-1oKvm92L9l2od2H9wKx2ZvR4tzn7gUtd7bPLI7AWUmm7U9H1iEypndt5d985ypxGsEs0gToDaKTrytbBIJwwSg==} engines: {node: '>= 14.16'} peerDependencies: @@ -527,7 +540,7 @@ packages: vue-i18n-bridge: optional: true dependencies: - '@intlify/bundle-utils': 7.4.0(vue-i18n@9.7.0) + '@intlify/bundle-utils': 7.4.0(vue-i18n@9.8.0) '@intlify/shared': 9.7.0 '@rollup/pluginutils': 5.0.5 '@vue/compiler-sfc': 3.3.8 @@ -539,7 +552,7 @@ packages: picocolors: 1.0.0 source-map-js: 1.0.2 unplugin: 1.5.0 - vue-i18n: 9.7.0(vue@3.3.8) + vue-i18n: 9.8.0(vue@3.3.8) transitivePeerDependencies: - rollup - supports-color @@ -711,12 +724,12 @@ packages: resolution: {integrity: sha512-mUWlSxAmYLfwnRBmgYV86tgYmMIICX4kza8YnE/eIlywGe2XoOxlpVnXWwir92xRLjwyarqwpu2EJKD2pk0IUA==} dev: false - /@types/mapbox__vector-tile@1.3.3: - resolution: {integrity: sha512-d263B3KCQtXKVZMHpMJrEW5EeLBsQ8jvAS9nhpUKC5hHIlQaACG9PWkW8qxEeNuceo9120AwPjeS91uNa4ltqA==} + /@types/mapbox__vector-tile@1.3.4: + resolution: {integrity: sha512-bpd8dRn9pr6xKvuEBQup8pwQfD4VUyqO/2deGjfpe6AwC8YRlyEipvefyRJUSiCJTZuCb8Pl1ciVV5ekqJ96Bg==} dependencies: '@types/geojson': 7946.0.13 '@types/mapbox__point-geometry': 0.1.4 - '@types/pbf': 3.0.4 + '@types/pbf': 3.0.5 dev: false /@types/markdown-it@13.0.7: @@ -744,8 +757,8 @@ packages: dev: true optional: true - /@types/pbf@3.0.4: - resolution: {integrity: sha512-SOFlLGZkLbEXJRwcWCqeP/Koyaf/uAqLXHUsdo/nMfjLsNd8kqauwHe9GBOljSmpcHp/LC6kOjo3SidGjNirVA==} + /@types/pbf@3.0.5: + resolution: {integrity: sha512-j3pOPiEcWZ34R6a6mN07mUkM4o4Lwf6hPNt8eilOeZhTFbxFXmKhvXl9Y28jotFPaI1bpPDJsbCprUoNke6OrA==} dev: false /@types/semver@7.5.4: @@ -1101,24 +1114,24 @@ packages: resolution: {integrity: sha512-CPuIReonid9+zOG/CGTT05FXrPYATEqoDGNrEaqS4hwcw5BUNM2FguC0mOwJD4Jr16UpRVl9N0pY3P+srIbqmg==} dev: true - /@vueuse/core@10.6.1(vue@3.3.8): - resolution: {integrity: sha512-Pc26IJbqgC9VG1u6VY/xrXXfxD33hnvxBnKrLlA2LJlyHII+BSrRoTPJgGYq7qZOu61itITFUnm6QbacwZ4H8Q==} + /@vueuse/core@10.7.0(vue@3.3.8): + resolution: {integrity: sha512-4EUDESCHtwu44ZWK3Gc/hZUVhVo/ysvdtwocB5vcauSV4B7NiGY5972WnsojB3vRNdxvAt7kzJWE2h9h7C9d5w==} dependencies: '@types/web-bluetooth': 0.0.20 - '@vueuse/metadata': 10.6.1 - '@vueuse/shared': 10.6.1(vue@3.3.8) + '@vueuse/metadata': 10.7.0 + '@vueuse/shared': 10.7.0(vue@3.3.8) vue-demi: 0.14.6(vue@3.3.8) transitivePeerDependencies: - '@vue/composition-api' - vue dev: false - /@vueuse/metadata@10.6.1: - resolution: {integrity: sha512-qhdwPI65Bgcj23e5lpGfQsxcy0bMjCAsUGoXkJ7DsoeDUdasbZ2DBa4dinFCOER3lF4gwUv+UD2AlA11zdzMFw==} + /@vueuse/metadata@10.7.0: + resolution: {integrity: sha512-GlaH7tKP2iBCZ3bHNZ6b0cl9g0CJK8lttkBNUX156gWvNYhTKEtbweWLm9rxCPIiwzYcr/5xML6T8ZUEt+DkvA==} dev: false - /@vueuse/shared@10.6.1(vue@3.3.8): - resolution: {integrity: sha512-TECVDTIedFlL0NUfHWncf3zF9Gc4VfdxfQc8JFwoVZQmxpONhLxFrlm0eHQeidHj4rdTPL3KXJa0TZCk1wnc5Q==} + /@vueuse/shared@10.7.0(vue@3.3.8): + resolution: {integrity: sha512-kc00uV6CiaTdc3i1CDC4a3lBxzaBE9AgYNtFN87B5OOscqeWElj/uza8qVDmk7/U8JbqoONLbtqiLJ5LGRuqlw==} dependencies: vue-demi: 0.14.6(vue@3.3.8) transitivePeerDependencies: @@ -3167,8 +3180,8 @@ packages: dependencies: '@jridgewell/sourcemap-codec': 1.4.15 - /maplibre-gl@3.6.1: - resolution: {integrity: sha512-XQpLkNTD6WYJXqF7vTxgHbAyShoZMm5o8fohXCn9PC/S/g3zBk92m7GUsN6KfuECh2rO01uiYbSNCSURkOODyQ==} + /maplibre-gl@3.6.2: + resolution: {integrity: sha512-krg2KFIdOpLPngONDhP6ixCoWl5kbdMINP0moMSJFVX7wX1Clm2M9hlNKXS8vBGlVWwR5R3ZfI6IPrYz7c+aCQ==} engines: {node: '>=16.14.0', npm: '>=8.1.0'} dependencies: '@mapbox/geojson-rewind': 0.5.2 @@ -3181,8 +3194,8 @@ packages: '@maplibre/maplibre-gl-style-spec': 19.3.3 '@types/geojson': 7946.0.13 '@types/mapbox__point-geometry': 0.1.4 - '@types/mapbox__vector-tile': 1.3.3 - '@types/pbf': 3.0.4 + '@types/mapbox__vector-tile': 1.3.4 + '@types/pbf': 3.0.5 '@types/supercluster': 7.1.3 earcut: 2.2.4 geojson-vt: 3.2.1 @@ -4389,8 +4402,8 @@ packages: resolution: {integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==} dev: true - /swagger-ui-dist@5.10.0: - resolution: {integrity: sha512-PBTn5qDOQVtU29hrx74km86SnK3/mFtF3grI98y575y1aRpxiuStRTIvsfXFudPFkLofHU7H9a+fKrP+Oayc3g==} + /swagger-ui-dist@5.10.5: + resolution: {integrity: sha512-Uv8E7hV/nXALQKgW86X1i58gl1O6DFg+Uq54sDwhYqucBBxj/47dLNw872TNILNlOTuPA6dRvUMGQdmlpaX8qQ==} dev: false /synckit@0.8.5: @@ -4811,14 +4824,14 @@ packages: - supports-color dev: true - /vue-i18n@9.7.0(vue@3.3.8): - resolution: {integrity: sha512-8Z8kSz9U2juzuAf+6mjW1HTd5pIlYuFJZkC+HvYOglFdpzwc2rTUGjxKwN8xGdtGur1MFnyJ44TSr+TksJtY8A==} + /vue-i18n@9.8.0(vue@3.3.8): + resolution: {integrity: sha512-Izho+6PYjejsTq2mzjcRdBZ5VLRQoSuuexvR8029h5CpN03FYqiqBrShMyf2I1DKkN6kw/xmujcbvC+4QybpsQ==} engines: {node: '>= 16'} peerDependencies: vue: ^3.0.0 dependencies: - '@intlify/core-base': 9.7.0 - '@intlify/shared': 9.7.0 + '@intlify/core-base': 9.8.0 + '@intlify/shared': 9.8.0 '@vue/devtools-api': 6.5.1 vue: 3.3.8(typescript@5.2.2) dev: true From d09f14a13e642b91868b5880cbba15fc3ee30e1d Mon Sep 17 00:00:00 2001 From: Frank Elsinga Date: Fri, 22 Dec 2023 02:51:51 +0100 Subject: [PATCH 14/16] test if vue stops e2e pipeline tests (#916) * test if vue is the issue * plugin vue * vue tsc * lockfile --- webclient/package.json | 6 +- webclient/pnpm-lock.yaml | 215 +++++++++++++++++++++++---------------- 2 files changed, 131 insertions(+), 90 deletions(-) diff --git a/webclient/package.json b/webclient/package.json index 624dad21e..089c03597 100644 --- a/webclient/package.json +++ b/webclient/package.json @@ -27,14 +27,14 @@ "swagger-ui-dist": "5.10.5", "swaggerdark": "github:octycs/SwaggerDark#f02d394c8ff698cdd93e09c2188b058d2d686ca3", "unplugin-vue-markdown": "^0.25.2", - "vue": "3.3.8", + "vue": "3.3.13", "vue-router": "4.2.5" }, "devDependencies": { "@intlify/unplugin-vue-i18n": "2.0.0", "@rushstack/eslint-patch": "1.6.1", "@types/swagger-ui-dist": "3.30.4", - "@vitejs/plugin-vue": "4.5.0", + "@vitejs/plugin-vue": "4.5.2", "@vue/eslint-config-prettier": "8.0.0", "@vue/eslint-config-typescript": "12.0.0", "@vue/tsconfig": "0.4.0", @@ -53,7 +53,7 @@ "vite": "4.5.1", "vite-plugin-rewrite-all": "1.0.2", "vue-i18n": "9.8.0", - "vue-tsc": "1.8.22" + "vue-tsc": "1.8.26" }, "type": "module" } diff --git a/webclient/pnpm-lock.yaml b/webclient/pnpm-lock.yaml index 9218b814a..982ead2d6 100644 --- a/webclient/pnpm-lock.yaml +++ b/webclient/pnpm-lock.yaml @@ -7,7 +7,7 @@ settings: dependencies: '@vueuse/core': specifier: 10.7.0 - version: 10.7.0(vue@3.3.8) + version: 10.7.0(vue@3.3.13) maplibre-gl: specifier: 3.6.2 version: 3.6.2 @@ -16,7 +16,7 @@ dependencies: version: 2.3.0 pinia: specifier: 2.1.7 - version: 2.1.7(typescript@5.2.2)(vue@3.3.8) + version: 2.1.7(typescript@5.2.2)(vue@3.3.13) spectre.css: specifier: github:Valexr/spectre#dfe3bc2c59d23cd4bfd43c690aae3655576ff708 version: github.com/Valexr/spectre/dfe3bc2c59d23cd4bfd43c690aae3655576ff708 @@ -30,11 +30,11 @@ dependencies: specifier: ^0.25.2 version: 0.25.2(vite@4.5.1) vue: - specifier: 3.3.8 - version: 3.3.8(typescript@5.2.2) + specifier: 3.3.13 + version: 3.3.13(typescript@5.2.2) vue-router: specifier: 4.2.5 - version: 4.2.5(vue@3.3.8) + version: 4.2.5(vue@3.3.13) devDependencies: '@intlify/unplugin-vue-i18n': @@ -47,8 +47,8 @@ devDependencies: specifier: 3.30.4 version: 3.30.4 '@vitejs/plugin-vue': - specifier: 4.5.0 - version: 4.5.0(vite@4.5.1)(vue@3.3.8) + specifier: 4.5.2 + version: 4.5.2(vite@4.5.1)(vue@3.3.13) '@vue/eslint-config-prettier': specifier: 8.0.0 version: 8.0.0(eslint@8.56.0)(prettier@3.1.1) @@ -102,10 +102,10 @@ devDependencies: version: 1.0.2(vite@4.5.1) vue-i18n: specifier: 9.8.0 - version: 9.8.0(vue@3.3.8) + version: 9.8.0(vue@3.3.13) vue-tsc: - specifier: 1.8.22 - version: 1.8.22(typescript@5.2.2) + specifier: 1.8.26 + version: 1.8.26(typescript@5.2.2) packages: @@ -150,6 +150,14 @@ packages: hasBin: true dependencies: '@babel/types': 7.23.0 + dev: true + + /@babel/parser@7.23.6: + resolution: {integrity: sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==} + engines: {node: '>=6.0.0'} + hasBin: true + dependencies: + '@babel/types': 7.23.0 /@babel/types@7.23.0: resolution: {integrity: sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==} @@ -487,7 +495,7 @@ packages: magic-string: 0.30.5 mlly: 1.4.2 source-map-js: 1.0.2 - vue-i18n: 9.8.0(vue@3.3.8) + vue-i18n: 9.8.0(vue@3.3.13) yaml-eslint-parser: 1.2.2 dev: true @@ -552,7 +560,7 @@ packages: picocolors: 1.0.0 source-map-js: 1.0.2 unplugin: 1.5.0 - vue-i18n: 9.8.0(vue@3.3.8) + vue-i18n: 9.8.0(vue@3.3.13) transitivePeerDependencies: - rollup - supports-color @@ -930,44 +938,43 @@ packages: resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} dev: true - /@vitejs/plugin-vue@4.5.0(vite@4.5.1)(vue@3.3.8): - resolution: {integrity: sha512-a2WSpP8X8HTEww/U00bU4mX1QpLINNuz/2KMNpLsdu3BzOpak3AGI1CJYBTXcc4SPhaD0eNRUp7IyQK405L5dQ==} + /@vitejs/plugin-vue@4.5.2(vite@4.5.1)(vue@3.3.13): + resolution: {integrity: sha512-UGR3DlzLi/SaVBPX0cnSyE37vqxU3O6chn8l0HJNzQzDia6/Au2A4xKv+iIJW8w2daf80G7TYHhi1pAUjdZ0bQ==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: vite: ^4.0.0 || ^5.0.0 vue: ^3.2.25 dependencies: vite: 4.5.1(sass@1.69.5) - vue: 3.3.8(typescript@5.2.2) + vue: 3.3.13(typescript@5.2.2) dev: true - /@volar/language-core@1.10.8: - resolution: {integrity: sha512-LxpCCDca8gs7GFcCLp4ZsyJZ+DHsGAN/LfEFYIW7K3n59Ty4ESGFZ/6vKfesw+WGiqkXZO/xRCkTnPWbRreA+g==} + /@volar/language-core@1.11.1: + resolution: {integrity: sha512-dOcNn3i9GgZAcJt43wuaEykSluAuOkQgzni1cuxLxTV0nJKanQztp7FxyswdRILaKH+P2XZMPRp2S4MV/pElCw==} dependencies: - '@volar/source-map': 1.10.8 + '@volar/source-map': 1.11.1 dev: true - /@volar/source-map@1.10.8: - resolution: {integrity: sha512-GfYA6On6TxjofJZIgZ54y2LUBKgOyNqyO2U8oyUfdgtrZ3UQ0UOA4eLT/A/tVMCLVQN53eD0NrcuwqzSFID4WA==} + /@volar/source-map@1.11.1: + resolution: {integrity: sha512-hJnOnwZ4+WT5iupLRnuzbULZ42L7BWWPMmruzwtLhJfpDVoZLjNBxHDi2sY2bgZXCKlpU5XcsMFoYrsQmPhfZg==} dependencies: muggle-string: 0.3.1 dev: true - /@volar/typescript@1.10.8: - resolution: {integrity: sha512-XZLR4Td6UzCRdPTUBh5L8LxYWPnowZWm3Hs79mClcOn8ky++/v8a4aDyyl6T9V55u/NgGndGhPqsp7Qg52pr4w==} + /@volar/typescript@1.11.1: + resolution: {integrity: sha512-iU+t2mas/4lYierSnoFOeRFQUhAEMgsFuQxoxvwn5EdQopw43j+J27a4lt9LMInx1gLJBC6qL14WYGlgymaSMQ==} dependencies: - '@volar/language-core': 1.10.8 + '@volar/language-core': 1.11.1 path-browserify: 1.0.1 dev: true - /@vue/compiler-core@3.3.7: - resolution: {integrity: sha512-pACdY6YnTNVLXsB86YD8OF9ihwpolzhhtdLVHhBL6do/ykr6kKXNYABRtNMGrsQXpEXXyAdwvWWkuTbs4MFtPQ==} + /@vue/compiler-core@3.3.13: + resolution: {integrity: sha512-bwi9HShGu7uaZLOErZgsH2+ojsEdsjerbf2cMXPwmvcgZfVPZ2BVZzCVnwZBxTAYd6Mzbmf6izcUNDkWnBBQ6A==} dependencies: - '@babel/parser': 7.23.0 - '@vue/shared': 3.3.7 + '@babel/parser': 7.23.6 + '@vue/shared': 3.3.13 estree-walker: 2.0.2 source-map-js: 1.0.2 - dev: true /@vue/compiler-core@3.3.8: resolution: {integrity: sha512-hN/NNBUECw8SusQvDSqqcVv6gWq8L6iAktUR0UF3vGu2OhzRqcOiAno0FmBJWwxhYEXRlQJT5XnoKsVq1WZx4g==} @@ -976,19 +983,34 @@ packages: '@vue/shared': 3.3.8 estree-walker: 2.0.2 source-map-js: 1.0.2 + dev: true - /@vue/compiler-dom@3.3.7: - resolution: {integrity: sha512-0LwkyJjnUPssXv/d1vNJ0PKfBlDoQs7n81CbO6Q0zdL7H1EzqYRrTVXDqdBVqro0aJjo/FOa1qBAPVI4PGSHBw==} + /@vue/compiler-dom@3.3.13: + resolution: {integrity: sha512-EYRDpbLadGtNL0Gph+HoKiYqXLqZ0xSSpR5Dvnu/Ep7ggaCbjRDIus1MMxTS2Qm0koXED4xSlvTZaTnI8cYAsw==} dependencies: - '@vue/compiler-core': 3.3.7 - '@vue/shared': 3.3.7 - dev: true + '@vue/compiler-core': 3.3.13 + '@vue/shared': 3.3.13 /@vue/compiler-dom@3.3.8: resolution: {integrity: sha512-+PPtv+p/nWDd0AvJu3w8HS0RIm/C6VGBIRe24b9hSyNWOAPEUosFZ5diwawwP8ip5sJ8n0Pe87TNNNHnvjs0FQ==} dependencies: '@vue/compiler-core': 3.3.8 '@vue/shared': 3.3.8 + dev: true + + /@vue/compiler-sfc@3.3.13: + resolution: {integrity: sha512-DQVmHEy/EKIgggvnGRLx21hSqnr1smUS9Aq8tfxiiot8UR0/pXKHN9k78/qQ7etyQTFj5em5nruODON7dBeumw==} + dependencies: + '@babel/parser': 7.23.6 + '@vue/compiler-core': 3.3.13 + '@vue/compiler-dom': 3.3.13 + '@vue/compiler-ssr': 3.3.13 + '@vue/reactivity-transform': 3.3.13 + '@vue/shared': 3.3.13 + estree-walker: 2.0.2 + magic-string: 0.30.5 + postcss: 8.4.32 + source-map-js: 1.0.2 /@vue/compiler-sfc@3.3.8: resolution: {integrity: sha512-WMzbUrlTjfYF8joyT84HfwwXo+8WPALuPxhy+BZ6R4Aafls+jDBnSz8PDz60uFhuqFbl3HxRfxvDzrUf3THwpA==} @@ -1003,12 +1025,20 @@ packages: magic-string: 0.30.5 postcss: 8.4.32 source-map-js: 1.0.2 + dev: true + + /@vue/compiler-ssr@3.3.13: + resolution: {integrity: sha512-d/P3bCeUGmkJNS1QUZSAvoCIW4fkOKK3l2deE7zrp0ypJEy+En2AcypIkqvcFQOcw3F0zt2VfMvNsA9JmExTaw==} + dependencies: + '@vue/compiler-dom': 3.3.13 + '@vue/shared': 3.3.13 /@vue/compiler-ssr@3.3.8: resolution: {integrity: sha512-hXCqQL/15kMVDBuoBYpUnSYT8doDNwsjvm3jTefnXr+ytn294ySnT8NlsFHmTgKNjwpuFy7XVV8yTeLtNl/P6w==} dependencies: '@vue/compiler-dom': 3.3.8 '@vue/shared': 3.3.8 + dev: true /@vue/devtools-api@6.5.1: resolution: {integrity: sha512-+KpckaAQyfbvshdDW5xQylLni1asvNSGme1JFs8I1+/H5pHEhqUKMEQD/qn3Nx5+/nycBq11qAEi8lk+LXI2dA==} @@ -1048,25 +1078,35 @@ packages: - supports-color dev: true - /@vue/language-core@1.8.22(typescript@5.2.2): - resolution: {integrity: sha512-bsMoJzCrXZqGsxawtUea1cLjUT9dZnDsy5TuZ+l1fxRMzUGQUG9+Ypq4w//CqpWmrx7nIAJpw2JVF/t258miRw==} + /@vue/language-core@1.8.26(typescript@5.2.2): + resolution: {integrity: sha512-9cmza/Y2YTiOnKZ0Mi9zsNn7Irw+aKirP+5LLWVSNaL3fjKJjW1cD3HGBckasY2RuVh4YycvdA9/Q6EBpVd/7Q==} peerDependencies: typescript: '*' peerDependenciesMeta: typescript: optional: true dependencies: - '@volar/language-core': 1.10.8 - '@volar/source-map': 1.10.8 - '@vue/compiler-dom': 3.3.7 - '@vue/shared': 3.3.7 + '@volar/language-core': 1.11.1 + '@volar/source-map': 1.11.1 + '@vue/compiler-dom': 3.3.8 + '@vue/shared': 3.3.8 computeds: 0.0.1 minimatch: 9.0.3 muggle-string: 0.3.1 + path-browserify: 1.0.1 typescript: 5.2.2 vue-template-compiler: 2.7.15 dev: true + /@vue/reactivity-transform@3.3.13: + resolution: {integrity: sha512-oWnydGH0bBauhXvh5KXUy61xr9gKaMbtsMHk40IK9M4gMuKPJ342tKFarY0eQ6jef8906m35q37wwA8DMZOm5Q==} + dependencies: + '@babel/parser': 7.23.6 + '@vue/compiler-core': 3.3.13 + '@vue/shared': 3.3.13 + estree-walker: 2.0.2 + magic-string: 0.30.5 + /@vue/reactivity-transform@3.3.8: resolution: {integrity: sha512-49CvBzmZNtcHua0XJ7GdGifM8GOXoUMOX4dD40Y5DxI3R8OUhMlvf2nvgUAcPxaXiV5MQQ1Nwy09ADpnLQUqRw==} dependencies: @@ -1075,52 +1115,53 @@ packages: '@vue/shared': 3.3.8 estree-walker: 2.0.2 magic-string: 0.30.5 + dev: true - /@vue/reactivity@3.3.8: - resolution: {integrity: sha512-ctLWitmFBu6mtddPyOKpHg8+5ahouoTCRtmAHZAXmolDtuZXfjL2T3OJ6DL6ezBPQB1SmMnpzjiWjCiMYmpIuw==} + /@vue/reactivity@3.3.13: + resolution: {integrity: sha512-fjzCxceMahHhi4AxUBzQqqVhuA21RJ0COaWTbIBl1PruGW1CeY97louZzLi4smpYx+CHfFPPU/CS8NybbGvPKQ==} dependencies: - '@vue/shared': 3.3.8 + '@vue/shared': 3.3.13 - /@vue/runtime-core@3.3.8: - resolution: {integrity: sha512-qurzOlb6q26KWQ/8IShHkMDOuJkQnQcTIp1sdP4I9MbCf9FJeGVRXJFr2mF+6bXh/3Zjr9TDgURXrsCr9bfjUw==} + /@vue/runtime-core@3.3.13: + resolution: {integrity: sha512-1TzA5TvGuh2zUwMJgdfvrBABWZ7y8kBwBhm7BXk8rvdx2SsgcGfz2ruv2GzuGZNvL1aKnK8CQMV/jFOrxNQUMA==} dependencies: - '@vue/reactivity': 3.3.8 - '@vue/shared': 3.3.8 + '@vue/reactivity': 3.3.13 + '@vue/shared': 3.3.13 - /@vue/runtime-dom@3.3.8: - resolution: {integrity: sha512-Noy5yM5UIf9UeFoowBVgghyGGPIDPy1Qlqt0yVsUdAVbqI8eeMSsTqBtauaEoT2UFXUk5S64aWVNJN4MJ2vRdA==} + /@vue/runtime-dom@3.3.13: + resolution: {integrity: sha512-JJkpE8R/hJKXqVTgUoODwS5wqKtOsmJPEqmp90PDVGygtJ4C0PtOkcEYXwhiVEmef6xeXcIlrT3Yo5aQ4qkHhQ==} dependencies: - '@vue/runtime-core': 3.3.8 - '@vue/shared': 3.3.8 - csstype: 3.1.2 + '@vue/runtime-core': 3.3.13 + '@vue/shared': 3.3.13 + csstype: 3.1.3 - /@vue/server-renderer@3.3.8(vue@3.3.8): - resolution: {integrity: sha512-zVCUw7RFskvPuNlPn/8xISbrf0zTWsTSdYTsUTN1ERGGZGVnRxM2QZ3x1OR32+vwkkCm0IW6HmJ49IsPm7ilLg==} + /@vue/server-renderer@3.3.13(vue@3.3.13): + resolution: {integrity: sha512-vSnN+nuf6iSqTL3Qgx/9A+BT+0Zf/VJOgF5uMZrKjYPs38GMYyAU1coDyBNHauehXDaP+zl73VhwWv0vBRBHcg==} peerDependencies: - vue: 3.3.8 + vue: 3.3.13 dependencies: - '@vue/compiler-ssr': 3.3.8 - '@vue/shared': 3.3.8 - vue: 3.3.8(typescript@5.2.2) + '@vue/compiler-ssr': 3.3.13 + '@vue/shared': 3.3.13 + vue: 3.3.13(typescript@5.2.2) - /@vue/shared@3.3.7: - resolution: {integrity: sha512-N/tbkINRUDExgcPTBvxNkvHGu504k8lzlNQRITVnm6YjOjwa4r0nnbd4Jb01sNpur5hAllyRJzSK5PvB9PPwRg==} - dev: true + /@vue/shared@3.3.13: + resolution: {integrity: sha512-/zYUwiHD8j7gKx2argXEMCUXVST6q/21DFU0sTfNX0URJroCe3b1UF6vLJ3lQDfLNIiiRl2ONp7Nh5UVWS6QnA==} /@vue/shared@3.3.8: resolution: {integrity: sha512-8PGwybFwM4x8pcfgqEQFy70NaQxASvOC5DJwLQfpArw1UDfUXrJkdxD3BhVTMS+0Lef/TU7YO0Jvr0jJY8T+mw==} + dev: true /@vue/tsconfig@0.4.0: resolution: {integrity: sha512-CPuIReonid9+zOG/CGTT05FXrPYATEqoDGNrEaqS4hwcw5BUNM2FguC0mOwJD4Jr16UpRVl9N0pY3P+srIbqmg==} dev: true - /@vueuse/core@10.7.0(vue@3.3.8): + /@vueuse/core@10.7.0(vue@3.3.13): resolution: {integrity: sha512-4EUDESCHtwu44ZWK3Gc/hZUVhVo/ysvdtwocB5vcauSV4B7NiGY5972WnsojB3vRNdxvAt7kzJWE2h9h7C9d5w==} dependencies: '@types/web-bluetooth': 0.0.20 '@vueuse/metadata': 10.7.0 - '@vueuse/shared': 10.7.0(vue@3.3.8) - vue-demi: 0.14.6(vue@3.3.8) + '@vueuse/shared': 10.7.0(vue@3.3.13) + vue-demi: 0.14.6(vue@3.3.13) transitivePeerDependencies: - '@vue/composition-api' - vue @@ -1130,10 +1171,10 @@ packages: resolution: {integrity: sha512-GlaH7tKP2iBCZ3bHNZ6b0cl9g0CJK8lttkBNUX156gWvNYhTKEtbweWLm9rxCPIiwzYcr/5xML6T8ZUEt+DkvA==} dev: false - /@vueuse/shared@10.7.0(vue@3.3.8): + /@vueuse/shared@10.7.0(vue@3.3.13): resolution: {integrity: sha512-kc00uV6CiaTdc3i1CDC4a3lBxzaBE9AgYNtFN87B5OOscqeWElj/uza8qVDmk7/U8JbqoONLbtqiLJ5LGRuqlw==} dependencies: - vue-demi: 0.14.6(vue@3.3.8) + vue-demi: 0.14.6(vue@3.3.13) transitivePeerDependencies: - '@vue/composition-api' - vue @@ -1666,8 +1707,8 @@ packages: hasBin: true dev: true - /csstype@3.1.2: - resolution: {integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==} + /csstype@3.1.3: + resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} /cypress@13.5.1: resolution: {integrity: sha512-yqLViT0D/lPI8Kkm7ciF/x/DCK/H/DnogdGyiTnQgX4OVR2aM30PtK+kvklTOD1u3TuItiD9wUQAF8EYWtyZug==} @@ -3636,7 +3677,7 @@ packages: engines: {node: '>=4'} dev: true - /pinia@2.1.7(typescript@5.2.2)(vue@3.3.8): + /pinia@2.1.7(typescript@5.2.2)(vue@3.3.13): resolution: {integrity: sha512-+C2AHFtcFqjPih0zpYuvof37SFxMQ7OEG2zV9jRI12i9BOy3YQVAHwdKtyyc8pDcDyIc33WCIsZaCFWU7WWxGQ==} peerDependencies: '@vue/composition-api': ^1.4.0 @@ -3650,8 +3691,8 @@ packages: dependencies: '@vue/devtools-api': 6.5.1 typescript: 5.2.2 - vue: 3.3.8(typescript@5.2.2) - vue-demi: 0.14.6(vue@3.3.8) + vue: 3.3.13(typescript@5.2.2) + vue-demi: 0.14.6(vue@3.3.13) dev: false /pirates@4.0.6: @@ -4791,7 +4832,7 @@ packages: pbf: 3.2.1 dev: false - /vue-demi@0.14.6(vue@3.3.8): + /vue-demi@0.14.6(vue@3.3.13): resolution: {integrity: sha512-8QA7wrYSHKaYgUxDA5ZC24w+eHm3sYCbp0EzcDwKqN3p6HqtTCGR/GVsPyZW92unff4UlcSh++lmqDWN3ZIq4w==} engines: {node: '>=12'} hasBin: true @@ -4803,7 +4844,7 @@ packages: '@vue/composition-api': optional: true dependencies: - vue: 3.3.8(typescript@5.2.2) + vue: 3.3.13(typescript@5.2.2) dev: false /vue-eslint-parser@9.3.2(eslint@8.56.0): @@ -4824,7 +4865,7 @@ packages: - supports-color dev: true - /vue-i18n@9.8.0(vue@3.3.8): + /vue-i18n@9.8.0(vue@3.3.13): resolution: {integrity: sha512-Izho+6PYjejsTq2mzjcRdBZ5VLRQoSuuexvR8029h5CpN03FYqiqBrShMyf2I1DKkN6kw/xmujcbvC+4QybpsQ==} engines: {node: '>= 16'} peerDependencies: @@ -4833,16 +4874,16 @@ packages: '@intlify/core-base': 9.8.0 '@intlify/shared': 9.8.0 '@vue/devtools-api': 6.5.1 - vue: 3.3.8(typescript@5.2.2) + vue: 3.3.13(typescript@5.2.2) dev: true - /vue-router@4.2.5(vue@3.3.8): + /vue-router@4.2.5(vue@3.3.13): resolution: {integrity: sha512-DIUpKcyg4+PTQKfFPX88UWhlagBEBEfJ5A8XDXRJLUnZOvcpMF8o/dnL90vpVkGaPbjvXazV/rC1qBKrZlFugw==} peerDependencies: vue: ^3.2.0 dependencies: '@vue/devtools-api': 6.5.1 - vue: 3.3.8(typescript@5.2.2) + vue: 3.3.13(typescript@5.2.2) dev: false /vue-template-compiler@2.7.15: @@ -4852,31 +4893,31 @@ packages: he: 1.2.0 dev: true - /vue-tsc@1.8.22(typescript@5.2.2): - resolution: {integrity: sha512-j9P4kHtW6eEE08aS5McFZE/ivmipXy0JzrnTgbomfABMaVKx37kNBw//irL3+LlE3kOo63XpnRigyPC3w7+z+A==} + /vue-tsc@1.8.26(typescript@5.2.2): + resolution: {integrity: sha512-jMEJ4aqU/l1hdgmeExH5h1TFoN+hbho0A2ZAhHy53/947DGm7Qj/bpB85VpECOCwV00h7JYNVnvoD2ceOorB4Q==} hasBin: true peerDependencies: typescript: '*' dependencies: - '@volar/typescript': 1.10.8 - '@vue/language-core': 1.8.22(typescript@5.2.2) + '@volar/typescript': 1.11.1 + '@vue/language-core': 1.8.26(typescript@5.2.2) semver: 7.5.4 typescript: 5.2.2 dev: true - /vue@3.3.8(typescript@5.2.2): - resolution: {integrity: sha512-5VSX/3DabBikOXMsxzlW8JyfeLKlG9mzqnWgLQLty88vdZL7ZJgrdgBOmrArwxiLtmS+lNNpPcBYqrhE6TQW5w==} + /vue@3.3.13(typescript@5.2.2): + resolution: {integrity: sha512-LDnUpQvDgsfc0u/YgtAgTMXJlJQqjkxW1PVcOnJA5cshPleULDjHi7U45pl2VJYazSSvLH8UKcid/kzH8I0a0Q==} peerDependencies: typescript: '*' peerDependenciesMeta: typescript: optional: true dependencies: - '@vue/compiler-dom': 3.3.8 - '@vue/compiler-sfc': 3.3.8 - '@vue/runtime-dom': 3.3.8 - '@vue/server-renderer': 3.3.8(vue@3.3.8) - '@vue/shared': 3.3.8 + '@vue/compiler-dom': 3.3.13 + '@vue/compiler-sfc': 3.3.13 + '@vue/runtime-dom': 3.3.13 + '@vue/server-renderer': 3.3.13(vue@3.3.13) + '@vue/shared': 3.3.13 typescript: 5.2.2 /webidl-conversions@3.0.1: From a7e317c360e929df63ba39f13ccca67d00f17867 Mon Sep 17 00:00:00 2001 From: Frank Elsinga Date: Fri, 22 Dec 2023 02:55:22 +0100 Subject: [PATCH 15/16] test if cypress stops e2e pipeline tests (#917) test if cypress is the issue --- webclient/package.json | 2 +- webclient/pnpm-lock.yaml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/webclient/package.json b/webclient/package.json index 089c03597..1559da76b 100644 --- a/webclient/package.json +++ b/webclient/package.json @@ -39,7 +39,7 @@ "@vue/eslint-config-typescript": "12.0.0", "@vue/tsconfig": "0.4.0", "autoprefixer": "^10.4.16", - "cypress": "13.5.1", + "cypress": "13.6.1", "eslint": "8.56.0", "eslint-plugin-vue": "9.19.2", "isomorphic-fetch": "3.0.0", diff --git a/webclient/pnpm-lock.yaml b/webclient/pnpm-lock.yaml index 982ead2d6..c6b3d2be4 100644 --- a/webclient/pnpm-lock.yaml +++ b/webclient/pnpm-lock.yaml @@ -62,8 +62,8 @@ devDependencies: specifier: ^10.4.16 version: 10.4.16(postcss@8.4.31) cypress: - specifier: 13.5.1 - version: 13.5.1 + specifier: 13.6.1 + version: 13.6.1 eslint: specifier: 8.56.0 version: 8.56.0 @@ -1710,8 +1710,8 @@ packages: /csstype@3.1.3: resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} - /cypress@13.5.1: - resolution: {integrity: sha512-yqLViT0D/lPI8Kkm7ciF/x/DCK/H/DnogdGyiTnQgX4OVR2aM30PtK+kvklTOD1u3TuItiD9wUQAF8EYWtyZug==} + /cypress@13.6.1: + resolution: {integrity: sha512-k1Wl5PQcA/4UoTffYKKaxA0FJKwg8yenYNYRzLt11CUR0Kln+h7Udne6mdU1cUIdXBDTVZWtmiUjzqGs7/pEpw==} engines: {node: ^16.0.0 || ^18.0.0 || >=20.0.0} hasBin: true requiresBuild: true From 3fc41d280bdb163f493edccfae45af3705e98959 Mon Sep 17 00:00:00 2001 From: Frank Elsinga Date: Fri, 22 Dec 2023 03:16:51 +0100 Subject: [PATCH 16/16] test if vue/tsconfig stops e2e pipeline tests (#918) bumped @vue/tsconfig --- webclient/package.json | 2 +- webclient/pnpm-lock.yaml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/webclient/package.json b/webclient/package.json index 1559da76b..9905c6c90 100644 --- a/webclient/package.json +++ b/webclient/package.json @@ -37,7 +37,7 @@ "@vitejs/plugin-vue": "4.5.2", "@vue/eslint-config-prettier": "8.0.0", "@vue/eslint-config-typescript": "12.0.0", - "@vue/tsconfig": "0.4.0", + "@vue/tsconfig": "0.5.1", "autoprefixer": "^10.4.16", "cypress": "13.6.1", "eslint": "8.56.0", diff --git a/webclient/pnpm-lock.yaml b/webclient/pnpm-lock.yaml index c6b3d2be4..ff3aeaa0b 100644 --- a/webclient/pnpm-lock.yaml +++ b/webclient/pnpm-lock.yaml @@ -56,8 +56,8 @@ devDependencies: specifier: 12.0.0 version: 12.0.0(eslint-plugin-vue@9.19.2)(eslint@8.56.0)(typescript@5.2.2) '@vue/tsconfig': - specifier: 0.4.0 - version: 0.4.0 + specifier: 0.5.1 + version: 0.5.1 autoprefixer: specifier: ^10.4.16 version: 10.4.16(postcss@8.4.31) @@ -1151,8 +1151,8 @@ packages: resolution: {integrity: sha512-8PGwybFwM4x8pcfgqEQFy70NaQxASvOC5DJwLQfpArw1UDfUXrJkdxD3BhVTMS+0Lef/TU7YO0Jvr0jJY8T+mw==} dev: true - /@vue/tsconfig@0.4.0: - resolution: {integrity: sha512-CPuIReonid9+zOG/CGTT05FXrPYATEqoDGNrEaqS4hwcw5BUNM2FguC0mOwJD4Jr16UpRVl9N0pY3P+srIbqmg==} + /@vue/tsconfig@0.5.1: + resolution: {integrity: sha512-VcZK7MvpjuTPx2w6blwnwZAu5/LgBUtejFOi3pPGQFXQN5Ela03FUtd2Qtg4yWGGissVL0dr6Ro1LfOFh+PCuQ==} dev: true /@vueuse/core@10.7.0(vue@3.3.13):